diff --git a/CMakeLists.txt b/CMakeLists.txt index 203a5add81..735f5d8449 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,12 +27,26 @@ set(INLINE_POST OFF CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") -set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metric terms in dycore)") set(REPRO OFF CACHE BOOL "Enable REPRO mode") -set(WW3 OFF CACHE BOOL "Enable WW3") -set(S2S OFF CACHE BOOL "Enable S2S") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") -set(DATM OFF CACHE BOOL "Enable Data Atmosphere") + +# Component Options +set(FMS OFF CACHE BOOL "Enable FMS") +set(FV3 OFF CACHE BOOL "Enable FV3") +set(MOM6 OFF CACHE BOOL "Enable MOM6") +set(CICE6 OFF CACHE BOOL "Enable CICE6") +set(WW3 OFF CACHE BOOL "Enable WW3") +set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") +set(NEMSdatm OFF CACHE BOOL "Enable NEMSdatm") +set(CMEPS OFF CACHE BOOL "Enable CMEPS") +set(CDEPS OFF CACHE BOOL "Enable CDEPS") + +# Valid applications and choices +list(APPEND VALID_APPS ATM ATMW S2S S2SW DATM DATM_NEMS) +set(APP NONE CACHE BOOL "Application Name") +if(NOT (APP IN_LIST VALID_APPS)) + message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") +endif() ############################################################################### ### Set CMAKE_BUILD_TYPE for DEBUG mode @@ -65,7 +79,6 @@ if(CMAKE_Platform) endif() message("") -message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") @@ -74,11 +87,26 @@ message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") -message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") +message("") + +# Configure selected application specific components +include(cmake/configure_apps.cmake) + +# Components +message("") +message("FMS .............. ${FMS}") +message("FV3 .............. ${FV3}") +message("MOM6 ............. ${MOM6}") +message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") -message("S2S .............. ${S2S}") -message("DATM ............. ${DATM}") +message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("NEMSdatm ......... ${NEMSdatm}") +message("CDEPS ............ ${CDEPS}") +message("CMEPS ............ ${CMEPS}") + +# Options that applications reset +message("32BIT ............ ${32BIT}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -105,7 +133,7 @@ if(OPENMP) endif() find_package(NetCDF REQUIRED C Fortran) find_package(ESMF MODULE REQUIRED) -if(S2S) +if(CMEPS) find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) endif() @@ -125,53 +153,40 @@ target_link_libraries(nemsio::nemsio INTERFACE w3emc::w3emc_d bacio::bacio_4) find_package(Python 3 REQUIRED COMPONENTS Interpreter) message("Found Python: ${Python_EXECUTABLE}") -############################################################################### -### Checks -############################################################################### -if(DATM AND NOT S2S) - message(FATAL_ERROR "DATM=ON and S2S=OFF are incompatible, ABORT!") -endif() - -if(S2S AND 32BIT) - message(FATAL_ERROR "S2S=ON and 32BIT=ON are incompatible, ABORT!") -endif() - ############################################################################### ### FMS ############################################################################### -set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") -if(NOT 32BIT) - set(64BIT ON CACHE BOOL "Enable 64-bit") - -endif() -if(NOT QUAD_PRECISION) - set(ENABLE_QUAD_PRECISION OFF CACHE BOOL "Enable Quad-precision") -endif() +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) + add_subdirectory(FMS) -if(32BIT) - add_library(fms ALIAS fms_r4) -else() - add_library(fms ALIAS fms_r8) -endif() + if(32BIT) + add_library(fms ALIAS fms_r4) + else() + add_library(fms ALIAS fms_r8) + endif() +endif(FMS) ############################################################################### ### stochastic_physics ############################################################################### +if(STOCH_PHYS) add_subdirectory(stochastic_physics) +endif() ############################################################################### -### FV3 or Data Atmosphere +### Atmosphere Components [FV3, MPAS?] ############################################################################### -if(DATM) - add_subdirectory(DATM) -else() +if(FV3) add_subdirectory(FV3) endif() ############################################################################### -### WW3 +### Wave components [WW3] ############################################################################### if(WW3) if(CMAKE_Platform) @@ -196,18 +211,39 @@ if(WW3) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/esmf COMMAND ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly > ${CMAKE_CURRENT_BINARY_DIR}/ww3_make.log 2>&1) - set(WW3_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) + set(WW3_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/obj/libww3_multi_esmf.a) endif() ############################################################################### -### S2S Components [CMEPS, MOM6, CICE] +### Marine Components [MOM6, CICE6] ############################################################################### -if(S2S) - add_subdirectory(CMEPS-interface) +if(MOM6) add_subdirectory(MOM6-interface) +endif() + +if(CICE6) add_subdirectory(CICE-interface) endif() +############################################################################### +### Mediator Components [CMEPS] +############################################################################### +if(CMEPS) + add_subdirectory(CMEPS-interface) +endif() + +############################################################################### +### Data Components [NEMSdatm, CDEPS] +############################################################################### +if(NEMSdatm) + add_subdirectory(DATM) +endif() + +if(CDEPS) + message("ADD CDEPS-interface directory") +# add_subdirectory(CDEPS-interface) +endif() + ############################################################################### ### UFS Library [NEMS] ############################################################################### @@ -234,77 +270,97 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFConvenienceMacros.h COPYONLY) add_library(ufs ${_nems_srcs}) +set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY + ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) +target_include_directories(ufs INTERFACE $ + $) -list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} - FRONT_FMS) -add_dependencies(ufs fms) +list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -if(DATM) - list(APPEND _ufs_defs_private FRONT_DATM=datm) - add_dependencies(ufs datatm) -else() - list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) - add_dependencies(ufs fv3atm) -endif() if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() -set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) + add_dependencies(ufs ww3_nems) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs ww3_nems) - target_link_libraries(ufs PUBLIC ${WW3_LIBS}) + list(APPEND _ufs_libs_public ${WW3_LIBS}) endif() -target_include_directories(ufs INTERFACE $ - $) +list(APPEND _ufs_libs_public esmf) -target_link_libraries(ufs PUBLIC esmf stochastic_physics) +if(STOCH_PHYS) + list(APPEND _ufs_libs_public stochastic_physics) +endif() -if(DATM) - target_link_libraries(ufs PUBLIC datatm) -else() - target_link_libraries(ufs PUBLIC fv3atm) +if(FMS) + add_dependencies(ufs fms) + list(APPEND _ufs_defs_private FRONT_FMS) +endif() + +if(NEMSdatm) + add_dependencies(ufs datatm) + list(APPEND _ufs_defs_private FRONT_DATM=datm) + list(APPEND _ufs_libs_public datatm) +endif() + +if(FV3) + add_dependencies(ufs fv3atm) + list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) + list(APPEND _ufs_libs_public fv3atm) endif() -if(S2S) - list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod - FRONT_CICE6=ice_comp_nuopc - CMEPS - FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps stochastic_physics) - target_link_libraries(ufs PUBLIC mom6 - cice - cmeps) +if(MOM6) + add_dependencies(ufs mom6) + list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod) + list(APPEND _ufs_libs_public mom6) +endif() + +if(CICE6) + add_dependencies(ufs cice) + list(APPEND _ufs_defs_private FRONT_CICE6=ice_comp_nuopc) + list(APPEND _ufs_libs_public cice) +endif() + +if(CMEPS) + add_dependencies(ufs cmeps) + list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) + list(APPEND _ufs_libs_public cmeps) +endif() + +if(CDEPS) + message("Do CDEPS things here") endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") +target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### ### UFS executable ############################################################################### add_executable(ufs_model NEMS/src/MAIN_NEMS.F90) +add_dependencies(ufs_model ufs) list(APPEND _ufs_model_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) -set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +set_target_properties(ufs_model PROPERTIES Fortran_MODULE_DIRECTORY + ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) if(WW3) list(APPEND _ufs_model_defs_private FRONT_WW3=WMESMFMD) target_include_directories(ufs_model PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) - add_dependencies(ufs_model ww3_nems) endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") -if(DATM) +if(NEMSdatm) target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() + target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran) @@ -312,18 +368,16 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### ### Install ############################################################################### -install( - TARGETS ufs +install(TARGETS ufs + EXPORT ufs-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib) - EXPORT ufs-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib) +install(EXPORT ufs-config + DESTINATION lib/cmake) install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) -install(EXPORT ufs-config - DESTINATION lib/cmake -) ############################################################################### ### Done ############################################################################### diff --git a/README.md b/README.md index 20453c6eaa..53e324d71c 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,12 @@ The top level directory structure groups source code and input files as follow: E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. ``` -$> CMAKE_FLAGS="-DS2S=ON" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh +$> CMAKE_FLAGS="-DAPP=S2S" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh ``` +The build system is regularly tested with [Tier-1 and Tier-2 platforms]( +https://github.com/ufs-community/ufs-weather-model/wiki/Regression-Test-Policy-for-Weather-Model-Platforms-and-Compilers). +Configurations for other platforms that are available with UFS should be used with the understanding that they are not regularly +tested and users will have to adapt those to make it work. # Disclaimer diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake new file mode 100644 index 0000000000..a02c79e30a --- /dev/null +++ b/cmake/configure_apps.cmake @@ -0,0 +1,55 @@ +############################################################################### +### Doc +# This file turns ON (only ON, not OFF) a component in a valid application +# If a user wishes to add a new application, they should add an +# Application handle (APP_NAME) in the list of `VALID_APPS` in the +# top-level CMakeLists.txt +# Next, they can define an if-endif block with that APP_NAME and +# turn ON the components specific to this new application. +# Note, only the components required for the application should be turned ON. +# It is forbidden to turn OFF or change any other CMake option in this file. +############################################################################### + +############################################################################### +### Configure Application Components +############################################################################### +if(APP MATCHES "^(ATM|ATMW)$") + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + if(APP MATCHES "ATMW") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in Atmosphere with Waves mode") + else() + message("Configuring UFS app in Atmosphere Only mode") + endif() +endif() + +if(APP MATCHES "^(DATM|DATM_NEMS)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + if(APP MATCHES "DATM_NEMS") + set(NEMSdatm ON CACHE BOOL "Enable NEMS DataAtm" FORCE) + message("Configuring UFS app in (NEMS) Data Atmosphere mode") + elseif(APP MATCHES "DATM") + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + message("Configuring UFS app in (CDEPS) Data Atmosphere mode") + endif() +endif() + +if(APP MATCHES "^(S2S|S2SW)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + if(APP MATCHES "S2SW") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in S2S with Waves mode") + else() + message("Configuring UFS app in S2S mode") + endif() +endif() diff --git a/modulefiles/stampede.intel/fv3 b/modulefiles/stampede.intel/fv3 index 76b7500cbc..b1ca38a351 100644 --- a/modulefiles/stampede.intel/fv3 +++ b/modulefiles/stampede.intel/fv3 @@ -12,38 +12,37 @@ module-whatis "loads NEMS FV3 prerequisites for Stampede/Intel" # handled by the module-setup.sh (or .csh) script. ## -## load programming environment -## this typically includes compiler, MPI and job scheduler +## NCEP libraries ## -module load intel/18.0.2 -module load impi/18.0.2 +module use /work/08048/hanglei/NCEP/install/hpc-stack/modulefiles/stack +module load hpc/1.1.0 +module load hpc-intel/18.0.2 +module load hpc-impi/18.0.2 module load python3/3.7.0 -## -## use pre-compiled ESMF and NCEP libraries for above compiler / MPI combination -## -# DH* todo - shared directory -module use -a /work/06146/tg854455/stampede2/ufs-stack-20200909/intel-18.0.2/impi-18.0.2/modules -# *DH - -module load libpng/1.6.35 -module load netcdf/4.7.4 -module load esmf/8.1.0bs27 - -module load bacio/2.4.0 +module load bacio/2.4.1 module load crtm/2.3.0 -module load g2/3.4.0 -module load g2tmpl/1.9.0 -module load ip/3.3.0 -module load nceppost/dceca26 -module load nemsio/2.5.1 -module load sp/2.3.0 -module load w3emc/2.7.0 -module load w3nco/2.4.0 - -module load gfsio/1.4.0 -module load sfcio/1.4.0 -module load sigio/2.3.0 +module load g2/3.4.1 +module load g2tmpl/1.9.1 +module load ip/3.3.3 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 +module load upp/10.0.0 + +module load gfsio/1.4.1 +module load sfcio/1.4.1 +module load sigio/2.3.2 + +module load jasper/2.0.25 +module load png/1.6.35 +module load zlib/1.2.11 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.2 +module load esmf/8_1_0_beta_snapshot_27 ## ## load cmake diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 3bf1877863..427578d950 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,19 @@ -Thu Mar 18 13:19:36 MDT 2021 +Tue Mar 23 10:02:26 MDT 2021 Start Regression test +Compile 001 elapsed time 331 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 330 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 372 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 337 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 300 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 180 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 370 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 184 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 454 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 376 seconds. APP=DATM_NEMS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 72.427329 +The total amount of wall time = 73.822607 Test 001 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 136.941182 +The total amount of wall time = 142.583647 Test 002 fv3_gfs_v15p2 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +212,13 @@ Checking test 003 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.465164 +The total amount of wall time = 187.862691 Test 003 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +265,13 @@ Checking test 004 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 = 95.241565 +The total amount of wall time = 96.737676 Test 004 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +336,13 @@ Checking test 005 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 = 89.065852 +The total amount of wall time = 89.151107 Test 005 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +407,13 @@ Checking test 006 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 = 144.758066 +The total amount of wall time = 150.318528 Test 006 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 233.688023 +The total amount of wall time = 257.751810 Test 007 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +549,13 @@ Checking test 008 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.519106 +The total amount of wall time = 264.075689 Test 008 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 352.206210 +The total amount of wall time = 354.707006 Test 009 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 166.159439 +The total amount of wall time = 165.624665 Test 010 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +786,13 @@ Checking test 011 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 = 159.091610 +The total amount of wall time = 158.885758 Test 011 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 181.064238 +The total amount of wall time = 181.237842 Test 012 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +928,13 @@ Checking test 013 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 = 243.144962 +The total amount of wall time = 259.165626 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +949,13 @@ Checking test 014 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 = 460.237050 +The total amount of wall time = 461.066887 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1014,13 @@ Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 298.148424 +The total amount of wall time = 306.507474 Test 015 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1079,13 @@ Checking test 016 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 = 303.021790 +The total amount of wall time = 305.432456 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1150,13 @@ Checking test 017 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 = 167.885537 +The total amount of wall time = 167.196042 Test 017 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 77.618175 +The total amount of wall time = 75.360078 Test 018 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1197,13 @@ Checking test 019 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 = 186.595065 +The total amount of wall time = 186.920286 Test 019 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1268,13 @@ Checking test 020 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 = 109.971979 +The total amount of wall time = 109.698301 Test 020 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.480241 +The total amount of wall time = 115.629137 Test 021 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 186.048865 +The total amount of wall time = 184.849713 Test 022 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/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 @@ -1471,13 +1481,13 @@ Checking test 023 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 = 177.982636 +The total amount of wall time = 178.640481 Test 023 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.547670 +The total amount of wall time = 135.283433 Test 024 fv3_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1623,13 @@ Checking test 025 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 = 96.621232 +The total amount of wall time = 98.621448 Test 025 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.750607 +The total amount of wall time = 198.764803 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1765,13 @@ Checking test 027 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 = 205.621718 +The total amount of wall time = 205.615144 Test 027 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_multigases +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 174.473162 +The total amount of wall time = 176.982886 Test 028 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1913,13 @@ Checking test 029 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 = 112.451863 +The total amount of wall time = 113.203162 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1934,13 @@ Checking test 030 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 = 216.026078 +The total amount of wall time = 216.377887 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1999,13 @@ Checking test 031 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 = 305.011925 +The total amount of wall time = 304.979048 Test 031 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_15042/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_56728/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2070,11 @@ Checking test 032 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 = 172.520721 +The total amount of wall time = 173.459798 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 13:37:55 MDT 2021 -Elapsed time: 00h:18m:19s. Have a nice day! +Tue Mar 23 10:24:42 MDT 2021 +Elapsed time: 00h:22m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index f4158365a7..63c6e1bf20 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,28 @@ -Thu Mar 18 13:19:41 MDT 2021 +Tue Mar 23 10:02:03 MDT 2021 Start Regression test +Compile 001 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 672 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 734 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 725 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 765 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 866 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 960 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 32BIT=Y +Compile 008 elapsed time 826 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 729 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 780 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 837 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 254 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 251 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1015 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 1103 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 350 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 651 seconds. APP=DATM_NEMS +Compile 019 elapsed time 240 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +87,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 = 47.958572 +The total amount of wall time = 48.178755 Test 001 fv3_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_decomp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +158,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 = 48.067631 +The total amount of wall time = 47.868721 Test 002 fv3_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_2threads +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +229,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 = 106.388280 +The total amount of wall time = 106.639135 Test 003 fv3_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +282,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 = 22.917253 +The total amount of wall time = 23.548673 Test 004 fv3_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_read_inc +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +353,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 = 47.473873 +The total amount of wall time = 47.049568 Test 005 fv3_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +404,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 = 122.527143 +The total amount of wall time = 123.631961 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +455,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 = 46.852420 +The total amount of wall time = 46.195175 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -452,7 +471,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -487,13 +506,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 = 47.080210 +The total amount of wall time = 47.101523 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +557,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 = 47.236247 +The total amount of wall time = 46.112194 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +608,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 = 47.047256 +The total amount of wall time = 46.426691 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +659,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 = 123.070683 +The total amount of wall time = 123.357213 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +730,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 = 54.625384 +The total amount of wall time = 56.835528 Test 012 fv3_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +801,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 = 29.444011 +The total amount of wall time = 28.790625 Test 013 fv3_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +872,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 = 52.987457 +The total amount of wall time = 51.596543 Test 014 fv3_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_iau +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +943,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 = 45.283016 +The total amount of wall time = 46.879389 Test 015 fv3_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_lheatstrg +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +994,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 = 46.276234 +The total amount of wall time = 45.983111 Test 016 fv3_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_multigases_repro +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1071,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 = 111.440695 +The total amount of wall time = 112.612255 Test 017 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1142,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 = 40.434938 +The total amount of wall time = 39.816619 Test 018 fv3_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1201,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 = 324.010684 +The total amount of wall time = 332.376233 Test 019 fv3_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1271,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 = 352.560075 +The total amount of wall time = 352.138405 Test 020 fv3_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1285,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 = 714.905067 +The total amount of wall time = 721.330913 Test 021 fv3_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 = 382.830994 +The total amount of wall time = 395.221716 Test 022 fv3_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 721.119525 +The total amount of wall time = 739.701537 Test 023 fv3_regional_quilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1329,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 717.041861 +The total amount of wall time = 736.434029 Test 024 fv3_regional_quilt_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 717.890376 +The total amount of wall time = 739.713307 Test 025 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.663537 +The total amount of wall time = 53.464722 Test 026 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_gwd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.955815 +The total amount of wall time = 53.006336 Test 027 fv3_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.663012 +The total amount of wall time = 54.069160 Test 028 fv3_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.600685 +The total amount of wall time = 141.686452 Test 029 fv3_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.721545 +The total amount of wall time = 59.566593 Test 030 fv3_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_satmedmfq +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.607443 +The total amount of wall time = 59.229744 Test 031 fv3_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmp_32bit +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 42.216585 +The total amount of wall time = 41.624572 Test 032 fv3_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1755,13 @@ Checking test 033 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 = 73.153192 +The total amount of wall time = 72.784409 Test 033 fv3_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_cpt +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 328.693268 +The total amount of wall time = 331.355609 Test 034 fv3_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.976083 +The total amount of wall time = 202.125869 Test 035 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1978,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 101.175017 +The total amount of wall time = 101.714197 Test 036 fv3_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2049,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.708498 +The total amount of wall time = 106.224389 Test 037 fv3_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2120,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.770375 +The total amount of wall time = 96.969428 Test 038 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2191,13 @@ Checking test 039 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 = 91.204857 +The total amount of wall time = 90.728528 Test 039 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2262,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.160438 +The total amount of wall time = 107.279906 Test 040 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2326,13 +2345,13 @@ Checking test 041 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.958834 +The total amount of wall time = 130.505196 Test 041 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_restart Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2379,13 +2398,13 @@ Checking test 042 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 = 67.685012 +The total amount of wall time = 68.582090 Test 042 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_stochy Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2469,13 @@ Checking test 043 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 = 61.220929 +The total amount of wall time = 62.889352 Test 043 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2540,13 @@ Checking test 044 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 = 225.546934 +The total amount of wall time = 224.082495 Test 044 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_c192L127 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2586,13 +2605,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 831.881649 +The total amount of wall time = 928.334238 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_2thrd +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_RRTMGP_2thrd Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 464.680179 +The total amount of wall time = 477.074774 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gocart_clm +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gocart_clm Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,13 +2727,13 @@ Checking test 047 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 58.082096 +The total amount of wall time = 55.320850 Test 047 fv3_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_flake Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2779,13 +2798,13 @@ Checking test 048 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 = 117.009840 +The total amount of wall time = 116.427427 Test 048 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2869,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 181.728184 +The total amount of wall time = 195.904103 Test 049 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2871,13 +2890,13 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 318.936857 +The total amount of wall time = 318.947790 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2936,13 +2955,13 @@ Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 216.580824 +The total amount of wall time = 217.260557 Test 051 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_warmstart Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3001,13 +3020,13 @@ Checking test 052 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 = 215.713858 +The total amount of wall time = 215.968637 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3072,13 +3091,13 @@ Checking test 053 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 = 115.663476 +The total amount of wall time = 115.543656 Test 053 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_debug Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3143,13 +3162,13 @@ Checking test 054 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.322214 +The total amount of wall time = 245.121956 Test 054 fv3_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3214,13 +3233,13 @@ Checking test 055 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 = 190.266804 +The total amount of wall time = 190.269671 Test 055 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v15p2_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v15p2_RRTMGP_debug Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3304,13 @@ Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.139272 +The total amount of wall time = 386.179513 Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 @@ -3356,13 +3375,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 = 391.135094 +The total amount of wall time = 393.762440 Test 057 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_regional_control_debug Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3370,13 +3389,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 = 367.762370 +The total amount of wall time = 367.914286 Test 058 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_control_debug Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3403,13 +3422,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 147.442953 +The total amount of wall time = 146.617398 Test 059 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_stretched_nest_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 @@ -3426,13 +3445,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 = 433.260613 +The total amount of wall time = 433.869722 Test 060 fv3_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_debug Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3497,13 +3516,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 = 216.558308 +The total amount of wall time = 216.723020 Test 061 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gsd_diag3d_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gsd_diag3d_debug Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3568,13 +3587,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 = 262.674351 +The total amount of wall time = 265.472296 Test 062 fv3_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_thompson_debug Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3639,13 +3658,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 = 359.965520 +The total amount of wall time = 360.098930 Test 063 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 @@ -3710,13 +3729,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 = 347.570263 +The total amount of wall time = 347.542197 Test 064 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3781,13 +3800,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 = 209.696788 +The total amount of wall time = 209.333728 Test 065 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3852,13 +3871,13 @@ Checking test 066 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 = 222.971545 +The total amount of wall time = 223.613218 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3873,13 +3892,13 @@ Checking test 067 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 = 396.434516 +The total amount of wall time = 397.115334 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3938,13 +3957,13 @@ Checking test 068 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 = 602.823082 +The total amount of wall time = 604.069957 Test 068 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4009,13 +4028,13 @@ Checking test 069 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 = 342.964276 +The total amount of wall time = 342.678273 Test 069 fv3_gfs_v16_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4065,13 +4084,13 @@ Checking test 070 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 = 99.168593 +The total amount of wall time = 99.211920 Test 070 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4121,13 +4140,13 @@ Checking test 071 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 = 55.667218 +The total amount of wall time = 55.480542 Test 071 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4177,13 +4196,13 @@ Checking test 072 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 = 95.002092 +The total amount of wall time = 98.419990 Test 072 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4233,13 +4252,13 @@ Checking test 073 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 = 54.074622 +The total amount of wall time = 54.817555 Test 073 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_2threads +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4289,13 +4308,13 @@ Checking test 074 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 = 259.441104 +The total amount of wall time = 260.478892 Test 074 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_decomp +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4345,13 +4364,13 @@ Checking test 075 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 = 96.105468 +The total amount of wall time = 96.451004 Test 075 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_satmedmf +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4401,13 +4420,13 @@ Checking test 076 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 = 93.120103 +The total amount of wall time = 96.401051 Test 076 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_ca +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4457,13 +4476,13 @@ Checking test 077 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 = 96.397273 +The total amount of wall time = 97.547900 Test 077 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,13 +4532,13 @@ Checking test 078 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 = 401.073510 +The total amount of wall time = 411.206890 Test 078 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,13 +4588,13 @@ Checking test 079 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 = 289.528245 +The total amount of wall time = 295.653758 Test 079 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4625,13 +4644,13 @@ Checking test 080 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 = 410.274779 +The total amount of wall time = 408.293885 Test 080 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4681,13 +4700,13 @@ Checking test 081 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 = 292.162685 +The total amount of wall time = 298.385402 Test 081 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,13 +4759,13 @@ Checking test 082 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 = 1575.556051 +The total amount of wall time = 1601.371689 Test 082 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,13 +4818,13 @@ Checking test 083 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 = 842.742485 +The total amount of wall time = 841.967363 Test 083 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_controlfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4858,13 +4877,13 @@ Checking test 084 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 = 1588.019550 +The total amount of wall time = 1592.004091 Test 084 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restartfrac_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4917,13 +4936,13 @@ Checking test 085 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 = 828.257714 +The total amount of wall time = 838.836412 Test 085 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,13 +4995,13 @@ Checking test 086 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 = 911.514819 +The total amount of wall time = 910.340201 Test 086 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmark +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,13 +5054,13 @@ Checking test 087 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 = 493.418354 +The total amount of wall time = 482.987624 Test 087 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5094,13 +5113,13 @@ Checking test 088 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 = 915.905406 +The total amount of wall time = 905.071576 Test 088 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5153,13 +5172,13 @@ Checking test 089 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 = 491.543561 +The total amount of wall time = 493.685792 Test 089 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_v16 Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5212,13 +5231,13 @@ Checking test 090 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 1639.823971 +The total amount of wall time = 1631.797689 Test 090 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_restart_bmarkfrac_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_restart_bmarkfrac_v16 Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5271,13 +5290,13 @@ Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -The total amount of wall time = 867.579293 +The total amount of wall time = 876.604526 Test 091 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmark_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmark_wave Checking test 092 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5333,13 +5352,13 @@ Checking test 092 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 = 1525.613086 +The total amount of wall time = 1568.580930 Test 092 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave Checking test 093 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5395,13 +5414,13 @@ Checking test 093 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 = 1582.184637 +The total amount of wall time = 1571.671695 Test 093 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_bmarkfrac_wave_v16 Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5456,13 +5475,13 @@ Checking test 094 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 = 1046.151554 +The total amount of wall time = 1058.786853 Test 094 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_control_wave +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_control_wave Checking test 095 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5515,13 +5534,13 @@ Checking test 095 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 808.664644 +The total amount of wall time = 815.612195 Test 095 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debug Checking test 096 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,13 +5590,13 @@ Checking test 096 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 = 306.754779 +The total amount of wall time = 306.791877 Test 096 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/cpld_debugfrac +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/cpld_debugfrac Checking test 097 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5627,73 +5646,73 @@ Checking test 097 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 = 305.357800 +The total amount of wall time = 305.455981 Test 097 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 102.539148 +The total amount of wall time = 102.438765 Test 098 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_restart_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 64.278362 +The total amount of wall time = 63.790987 Test 099 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 96.288880 +The total amount of wall time = 95.432646 Test 100 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 98.708313 +The total amount of wall time = 98.813916 Test 101 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 93.157359 +The total amount of wall time = 96.660125 Test 102 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_cfsr Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5702,13 +5721,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 -The total amount of wall time = 377.314568 +The total amount of wall time = 411.142194 Test 103 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/datm_mx025_gefs Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5717,23 +5736,23 @@ 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 -The total amount of wall time = 390.675084 +The total amount of wall time = 391.332862 Test 104 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_66446/datm_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_17658/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 -The total amount of wall time = 285.156024 +The total amount of wall time = 285.144005 Test 105 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 15:08:27 MDT 2021 -Elapsed time: 01h:48m:46s. Have a nice day! +Tue Mar 23 11:46:13 MDT 2021 +Elapsed time: 01h:44m:10s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 88b99b94a6..a0dea96443 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,27 @@ -Thu Mar 18 14:02:42 EDT 2021 +Mon Mar 22 19:31:45 EDT 2021 Start Regression test +Compile 001 elapsed time 659 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 666 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 668 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 761 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 32BIT=Y +Compile 008 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 698 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 214 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 249 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 250 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 695 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 016 elapsed time 260 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 525 seconds. APP=DATM_NEMS +Compile 018 elapsed time 213 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +86,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 = 58.173925 +The total amount of wall time = 53.225195 Test 001 fv3_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_decomp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +157,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 = 77.669375 +The total amount of wall time = 75.935929 Test 002 fv3_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_2threads +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +228,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 = 57.378820 +The total amount of wall time = 57.173784 Test 003 fv3_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +281,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 = 51.109880 +The total amount of wall time = 50.596998 Test 004 fv3_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_read_inc +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +352,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 = 69.991447 +The total amount of wall time = 70.840529 Test 005 fv3_read_inc PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +403,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 = 118.327474 +The total amount of wall time = 102.378153 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +454,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 = 65.565436 +The total amount of wall time = 40.642970 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +505,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 = 118.454508 +The total amount of wall time = 59.474674 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +556,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 = 40.285961 +The total amount of wall time = 43.503530 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +607,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 = 69.056323 +The total amount of wall time = 40.957067 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +658,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 = 148.154030 +The total amount of wall time = 132.992870 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +729,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 = 53.992756 +The total amount of wall time = 52.544528 Test 012 fv3_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +800,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 = 85.120918 +The total amount of wall time = 58.000807 Test 013 fv3_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lndp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +871,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 = 55.435999 +The total amount of wall time = 47.989290 Test 014 fv3_lndp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_iau +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +942,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 = 69.747564 +The total amount of wall time = 46.163920 Test 015 fv3_iau PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_lheatstrg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +993,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 = 39.620394 +The total amount of wall time = 43.945547 Test 016 fv3_lheatstrg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_multigases_repro +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1070,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 = 93.531560 +The total amount of wall time = 97.564858 Test 017 fv3_multigases PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1141,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 = 74.532582 +The total amount of wall time = 69.788288 Test 018 fv3_control_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1200,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 = 303.026302 +The total amount of wall time = 301.800169 Test 019 fv3_stretched PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1270,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 = 333.078656 +The total amount of wall time = 367.462041 Test 020 fv3_stretched_nest PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1284,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 = 672.510765 +The total amount of wall time = 675.543808 Test 021 fv3_regional_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 = 367.874886 +The total amount of wall time = 368.830369 Test 022 fv3_regional_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1313,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 693.509027 +The total amount of wall time = 693.040273 Test 023 fv3_regional_quilt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1328,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 688.758619 +The total amount of wall time = 693.339867 Test 024 fv3_regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -The total amount of wall time = 692.256162 +The total amount of wall time = 696.050653 Test 025 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1393,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.829686 +The total amount of wall time = 47.247639 Test 026 fv3_gfdlmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1444,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 46.787917 +The total amount of wall time = 73.433251 Test 027 fv3_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1495,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.856230 +The total amount of wall time = 51.640234 Test 028 fv3_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1546,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.446355 +The total amount of wall time = 124.913956 Test 029 fv3_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1597,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 81.529699 +The total amount of wall time = 55.783295 Test 030 fv3_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_satmedmfq +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1648,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.994321 +The total amount of wall time = 55.670851 Test 031 fv3_satmedmfq PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1699,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 45.413532 +The total amount of wall time = 40.005785 Test 032 fv3_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1754,13 @@ Checking test 033 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 = 109.161842 +The total amount of wall time = 84.731814 Test 033 fv3_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_cpt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1811,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 295.095030 +The total amount of wall time = 318.400027 Test 034 fv3_cpt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1906,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.933302 +The total amount of wall time = 195.270970 Test 035 fv3_gsd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rap +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1977,13 @@ Checking test 036 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.009529 +The total amount of wall time = 97.802874 Test 036 fv3_rap PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_hrrr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2048,13 @@ Checking test 037 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.447812 +The total amount of wall time = 101.307182 Test 037 fv3_hrrr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2119,13 @@ Checking test 038 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.252587 +The total amount of wall time = 93.567935 Test 038 fv3_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2190,13 @@ Checking test 039 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 = 143.020293 +The total amount of wall time = 88.994027 Test 039 fv3_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2261,13 @@ Checking test 040 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.168042 +The total amount of wall time = 108.472896 Test 040 fv3_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2 Checking test 041 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2332,13 @@ Checking test 041 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.212450 +The total amount of wall time = 106.728293 Test 041 fv3_gfs_v15p2 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2415,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.339200 +The total amount of wall time = 121.076566 Test 042 fv3_gfs_v16 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2468,13 @@ Checking test 043 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 = 75.138607 +The total amount of wall time = 61.376138 Test 043 fv3_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2539,13 @@ Checking test 044 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 = 82.378238 +The total amount of wall time = 55.983496 Test 044 fv3_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2610,13 @@ Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.144328 +The total amount of wall time = 177.460026 Test 045 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2681,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 = 178.879686 +The total amount of wall time = 181.213570 Test 046 fv3_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2746,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 720.183361 +The total amount of wall time = 724.789646 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_2thrd +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2817,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 272.559145 +The total amount of wall time = 274.080356 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2868,13 @@ Checking test 049 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.174201 +The total amount of wall time = 135.369583 Test 049 fv3_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2901,13 +2919,13 @@ Checking test 050 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.489969 +The total amount of wall time = 132.882688 Test 050 fv3_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gocart_clm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2952,13 +2970,13 @@ Checking test 051 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.544351 +The total amount of wall time = 54.922876 Test 051 fv3_gocart_clm PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3041,13 @@ Checking test 052 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 = 110.543339 +The total amount of wall time = 109.303302 Test 052 fv3_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3094,13 +3112,13 @@ Checking test 053 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 = 161.699485 +The total amount of wall time = 167.057868 Test 053 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3115,13 +3133,13 @@ Checking test 054 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 = 297.153337 +The total amount of wall time = 327.903178 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3198,13 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 184.919745 +The total amount of wall time = 185.574296 Test 055 fv3_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3263,13 @@ Checking test 056 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 = 196.396511 +The total amount of wall time = 186.731894 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3316,13 +3334,13 @@ Checking test 057 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 = 100.193398 +The total amount of wall time = 100.736490 Test 057 fv3_gfs_v16_ras PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_debug Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3405,13 @@ Checking test 058 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 227.452795 +The total amount of wall time = 228.248607 Test 058 fv3_gfs_v15p2_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3476,13 @@ Checking test 059 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 = 169.959918 +The total amount of wall time = 171.161098 Test 059 fv3_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v15p2_RRTMGP_debug Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3547,13 @@ Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 364.400285 +The total amount of wall time = 365.856875 Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_RRTMGP_debug Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3618,13 @@ Checking test 061 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 = 373.305128 +The total amount of wall time = 374.839771 Test 061 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_regional_control_debug Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3614,13 +3632,13 @@ Checking test 062 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 = 366.383020 +The total amount of wall time = 370.805224 Test 062 fv3_regional_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_control_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_control_debug Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3647,13 +3665,13 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 128.722369 +The total amount of wall time = 131.307378 Test 063 fv3_control_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_stretched_nest_debug Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3670,13 +3688,13 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 437.496081 +The total amount of wall time = 436.083582 Test 064 fv3_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_debug Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3759,13 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.713598 +The total amount of wall time = 199.019429 Test 065 fv3_gsd_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gsd_diag3d_debug Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3830,13 @@ Checking test 066 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 = 217.697104 +The total amount of wall time = 224.513938 Test 066 fv3_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_debug Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3901,13 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 340.529417 +The total amount of wall time = 342.983195 Test 067 fv3_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_thompson_no_aero_debug Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3972,13 @@ Checking test 068 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 = 327.741274 +The total amount of wall time = 331.555462 Test 068 fv3_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4043,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 189.380950 +The total amount of wall time = 194.231787 Test 069 fv3_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4096,13 +4114,13 @@ Checking test 070 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 = 205.502659 +The total amount of wall time = 207.154542 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4117,13 +4135,13 @@ Checking test 071 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 = 375.463604 +The total amount of wall time = 377.946486 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfsv16_ugwpv1_debug Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4182,13 +4200,13 @@ Checking test 072 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 = 583.120481 +The total amount of wall time = 579.751934 Test 072 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/fv3_gfs_v16_ras_debug Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4253,13 +4271,13 @@ Checking test 073 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 = 322.960453 +The total amount of wall time = 323.082325 Test 073 fv3_gfs_v16_ras_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4309,13 +4327,13 @@ Checking test 074 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 = 96.066367 +The total amount of wall time = 102.328696 Test 074 cpld_control PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,13 +4383,13 @@ Checking test 075 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 = 80.916076 +The total amount of wall time = 87.418611 Test 075 cpld_restart PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4421,13 +4439,13 @@ Checking test 076 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 = 103.398861 +The total amount of wall time = 102.481930 Test 076 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4477,13 +4495,13 @@ Checking test 077 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 = 74.393433 +The total amount of wall time = 48.798117 Test 077 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_2threads +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_2threads Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4533,13 +4551,13 @@ Checking test 078 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 = 132.871286 +The total amount of wall time = 148.977014 Test 078 cpld_2threads PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_decomp +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_decomp Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4589,13 +4607,13 @@ Checking test 079 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 = 91.193769 +The total amount of wall time = 121.811380 Test 079 cpld_decomp PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_satmedmf +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_satmedmf Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4645,13 +4663,13 @@ Checking test 080 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 = 90.195777 +The total amount of wall time = 93.958109 Test 080 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_ca +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_ca Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4719,13 @@ Checking test 081 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 = 109.883565 +The total amount of wall time = 90.407515 Test 081 cpld_ca PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c192 Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4757,13 +4775,13 @@ Checking test 082 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 = 411.594599 +The total amount of wall time = 412.336650 Test 082 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c192 Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4813,13 +4831,13 @@ Checking test 083 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 = 287.980100 +The total amount of wall time = 279.332122 Test 083 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c192 Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4869,13 +4887,13 @@ Checking test 084 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 = 412.493013 +The total amount of wall time = 413.374264 Test 084 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c192 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c192 Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4925,13 +4943,13 @@ Checking test 085 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 = 310.823757 +The total amount of wall time = 306.907812 Test 085 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_control_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_control_c384 Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +5002,13 @@ Checking test 086 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 = 1529.454292 +The total amount of wall time = 1552.205444 Test 086 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_c384 Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +5061,13 @@ Checking test 087 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 = 776.811556 +The total amount of wall time = 777.917290 Test 087 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_controlfrac_c384 Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +5120,13 @@ Checking test 088 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 = 1513.024381 +The total amount of wall time = 1515.256597 Test 088 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restartfrac_c384 +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restartfrac_c384 Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5179,13 @@ Checking test 089 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 = 775.324726 +The total amount of wall time = 781.289270 Test 089 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmark Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5238,13 @@ Checking test 090 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 = 891.937549 +The total amount of wall time = 958.000708 Test 090 cpld_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmark +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmark Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5279,13 +5297,13 @@ Checking test 091 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 = 456.077376 +The total amount of wall time = 453.419012 Test 091 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_bmarkfrac Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5338,13 +5356,13 @@ Checking test 092 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 = 877.482866 +The total amount of wall time = 942.282580 Test 092 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_restart_bmarkfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_restart_bmarkfrac Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5397,13 +5415,13 @@ Checking test 093 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 = 458.318475 +The total amount of wall time = 453.040563 Test 093 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debug +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5453,13 +5471,13 @@ Checking test 094 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 = 264.028391 +The total amount of wall time = 262.426117 Test 094 cpld_debug PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/cpld_debugfrac +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5509,73 +5527,73 @@ Checking test 095 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 = 270.464542 +The total amount of wall time = 262.383198 Test 095 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_control_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_control_cfsr Checking test 096 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 = 99.886181 +The total amount of wall time = 102.362921 Test 096 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_restart_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_restart_cfsr Checking test 097 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 = 62.137315 +The total amount of wall time = 59.056087 Test 097 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_control_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_control_gefs Checking test 098 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.549332 +The total amount of wall time = 96.122095 Test 098 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_bulk_cfsr Checking test 099 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 = 95.883983 +The total amount of wall time = 100.572498 Test 099 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_bulk_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_bulk_gefs Checking test 100 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 = 98.449456 +The total amount of wall time = 104.806785 Test 100 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_mx025_gefs +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/datm_mx025_gefs Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5584,23 +5602,23 @@ 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 = 448.897550 +The total amount of wall time = 404.813727 Test 101 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_39899/datm_debug_cfsr +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_25843/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 = 247.861378 +The total amount of wall time = 228.906112 Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 18 15:28:43 EDT 2021 -Elapsed time: 01h:26m:02s. Have a nice day! +Mon Mar 22 21:33:28 EDT 2021 +Elapsed time: 02h:01m:44s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9136f2f100..fed59af2fa 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,19 @@ -Fri Mar 19 16:32:02 UTC 2021 +Mon Mar 22 23:32:14 UTC 2021 Start Regression test +Compile 001 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 209 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 229 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 207 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 132 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 105 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 231 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 230 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 217 seconds. APP=DATM_NEMS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,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 = 237.471537 + 0: The total amount of wall time = 230.266133 Test 001 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +129,13 @@ Checking test 002 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 675.469331 + 0: The total amount of wall time = 599.039738 Test 002 fv3_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +212,13 @@ Checking test 003 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 = 644.481194 + 0: The total amount of wall time = 615.898198 Test 003 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_restart Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +265,13 @@ Checking test 004 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 = 293.565687 + 0: The total amount of wall time = 291.894690 Test 004 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_stochy Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +336,13 @@ Checking test 005 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 = 403.710703 + 0: The total amount of wall time = 358.763115 Test 005 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_flake Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +407,13 @@ Checking test 006 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 = 674.892521 + 0: The total amount of wall time = 600.638267 Test 006 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +478,13 @@ Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 758.831205 + 0: The total amount of wall time = 676.389434 Test 007 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +549,13 @@ Checking test 008 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 = 764.434046 + 0: The total amount of wall time = 669.247663 Test 008 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +644,13 @@ Checking test 009 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 846.078479 + 0: The total amount of wall time = 812.596497 Test 009 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +715,13 @@ Checking test 010 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.229886 + 0: The total amount of wall time = 401.362889 Test 010 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_no_aero Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +786,13 @@ Checking test 011 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 = 387.260332 + 0: The total amount of wall time = 399.151230 Test 011 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +857,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.446092 + 0: The total amount of wall time = 411.855119 Test 012 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +928,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 640.029604 + 0: The total amount of wall time = 624.576443 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +949,13 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 450.842489 + 0: The total amount of wall time = 458.898500 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1014,13 @@ Checking test 015 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 = 901.591014 + 0: The total amount of wall time = 915.054144 Test 015 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_warmstart Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1079,13 @@ Checking test 016 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 = 917.105238 + 0: The total amount of wall time = 914.921473 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1150,13 @@ Checking test 017 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 = 574.592917 + 0: The total amount of wall time = 565.263089 Test 017 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_control_debug Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1183,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 84.997363 + 0: The total amount of wall time = 81.813810 Test 018 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_regional_control_debug Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1197,13 @@ Checking test 019 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 = 172.290542 + 0: The total amount of wall time = 166.326174 Test 019 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1268,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 = 118.870100 + 0: The total amount of wall time = 119.092666 Test 020 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1339,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 = 121.813272 + 0: The total amount of wall time = 122.752133 Test 021 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1410,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 = 200.768902 + 0: The total amount of wall time = 201.099441 Test 022 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/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 @@ -1471,13 +1481,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 = 192.773701 + 0: The total amount of wall time = 193.623075 Test 023 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1552,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 = 296.726170 + 0: The total amount of wall time = 282.075516 Test 024 fv3_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1623,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 = 127.074768 + 0: The total amount of wall time = 128.813953 Test 025 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v15p2_RRTMGP_debug Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1694,13 @@ Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.302773 + 0: The total amount of wall time = 326.063341 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_RRTMGP_debug Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1765,13 @@ Checking test 027 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 = 354.534815 + 0: The total amount of wall time = 346.720349 Test 027 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_multigases Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1842,13 @@ Checking test 028 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 420.499654 + 0: The total amount of wall time = 437.284426 Test 028 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1913,13 @@ Checking test 029 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 = 132.677680 + 0: The total amount of wall time = 134.270458 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1934,13 @@ Checking test 030 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.660754 + 0: The total amount of wall time = 227.874411 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfsv16_ugwpv1_debug Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1999,13 @@ Checking test 031 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 = 391.564759 + 0: The total amount of wall time = 393.520437 Test 031 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_148281/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_201480/fv3_gfs_v16_ras_debug Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2070,11 @@ Checking test 032 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 = 219.969998 + 0: The total amount of wall time = 219.615543 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 19:23:01 UTC 2021 -Elapsed time: 02h:50m:59s. Have a nice day! +Mon Mar 22 23:58:26 UTC 2021 +Elapsed time: 00h:26m:12s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 664939a3ff..d98bdacc82 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,29 @@ -Fri Mar 19 15:56:08 UTC 2021 +Mon Mar 22 23:46:54 UTC 2021 Start Regression test +Compile 001 elapsed time 824 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 966 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 794 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 538 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 575 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 699 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 588 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 32BIT=Y +Compile 009 elapsed time 573 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 515 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 505 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 533 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 169 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 217 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 290 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 560 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 608 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 236 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 402 seconds. APP=DATM_NEMS +Compile 020 elapsed time 148 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 39.366954 + 0: The total amount of wall time = 41.030328 Test 001 fv3_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +159,13 @@ Checking test 002 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.042910 + 0: The total amount of wall time = 40.788778 Test 002 fv3_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +230,13 @@ Checking test 003 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.787880 + 0: The total amount of wall time = 42.015029 Test 003 fv3_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +283,13 @@ Checking test 004 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.759936 + 0: The total amount of wall time = 19.138450 Test 004 fv3_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +354,13 @@ Checking test 005 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 = 36.350124 + 0: The total amount of wall time = 36.320009 Test 005 fv3_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +405,13 @@ Checking test 006 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 = 109.973546 + 0: The total amount of wall time = 119.133302 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +456,13 @@ Checking test 007 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 = 37.412712 + 0: The total amount of wall time = 37.286086 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +507,13 @@ Checking test 008 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 = 47.306747 + 0: The total amount of wall time = 51.159720 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +558,13 @@ Checking test 009 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 = 36.743012 + 0: The total amount of wall time = 38.669334 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +609,13 @@ Checking test 010 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 = 36.238317 + 0: The total amount of wall time = 37.356743 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +660,13 @@ Checking test 011 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 = 96.443016 + 0: The total amount of wall time = 96.705260 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 41.237996 + 0: The total amount of wall time = 40.753609 Test 012 fv3_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 25.717263 + 0: The total amount of wall time = 26.700711 Test 013 fv3_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.449009 + 0: The total amount of wall time = 43.608968 Test 014 fv3_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +944,13 @@ Checking test 015 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.585567 + 0: The total amount of wall time = 35.910157 Test 015 fv3_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +995,13 @@ Checking test 016 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.734224 + 0: The total amount of wall time = 36.034232 Test 016 fv3_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 648.749887 + 0: The total amount of wall time = 651.522086 Test 017 fv3_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 794.961885 + 0: The total amount of wall time = 795.771025 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 680.930308 + 0: The total amount of wall time = 686.696713 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 94.288968 + 0: The total amount of wall time = 94.409498 Test 020 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1299,13 @@ Checking test 021 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 = 35.895105 + 0: The total amount of wall time = 37.293494 Test 021 fv3_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.544988 + 0: The total amount of wall time = 224.619141 Test 022 fv3_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1428,13 @@ Checking test 023 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 = 241.675102 + 0: The total amount of wall time = 241.143728 Test 023 fv3_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1442,25 @@ Checking test 024 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 = 548.190531 + 0: The total amount of wall time = 545.888116 Test 024 fv3_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_restart Checking test 025 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 = 302.533953 + 0: The total amount of wall time = 302.592031 Test 025 fv3_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 573.061955 + 0: The total amount of wall time = 571.379197 Test 026 fv3_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1486,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 572.216512 + 0: The total amount of wall time = 572.107104 Test 027 fv3_regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1500,13 @@ Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 576.056927 + 0: The total amount of wall time = 574.912938 Test 028 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.336905 + 0: The total amount of wall time = 42.405055 Test 029 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1602,13 @@ Checking test 030 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 = 42.847183 + 0: The total amount of wall time = 42.194658 Test 030 fv3_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1653,13 @@ Checking test 031 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 = 43.159585 + 0: The total amount of wall time = 42.634125 Test 031 fv3_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1704,13 @@ Checking test 032 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.230208 + 0: The total amount of wall time = 107.844218 Test 032 fv3_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1755,13 @@ Checking test 033 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.557898 + 0: The total amount of wall time = 45.213413 Test 033 fv3_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.282295 + 0: The total amount of wall time = 45.173363 Test 034 fv3_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1857,13 @@ Checking test 035 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.633248 + 0: The total amount of wall time = 36.570245 Test 035 fv3_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1912,13 @@ Checking test 036 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 = 72.571621 + 0: The total amount of wall time = 74.817737 Test 036 fv3_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 253.276627 + 0: The total amount of wall time = 253.319232 Test 037 fv3_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.512813 + 0: The total amount of wall time = 177.564346 Test 038 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.803927 + 0: The total amount of wall time = 87.295678 Test 039 fv3_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.256129 + 0: The total amount of wall time = 96.088209 Test 040 fv3_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.610243 + 0: The total amount of wall time = 83.657385 Test 041 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2348,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 80.016053 + 0: The total amount of wall time = 80.112242 Test 042 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2419,13 @@ Checking test 043 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.763308 + 0: The total amount of wall time = 97.405291 Test 043 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2490,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 93.635316 + 0: The total amount of wall time = 92.950771 Test 044 fv3_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2573,13 @@ Checking test 045 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 = 102.081819 + 0: The total amount of wall time = 103.658244 Test 045 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2626,13 @@ Checking test 046 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 = 54.023024 + 0: The total amount of wall time = 52.932842 Test 046 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2697,13 @@ Checking test 047 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 = 46.823884 + 0: The total amount of wall time = 47.955265 Test 047 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2768,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 155.682140 + 0: The total amount of wall time = 155.768039 Test 048 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2839,13 @@ Checking test 049 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 = 165.211830 + 0: The total amount of wall time = 160.084440 Test 049 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2904,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 621.071081 + 0: The total amount of wall time = 624.134358 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_2thrd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2975,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 171.747147 + 0: The total amount of wall time = 174.236436 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3026,13 @@ Checking test 052 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 = 114.605300 + 0: The total amount of wall time = 114.815562 Test 052 fv3_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3077,13 @@ Checking test 053 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 = 112.926929 + 0: The total amount of wall time = 112.729723 Test 053 fv3_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3128,13 @@ Checking test 054 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 = 46.699732 + 0: The total amount of wall time = 48.822872 Test 054 fv3_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3199,13 @@ Checking test 055 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 = 97.267533 + 0: The total amount of wall time = 98.159527 Test 055 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3270,13 @@ Checking test 056 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.251279 + 0: The total amount of wall time = 141.808981 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3291,13 @@ Checking test 057 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 = 279.445435 + 0: The total amount of wall time = 279.286937 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3356,13 @@ Checking test 058 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 = 162.403031 + 0: The total amount of wall time = 163.097602 Test 058 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3421,13 @@ Checking test 059 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 = 164.604458 + 0: The total amount of wall time = 162.731251 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3492,13 @@ Checking test 060 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 = 87.473920 + 0: The total amount of wall time = 88.161439 Test 060 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3563,13 @@ Checking test 061 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 = 225.572325 + 0: The total amount of wall time = 227.007305 Test 061 fv3_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3634,13 @@ Checking test 062 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 = 173.296381 + 0: The total amount of wall time = 172.622768 Test 062 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v15p2_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3705,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.706433 + 0: The total amount of wall time = 349.388826 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3776,13 @@ Checking test 064 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 = 347.673806 + 0: The total amount of wall time = 352.212254 Test 064 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3790,13 @@ Checking test 065 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 = 353.505385 + 0: The total amount of wall time = 347.942146 Test 065 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3823,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 132.647365 + 0: The total amount of wall time = 130.840777 Test 066 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3846,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 352.899196 + 0: The total amount of wall time = 351.036123 Test 067 fv3_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3917,13 @@ Checking test 068 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.568431 + 0: The total amount of wall time = 195.786741 Test 068 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3988,13 @@ Checking test 069 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.595468 + 0: The total amount of wall time = 255.528227 Test 069 fv3_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4059,13 @@ Checking test 070 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 = 333.573337 + 0: The total amount of wall time = 327.548315 Test 070 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4130,13 @@ Checking test 071 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 = 317.647750 + 0: The total amount of wall time = 322.229219 Test 071 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4201,13 @@ Checking test 072 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 = 192.390696 + 0: The total amount of wall time = 191.080651 Test 072 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4272,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 203.404709 + 0: The total amount of wall time = 201.966598 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4293,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 380.261543 + 0: The total amount of wall time = 387.174978 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4358,13 @@ Checking test 075 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 = 542.538902 + 0: The total amount of wall time = 548.665426 Test 075 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4429,13 @@ Checking test 076 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 = 320.026427 + 0: The total amount of wall time = 308.110126 Test 076 fv3_gfs_v16_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4485,13 @@ Checking test 077 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.492388 + 0: The total amount of wall time = 91.160881 Test 077 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4541,13 @@ Checking test 078 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 = 52.752001 + 0: The total amount of wall time = 53.505299 Test 078 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4597,13 @@ Checking test 079 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 89.156218 + 0: The total amount of wall time = 92.818979 Test 079 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4653,13 @@ Checking test 080 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.839990 + 0: The total amount of wall time = 54.188205 Test 080 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4709,13 @@ Checking test 081 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 = 109.331295 + 0: The total amount of wall time = 109.846490 Test 081 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4765,13 @@ Checking test 082 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 = 86.886875 + 0: The total amount of wall time = 88.891960 Test 082 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4821,13 @@ Checking test 083 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 = 86.736219 + 0: The total amount of wall time = 88.584800 Test 083 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4877,13 @@ Checking test 084 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 = 86.330204 + 0: The total amount of wall time = 88.504438 Test 084 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4933,13 @@ Checking test 085 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 = 375.102929 + 0: The total amount of wall time = 377.874915 Test 085 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4989,13 @@ Checking test 086 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 = 271.849544 + 0: The total amount of wall time = 265.979803 Test 086 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5045,13 @@ Checking test 087 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 = 376.076936 + 0: The total amount of wall time = 374.411148 Test 087 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5101,13 @@ Checking test 088 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 = 261.680954 + 0: The total amount of wall time = 261.415897 Test 088 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5160,13 @@ Checking test 089 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 = 1310.415571 + 0: The total amount of wall time = 1317.485100 Test 089 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5219,13 @@ Checking test 090 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 = 699.923037 + 0: The total amount of wall time = 689.823982 Test 090 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5278,13 @@ Checking test 091 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 = 1312.460118 + 0: The total amount of wall time = 1303.957096 Test 091 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restartfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5337,13 @@ Checking test 092 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 = 694.840528 + 0: The total amount of wall time = 682.402036 Test 092 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5396,13 @@ Checking test 093 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 = 797.868408 + 0: The total amount of wall time = 820.589829 Test 093 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5455,13 @@ Checking test 094 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 = 456.416099 + 0: The total amount of wall time = 441.981540 Test 094 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5514,13 @@ Checking test 095 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 = 786.716243 + 0: The total amount of wall time = 809.816461 Test 095 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5573,13 @@ Checking test 096 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 = 446.217410 + 0: The total amount of wall time = 441.646627 Test 096 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5632,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1306.615833 + 0: The total amount of wall time = 1315.649066 Test 097 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_restart_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5691,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 720.890251 + 0: The total amount of wall time = 716.016695 Test 098 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5753,13 @@ Checking test 099 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 = 1342.795970 + 0: The total amount of wall time = 1382.696571 Test 099 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5815,13 @@ Checking test 100 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 = 1352.035957 + 0: The total amount of wall time = 1368.527549 Test 100 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5876,13 @@ Checking test 101 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 = 881.385353 + 0: The total amount of wall time = 891.093208 Test 101 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5935,13 @@ Checking test 102 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 = 779.555195 + 0: The total amount of wall time = 783.029630 Test 102 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5991,13 @@ Checking test 103 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 = 285.915942 + 0: The total amount of wall time = 285.421588 Test 103 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6047,73 @@ Checking test 104 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 = 284.565844 + 0: The total amount of wall time = 281.936341 Test 104 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_cfsr Checking test 105 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 = 95.410816 + 0: The total amount of wall time = 97.924781 Test 105 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_restart_cfsr Checking test 106 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 = 60.909505 + 0: The total amount of wall time = 63.390943 Test 106 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_control_gefs Checking test 107 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 = 88.722502 + 0: The total amount of wall time = 90.525353 Test 107 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_cfsr Checking test 108 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 = 91.873665 + 0: The total amount of wall time = 94.753543 Test 108 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_bulk_gefs Checking test 109 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.616042 + 0: The total amount of wall time = 90.559121 Test 109 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6122,13 @@ Checking test 110 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 = 357.635167 + 0: The total amount of wall time = 363.841625 Test 110 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6137,23 @@ Checking test 111 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 = 345.475405 + 0: The total amount of wall time = 349.344429 Test 111 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /scratch2/BMC/gsienkf/Philip.Pegion/stmp2/Philip.Pegion/FV3_RT/rt_59288/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_279140/datm_debug_cfsr Checking test 112 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.026575 + 0: The total amount of wall time = 269.316066 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 19:01:44 UTC 2021 -Elapsed time: 03h:05m:37s. Have a nice day! +Tue Mar 23 01:13:29 UTC 2021 +Elapsed time: 01h:26m:35s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 85fbe99614..390cfb3f75 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,23 @@ -Fri Mar 19 20:32:46 GMT 2021 +Mon Mar 22 23:31:27 GMT 2021 Start Regression test +Compile 001 elapsed time 3225 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1177 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2040 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2052 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2078 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 2601 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2476 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 32BIT=Y +Compile 008 elapsed time 2255 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2186 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2083 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2293 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 219 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 230 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 211 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,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 = 64.728782 +The total amount of wall time = 63.457498 Test 001 fv3_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_2threads +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +153,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 247.935928 +The total amount of wall time = 286.959426 Test 002 fv3_2threads PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +206,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.060533 +The total amount of wall time = 28.010051 Test 003 fv3_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +277,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.163985 +The total amount of wall time = 53.034675 Test 004 fv3_read_inc PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +328,13 @@ Checking test 005 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 = 188.134730 +The total amount of wall time = 155.728536 Test 005 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +379,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.163288 +The total amount of wall time = 53.058650 Test 006 fv3_wrtGauss_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +430,13 @@ Checking test 007 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 = 73.607947 +The total amount of wall time = 67.698088 Test 007 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +481,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.930898 +The total amount of wall time = 53.516661 Test 008 fv3_wrtGlatlon_netcdf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +532,13 @@ Checking test 009 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.238510 +The total amount of wall time = 52.530401 Test 009 fv3_wrtGauss_nemsio PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +583,13 @@ Checking test 010 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.933841 +The total amount of wall time = 140.918517 Test 010 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +654,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.037783 +The total amount of wall time = 58.535293 Test 011 fv3_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +725,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.965197 +The total amount of wall time = 43.192538 Test 012 fv3_ca PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +796,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.359845 +The total amount of wall time = 64.112856 Test 013 fv3_lndp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +867,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.393139 +The total amount of wall time = 52.773235 Test 014 fv3_iau PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +918,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.119680 +The total amount of wall time = 52.165470 Test 015 fv3_lheatstrg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +995,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 129.411586 +The total amount of wall time = 129.437864 Test 016 fv3_multigases PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1066,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.787940 +The total amount of wall time = 55.128539 Test 017 fv3_control_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1125,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 397.670535 +The total amount of wall time = 395.212291 Test 018 fv3_stretched PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1195,13 @@ Checking test 019 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 = 425.730764 +The total amount of wall time = 425.768103 Test 019 fv3_stretched_nest PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1209,25 @@ Checking test 020 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 = 865.261803 +The total amount of wall time = 862.438264 Test 020 fv3_regional_control PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_restart Checking test 021 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 = 480.835251 +The total amount of wall time = 482.687176 Test 021 fv3_regional_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1238,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 846.432121 +The total amount of wall time = 843.703210 Test 022 fv3_regional_quilt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,13 +1253,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 843.338808 +The total amount of wall time = 849.096346 Test 023 fv3_regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1253,13 +1267,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 845.687904 +The total amount of wall time = 846.773020 Test 024 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1318,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.442180 +The total amount of wall time = 60.602688 Test 025 fv3_gfdlmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1369,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.994258 +The total amount of wall time = 60.719972 Test 026 fv3_gfdlmprad_gwd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1420,13 @@ Checking test 027 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.299577 +The total amount of wall time = 60.836103 Test 027 fv3_gfdlmprad_noahmp PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1471,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 151.835768 +The total amount of wall time = 150.291266 Test 028 fv3_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1522,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.891762 +The total amount of wall time = 66.779379 Test 029 fv3_satmedmf PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1573,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.924674 +The total amount of wall time = 65.432115 Test 030 fv3_satmedmfq PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1624,13 @@ Checking test 031 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.801592 +The total amount of wall time = 53.211388 Test 031 fv3_gfdlmp_32bit PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1679,13 @@ Checking test 032 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 = 96.194080 +The total amount of wall time = 95.386979 Test 032 fv3_gfdlmprad_32bit_post PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1736,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 348.882981 +The total amount of wall time = 348.795415 Test 033 fv3_cpt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1831,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.816257 +The total amount of wall time = 244.664044 Test 034 fv3_gsd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1902,13 @@ Checking test 035 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.204287 +The total amount of wall time = 113.992952 Test 035 fv3_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1973,13 @@ Checking test 036 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 = 109.542404 +The total amount of wall time = 107.419023 Test 036 fv3_thompson_no_aero PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2 Checking test 037 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2044,13 @@ Checking test 037 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 118.426819 +The total amount of wall time = 119.860968 Test 037 fv3_gfs_v15p2 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16 Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2127,13 @@ Checking test 038 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 145.923377 +The total amount of wall time = 145.620340 Test 038 fv3_gfs_v16 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_restart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_restart Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2180,13 @@ Checking test 039 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 = 74.629030 +The total amount of wall time = 75.006198 Test 039 fv3_gfs_v16_restart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_stochy Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,13 +2251,13 @@ Checking test 040 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 = 65.585332 +The total amount of wall time = 66.798086 Test 040 fv3_gfs_v16_stochy PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2308,13 +2322,13 @@ Checking test 041 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 = 202.330587 +The total amount of wall time = 192.208742 Test 041 fv3_gfs_v16_RRTMGP PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_c192L127 Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2373,13 +2387,13 @@ Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 803.832167 +The total amount of wall time = 804.367251 Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_2thrd +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_2thrd Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2444,13 +2458,13 @@ Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 827.003276 +The total amount of wall time = 806.425917 Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmg Checking test 044 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2495,13 +2509,13 @@ Checking test 044 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.444195 +The total amount of wall time = 161.862794 Test 044 fv3_gfsv16_csawmg PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_csawmgt Checking test 045 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,13 +2560,13 @@ Checking test 045 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.087092 +The total amount of wall time = 160.459083 Test 045 fv3_gfsv16_csawmgt PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gocart_clm Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2597,13 +2611,13 @@ Checking test 046 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 70.082356 +The total amount of wall time = 67.712083 Test 046 fv3_gocart_clm PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_flake Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2668,13 +2682,13 @@ Checking test 047 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.487427 +The total amount of wall time = 122.945789 Test 047 fv3_gfs_v16_flake PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2739,13 +2753,13 @@ Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.169109 +The total amount of wall time = 191.517763 Test 048 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2760,13 +2774,13 @@ Checking test 049 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 = 356.676973 +The total amount of wall time = 357.299887 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1 Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2825,13 +2839,13 @@ Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 229.423421 +The total amount of wall time = 229.338431 Test 050 fv3_gfsv16_ugwpv1 PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_warmstart Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2890,13 +2904,13 @@ Checking test 051 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 = 229.322248 +The total amount of wall time = 228.134745 Test 051 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2961,13 +2975,13 @@ Checking test 052 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.968164 +The total amount of wall time = 122.757670 Test 052 fv3_gfs_v16_ras PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_debug Checking test 053 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3032,13 +3046,13 @@ Checking test 053 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 273.697286 +The total amount of wall time = 273.041754 Test 053 fv3_gfs_v15p2_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_debug Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3103,13 +3117,13 @@ Checking test 054 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 = 208.127790 +The total amount of wall time = 207.147070 Test 054 fv3_gfs_v16_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v15p2_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v15p2_RRTMGP_debug Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3174,13 +3188,13 @@ Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 440.089160 +The total amount of wall time = 440.676073 Test 055 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_RRTMGP_debug Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3245,13 +3259,13 @@ Checking test 056 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 = 451.065134 +The total amount of wall time = 454.031668 Test 056 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3259,13 +3273,13 @@ Checking test 057 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 = 458.313491 +The total amount of wall time = 455.214080 Test 057 fv3_regional_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3292,13 +3306,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 158.968260 +The total amount of wall time = 160.145813 Test 058 fv3_control_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_stretched_nest_debug Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3315,13 +3329,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 535.750789 +The total amount of wall time = 535.120230 Test 059 fv3_stretched_nest_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3386,13 +3400,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 239.269686 +The total amount of wall time = 240.946924 Test 060 fv3_gsd_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3457,13 +3471,13 @@ Checking test 061 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 = 271.115849 +The total amount of wall time = 269.074205 Test 061 fv3_gsd_diag3d_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3528,13 +3542,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 417.427067 +The total amount of wall time = 417.046468 Test 062 fv3_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_thompson_no_aero_debug Checking test 063 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3599,13 +3613,13 @@ Checking test 063 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 = 401.368140 +The total amount of wall time = 403.581965 Test 063 fv3_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3670,13 +3684,13 @@ Checking test 064 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 = 231.962234 +The total amount of wall time = 230.865834 Test 064 fv3_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3755,13 @@ Checking test 065 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 = 247.594030 +The total amount of wall time = 248.012531 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3762,13 +3776,13 @@ Checking test 066 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 = 464.549115 +The total amount of wall time = 464.074253 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3827,13 +3841,13 @@ Checking test 067 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 = 709.309574 +The total amount of wall time = 709.823754 Test 067 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Dusan.Jovic/RT_RUNDIRS/Dusan.Jovic/FV3_RT/rt_101763/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_67925/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3898,11 +3912,11 @@ Checking test 068 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 = 395.013982 +The total amount of wall time = 395.042769 Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 23:14:51 GMT 2021 -Elapsed time: 02h:42m:05s. Have a nice day! +Tue Mar 23 02:45:23 GMT 2021 +Elapsed time: 03h:13m:56s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index bd8bb38e30..87f9342763 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,29 @@ -Fri Mar 19 12:50:33 CDT 2021 +Tue Mar 23 07:53:29 CDT 2021 Start Regression test +Compile 001 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 573 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 534 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 490 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 564 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 667 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 736 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 32BIT=Y +Compile 009 elapsed time 663 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 540 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 551 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 145 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 143 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 134 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 740 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 564 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 152 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 380 seconds. APP=DATM_NEMS +Compile 020 elapsed time 128 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +88,13 @@ Checking test 001 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.822248 + 0: The total amount of wall time = 46.101687 Test 001 fv3_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_decomp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 51.521173 + 0: The total amount of wall time = 50.718015 Test 002 fv3_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_2threads +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +230,13 @@ Checking test 003 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.713742 + 0: The total amount of wall time = 44.711798 Test 003 fv3_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 28.132500 + 0: The total amount of wall time = 23.482743 Test 004 fv3_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_read_inc -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_read_inc +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +354,13 @@ Checking test 005 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 = 44.505180 + 0: The total amount of wall time = 49.553305 Test 005 fv3_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +405,13 @@ Checking test 006 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 = 166.407823 + 0: The total amount of wall time = 162.108596 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +456,13 @@ Checking test 007 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 = 40.838167 + 0: The total amount of wall time = 47.991036 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -453,7 +473,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......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 @@ -487,13 +507,13 @@ Checking test 008 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 = 62.405697 + 0: The total amount of wall time = 58.224379 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +558,13 @@ Checking test 009 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.179670 + 0: The total amount of wall time = 45.794276 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +609,13 @@ Checking test 010 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.659848 + 0: The total amount of wall time = 39.920793 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +660,13 @@ Checking test 011 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 = 109.415050 + 0: The total amount of wall time = 107.928106 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stochy -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stochy +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.225112 + 0: The total amount of wall time = 50.234873 Test 012 fv3_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_ca -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_ca +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +802,13 @@ Checking test 013 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.103813 + 0: The total amount of wall time = 35.593690 Test 013 fv3_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lndp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lndp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 56.130941 + 0: The total amount of wall time = 58.322300 Test 014 fv3_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_iau -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_iau +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 50.465295 + 0: The total amount of wall time = 43.056711 Test 015 fv3_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_lheatstrg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_lheatstrg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 46.489782 + 0: The total amount of wall time = 47.053957 Test 016 fv3_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1047,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 678.419956 + 0: The total amount of wall time = 677.826819 Test 017 fv3_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1099,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 826.633003 + 0: The total amount of wall time = 819.282807 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1151,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 706.467872 + 0: The total amount of wall time = 696.965587 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_multigases_repro -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_multigases_repro +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1228,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 107.230897 + 0: The total amount of wall time = 105.512769 Test 020 fv3_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_32bit -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_32bit +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1299,13 @@ Checking test 021 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 = 47.582102 + 0: The total amount of wall time = 38.127887 Test 021 fv3_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1358,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.262541 + 0: The total amount of wall time = 217.119629 Test 022 fv3_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1428,13 @@ Checking test 023 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.162287 + 0: The total amount of wall time = 243.635806 Test 023 fv3_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1442,25 @@ Checking test 024 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 = 536.273022 + 0: The total amount of wall time = 534.231915 Test 024 fv3_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_restart -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_restart Checking test 025 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 = 301.035378 + 0: The total amount of wall time = 297.626999 Test 025 fv3_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1471,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 576.311724 + 0: The total amount of wall time = 579.524629 Test 026 fv3_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,27 +1486,27 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.253857 + 0: The total amount of wall time = 579.955266 Test 027 fv3_regional_quilt_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_quilt_netcdf_parallel Checking test 028 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 .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 577.972230 + 0: The total amount of wall time = 581.995280 Test 028 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1551,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 49.088020 + 0: The total amount of wall time = 50.451199 Test 029 fv3_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1602,13 @@ Checking test 030 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.180437 + 0: The total amount of wall time = 52.016158 Test 030 fv3_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1653,13 @@ Checking test 031 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.319969 + 0: The total amount of wall time = 52.811692 Test 031 fv3_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_csawmg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_csawmg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1704,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.398812 + 0: The total amount of wall time = 111.056297 Test 032 fv3_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1755,13 @@ Checking test 033 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.796980 + 0: The total amount of wall time = 51.489409 Test 033 fv3_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_satmedmfq -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_satmedmfq +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1806,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.514721 + 0: The total amount of wall time = 47.330009 Test 034 fv3_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1857,13 @@ Checking test 035 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 = 49.923095 + 0: The total amount of wall time = 46.764119 Test 035 fv3_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1912,13 @@ Checking test 036 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 = 72.847140 + 0: The total amount of wall time = 72.443134 Test 036 fv3_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_cpt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_cpt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1969,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 258.808684 + 0: The total amount of wall time = 261.739828 Test 037 fv3_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2064,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.978842 + 0: The total amount of wall time = 188.164520 Test 038 fv3_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rap -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rap +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2135,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.758309 + 0: The total amount of wall time = 98.581565 Test 039 fv3_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_hrrr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_hrrr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2206,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 108.362225 + 0: The total amount of wall time = 109.029001 Test 040 fv3_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2277,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.981672 + 0: The total amount of wall time = 93.946234 Test 041 fv3_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2348,13 @@ Checking test 042 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.632598 + 0: The total amount of wall time = 92.037144 Test 042 fv3_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2419,13 @@ Checking test 043 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 = 111.207011 + 0: The total amount of wall time = 112.322392 Test 043 fv3_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2490,13 @@ Checking test 044 fv3_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 100.258678 + 0: The total amount of wall time = 102.189974 Test 044 fv3_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2573,13 @@ Checking test 045 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 = 117.674490 + 0: The total amount of wall time = 111.578814 Test 045 fv3_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2626,13 @@ Checking test 046 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 = 61.382059 + 0: The total amount of wall time = 62.286551 Test 046 fv3_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2697,13 @@ Checking test 047 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 = 56.009358 + 0: The total amount of wall time = 52.595486 Test 047 fv3_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2768,13 @@ Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 165.693850 + 0: The total amount of wall time = 163.887440 Test 048 fv3_gfs_v15p2_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2839,13 @@ Checking test 049 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 = 172.052786 + 0: The total amount of wall time = 165.993988 Test 049 fv3_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_c192L127 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2904,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 629.327169 + 0: The total amount of wall time = 625.562035 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_2thrd +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_2thrd Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2975,13 @@ Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 177.248846 + 0: The total amount of wall time = 176.015856 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmg Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3026,13 @@ Checking test 052 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 = 128.621910 + 0: The total amount of wall time = 130.545428 Test 052 fv3_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_csawmgt Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3077,13 @@ Checking test 053 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 = 126.372323 + 0: The total amount of wall time = 128.037325 Test 053 fv3_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gocart_clm -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gocart_clm +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gocart_clm Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3128,13 @@ Checking test 054 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 = 61.167507 + 0: The total amount of wall time = 60.929529 Test 054 fv3_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_flake Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3199,13 @@ Checking test 055 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 = 113.282933 + 0: The total amount of wall time = 106.638832 Test 055 fv3_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3270,13 @@ Checking test 056 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.985419 + 0: The total amount of wall time = 151.631406 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3291,13 @@ Checking test 057 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 = 292.902368 + 0: The total amount of wall time = 295.112559 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3356,13 @@ Checking test 058 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 = 181.379209 + 0: The total amount of wall time = 167.645191 Test 058 fv3_gfsv16_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_warmstart Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3421,13 @@ Checking test 059 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 = 177.143703 + 0: The total amount of wall time = 175.648535 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3492,13 @@ Checking test 060 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 = 103.104727 + 0: The total amount of wall time = 93.123008 Test 060 fv3_gfs_v16_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_debug Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3563,13 @@ Checking test 061 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 = 242.582630 + 0: The total amount of wall time = 243.950865 Test 061 fv3_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_debug Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3634,13 @@ Checking test 062 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 = 185.523880 + 0: The total amount of wall time = 187.453483 Test 062 fv3_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v15p2_RRTMGP_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v15p2_RRTMGP_debug Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3705,13 @@ Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.331039 + 0: The total amount of wall time = 374.261105 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_RRTMGP_debug Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3776,13 @@ Checking test 064 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 = 384.243546 + 0: The total amount of wall time = 382.555526 Test 064 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_regional_control_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_regional_control_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_regional_control_debug Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3790,13 @@ Checking test 065 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.364244 + 0: The total amount of wall time = 373.369585 Test 065 fv3_regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_control_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_control_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_control_debug Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3823,13 @@ Checking test 066 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 155.221480 + 0: The total amount of wall time = 150.261458 Test 066 fv3_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_stretched_nest_debug Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3846,13 @@ Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 375.623118 + 0: The total amount of wall time = 372.625045 Test 067 fv3_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3917,13 @@ Checking test 068 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 = 215.241294 + 0: The total amount of wall time = 216.904775 Test 068 fv3_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gsd_diag3d_debug Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3988,13 @@ Checking test 069 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 = 295.256237 + 0: The total amount of wall time = 302.162771 Test 069 fv3_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_debug Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4059,13 @@ Checking test 070 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 = 353.634309 + 0: The total amount of wall time = 359.858399 Test 070 fv3_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_thompson_no_aero_debug Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4130,13 @@ Checking test 071 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 = 333.756109 + 0: The total amount of wall time = 345.693456 Test 071 fv3_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_rrfs_v1beta_debug Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4201,13 @@ Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.763849 + 0: The total amount of wall time = 217.369735 Test 072 fv3_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4272,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 263.676892 + 0: The total amount of wall time = 225.720337 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4293,13 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 410.622427 + 0: The total amount of wall time = 424.190416 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfsv16_ugwpv1_debug Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4358,13 @@ Checking test 075 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 = 577.490209 + 0: The total amount of wall time = 583.478429 Test 075 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/fv3_gfs_v16_ras_debug Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4429,13 @@ Checking test 076 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 = 338.669822 + 0: The total amount of wall time = 344.240212 Test 076 fv3_gfs_v16_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4485,13 @@ Checking test 077 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 = 119.325516 + 0: The total amount of wall time = 101.860852 Test 077 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4541,13 @@ Checking test 078 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 = 68.154787 + 0: The total amount of wall time = 65.476460 Test 078 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4597,13 @@ Checking test 079 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 = 117.598597 + 0: The total amount of wall time = 108.466565 Test 079 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4653,13 @@ Checking test 080 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 = 78.913061 + 0: The total amount of wall time = 74.103551 Test 080 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_2threads +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_2threads Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4709,13 @@ Checking test 081 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 = 133.379763 + 0: The total amount of wall time = 135.602745 Test 081 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_decomp +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_decomp Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4765,13 @@ Checking test 082 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.163066 + 0: The total amount of wall time = 102.686077 Test 082 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_satmedmf -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_satmedmf +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_satmedmf Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4821,13 @@ Checking test 083 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 = 108.150363 + 0: The total amount of wall time = 106.577948 Test 083 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_ca -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_ca +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_ca Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4877,13 @@ Checking test 084 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 = 111.862948 + 0: The total amount of wall time = 106.772190 Test 084 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c192 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4933,13 @@ Checking test 085 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 = 397.017496 + 0: The total amount of wall time = 394.095414 Test 085 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c192 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4989,13 @@ Checking test 086 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.736278 + 0: The total amount of wall time = 269.148793 Test 086 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c192 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5045,13 @@ Checking test 087 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 = 400.553613 + 0: The total amount of wall time = 383.675006 Test 087 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c192 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c192 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5101,13 @@ Checking test 088 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 = 278.647891 + 0: The total amount of wall time = 269.767705 Test 088 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_c384 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5160,13 @@ Checking test 089 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 = 1336.147422 + 0: The total amount of wall time = 1328.094632 Test 089 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_c384 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5219,13 @@ Checking test 090 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 = 713.934599 + 0: The total amount of wall time = 693.331967 Test 090 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_controlfrac_c384 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5278,13 @@ Checking test 091 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.099769 + 0: The total amount of wall time = 1316.562844 Test 091 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restartfrac_c384 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restartfrac_c384 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5337,13 @@ Checking test 092 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 = 706.690926 + 0: The total amount of wall time = 677.544485 Test 092 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5396,13 @@ Checking test 093 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 = 824.173979 + 0: The total amount of wall time = 834.684270 Test 093 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmark +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmark Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5455,13 @@ Checking test 094 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 = 457.215343 + 0: The total amount of wall time = 442.270687 Test 094 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5514,13 @@ Checking test 095 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 = 829.110986 + 0: The total amount of wall time = 826.817121 Test 095 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5573,13 @@ Checking test 096 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 = 453.932339 + 0: The total amount of wall time = 436.932599 Test 096 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_v16 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5632,13 @@ Checking test 097 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1344.124539 + 0: The total amount of wall time = 1332.676304 Test 097 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_restart_bmarkfrac_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_restart_bmarkfrac_v16 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5691,13 @@ Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 740.990276 + 0: The total amount of wall time = 726.331517 Test 098 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmark_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmark_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmark_wave Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5753,13 @@ Checking test 099 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 = 1432.098204 + 0: The total amount of wall time = 1441.141040 Test 099 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5815,13 @@ Checking test 100 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 = 1429.371386 + 0: The total amount of wall time = 1420.068920 Test 100 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_bmarkfrac_wave_v16 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5876,13 @@ Checking test 101 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 = 951.222093 + 0: The total amount of wall time = 945.773922 Test 101 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_control_wave -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_control_wave +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_control_wave Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5935,13 @@ Checking test 102 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 = 815.263136 + 0: The total amount of wall time = 821.600514 Test 102 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debug -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debug +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debug Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5991,13 @@ Checking test 103 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 = 341.676165 + 0: The total amount of wall time = 333.488070 Test 103 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/cpld_debugfrac -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/cpld_debugfrac +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/cpld_debugfrac Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6047,73 @@ Checking test 104 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 = 327.395689 + 0: The total amount of wall time = 1386.257202 Test 104 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_cfsr Checking test 105 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 = 104.235935 + 0: The total amount of wall time = 101.019579 Test 105 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_restart_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_restart_cfsr Checking test 106 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 = 71.592949 + 0: The total amount of wall time = 71.648752 Test 106 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_control_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_control_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_control_gefs Checking test 107 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 = 97.500170 + 0: The total amount of wall time = 94.086336 Test 107 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_cfsr Checking test 108 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 = 105.271493 + 0: The total amount of wall time = 97.609697 Test 108 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_bulk_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_bulk_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_bulk_gefs Checking test 109 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 = 92.326933 + 0: The total amount of wall time = 96.111352 Test 109 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_cfsr Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6122,13 @@ Checking test 110 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 = 387.359123 + 0: The total amount of wall time = 381.993465 Test 110 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_mx025_gefs -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_mx025_gefs +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_mx025_gefs Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6137,23 @@ Checking test 111 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 = 409.867554 + 0: The total amount of wall time = 382.126847 Test 111 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/INTEL/datm_debug_cfsr -working dir = /work/noaa/gsienkf/ppegion/stmp/ppegion/FV3_RT/rt_229271/datm_debug_cfsr +working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_369147/datm_debug_cfsr Checking test 112 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 = 290.904811 + 0: The total amount of wall time = 287.666163 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 19 14:13:34 CDT 2021 -Elapsed time: 01h:23m:02s. Have a nice day! +Tue Mar 23 09:18:07 CDT 2021 +Elapsed time: 01h:24m:39s. Have a nice day! diff --git a/tests/RegressionTests_stampede.intel.log b/tests/RegressionTests_stampede.intel.log new file mode 100644 index 0000000000..00e5a787c3 --- /dev/null +++ b/tests/RegressionTests_stampede.intel.log @@ -0,0 +1,252 @@ +Sun Mar 21 22:01:01 CDT 2021 +Start Regression test + +Compile 001 elapsed time 569 seconds. SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmark_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmark_wave +Checking test 001 cpld_bmark_wave 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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 + +The total amount of wall time = 1513.274982 + +Test 001 cpld_bmark_wave PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave +Checking test 002 cpld_bmarkfrac_wave 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 20130402.000000.out_grd.gwes_30m .........OK + Comparing 20130402.000000.out_pnt.points .........OK + Comparing 20130402.000000.restart.gwes_30m .........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 + +The total amount of wall time = 1511.941093 + +Test 002 cpld_bmarkfrac_wave PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_bmarkfrac_wave_v16 +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_bmarkfrac_wave_v16 +Checking test 003 cpld_bmarkfrac_wave_v16 results .... + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........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 + +The total amount of wall time = 1019.892656 + +Test 003 cpld_bmarkfrac_wave_v16 PASS + + +baseline dir = /work/07736/minsukji/stampede2/ufs-weather-model/RT/NEMSfv3gfs/develop-20210318/cpld_control_wave +working dir = /scratch/07736/minsukji/ufs-weather-model/run/minsukji/FV3_RT/rt_216780/cpld_control_wave +Checking test 004 cpld_control_wave 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/iced.2016-10-04-00000.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK + Comparing 20161004.000000.out_grd.glo_1deg .........OK + Comparing 20161004.000000.out_pnt.points .........OK + Comparing 20161004.000000.restart.glo_1deg .........OK + +The total amount of wall time = 753.637820 + +Test 004 cpld_control_wave PASS + + +REGRESSION TEST WAS SUCCESSFUL +Mon Mar 22 02:13:36 CDT 2021 +Elapsed time: 04h:12m:35s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index a29b81b18f..73259c41ed 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,10 +1,24 @@ -Mon Mar 15 15:10:33 UTC 2021 +Tue Mar 23 19:01:32 UTC 2021 Start Regression test - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +Compile 001 elapsed time 900 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 902 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 929 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 913 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 979 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1023 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 32BIT=Y +Compile 008 elapsed time 960 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 944 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 936 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1018 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 563 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 546 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 534 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-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control +Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -68,14 +82,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.580387 +The total amount of wall time = 54.181357 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_decomp +Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -139,14 +153,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.681293 +The total amount of wall time = 55.766983 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_2threads +Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -210,14 +224,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.362766 +The total amount of wall time = 45.593699 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_restart +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +277,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 24.842162 +The total amount of wall time = 23.633691 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_read_inc +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_read_inc +Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -334,14 +348,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.148666 +The total amount of wall time = 51.290996 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_esmf +Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -385,14 +399,14 @@ Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.613144 +The total amount of wall time = 118.662507 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf +Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -436,14 +450,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.133268 +The total amount of wall time = 47.672881 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_netcdf_parallel +Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -487,14 +501,14 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 156.252763 +The total amount of wall time = 53.153928 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGlatlon_netcdf +Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -538,14 +552,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.755501 +The total amount of wall time = 48.378979 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio +Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -589,14 +603,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.126902 +The total amount of wall time = 48.341767 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_wrtGauss_nemsio_c192 +Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -640,14 +654,14 @@ Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.745275 +The total amount of wall time = 121.534151 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stochy +Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -711,14 +725,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.852801 +The total amount of wall time = 54.164695 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ca_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_ca +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_ca +Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -782,14 +796,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.296214 +The total amount of wall time = 39.725006 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lndp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lndp +Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -853,14 +867,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 69.905051 +The total amount of wall time = 56.313339 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_iau +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_iau +Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -924,14 +938,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 49.435697 +The total amount of wall time = 49.355312 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_lheatstrg +Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,14 +989,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.358493 +The total amount of wall time = 47.862734 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_multigases_prod -Checking test 017 fv3_ccpp_multigases results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_multigases_repro +Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1052,14 +1066,14 @@ Checking test 017 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.482825 +The total amount of wall time = 98.393273 -Test 017 fv3_ccpp_multigases PASS +Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_32bit_prod -Checking test 018 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_32bit +Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1123,14 +1137,14 @@ Checking test 018 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.052814 +The total amount of wall time = 50.903327 -Test 018 fv3_ccpp_control_32bit PASS +Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_prod -Checking test 019 fv3_ccpp_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched +Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1182,14 +1196,14 @@ Checking test 019 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 355.139031 +The total amount of wall time = 323.540037 -Test 019 fv3_ccpp_stretched PASS +Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_prod -Checking test 020 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest +Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1252,40 +1266,40 @@ Checking test 020 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 493.564882 +The total amount of wall time = 358.312525 -Test 020 fv3_ccpp_stretched_nest PASS +Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_prod -Checking test 021 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control +Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 708.691047 +The total amount of wall time = 694.918940 -Test 021 fv3_ccpp_regional_control PASS +Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_restart_prod -Checking test 022 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/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 = 408.314958 +The total amount of wall time = 410.922728 -Test 022 fv3_ccpp_regional_restart PASS +Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_prod -Checking test 023 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt +Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1295,14 +1309,14 @@ Checking test 023 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 702.871821 +The total amount of wall time = 700.289611 -Test 023 fv3_ccpp_regional_quilt PASS +Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_hafs_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_hafs_prod -Checking test 024 fv3_ccpp_regional_quilt_hafs results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_hafs +Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1310,28 +1324,28 @@ Checking test 024 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 702.577217 +The total amount of wall time = 698.328839 -Test 024 fv3_ccpp_regional_quilt_hafs PASS +Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 025 fv3_ccpp_regional_quilt_netcdf_parallel results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_quilt_netcdf_parallel +Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 702.357430 +The total amount of wall time = 700.867561 -Test 025 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_prod -Checking test 026 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp +Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1375,14 +1389,14 @@ Checking test 026 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 122.097066 +The total amount of wall time = 55.665164 -Test 026 fv3_ccpp_gfdlmp PASS +Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_gwd +Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1426,14 +1440,14 @@ Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.792328 +The total amount of wall time = 55.944638 -Test 027 fv3_ccpp_gfdlmprad_gwd PASS +Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_noahmp +Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1477,14 +1491,14 @@ Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 102.487017 +The total amount of wall time = 68.670490 -Test 028 fv3_ccpp_gfdlmprad_noahmp PASS +Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_csawmg_prod -Checking test 029 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_csawmg +Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1528,14 +1542,14 @@ Checking test 029 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 161.005073 +The total amount of wall time = 128.721390 -Test 029 fv3_ccpp_csawmg PASS +Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmf_prod -Checking test 030 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmf +Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1579,14 +1593,14 @@ Checking test 030 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 58.566167 +The total amount of wall time = 59.137603 -Test 030 fv3_ccpp_satmedmf PASS +Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_satmedmfq_prod -Checking test 031 fv3_ccpp_satmedmfq results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_satmedmfq +Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1630,14 +1644,14 @@ Checking test 031 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.543109 +The total amount of wall time = 58.300887 -Test 031 fv3_ccpp_satmedmfq PASS +Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmp_32bit_prod -Checking test 032 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmp_32bit +Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1681,14 +1695,14 @@ Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 60.637933 +The total amount of wall time = 48.189951 -Test 032 fv3_ccpp_gfdlmp_32bit PASS +Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfdlmprad_32bit_post +Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1736,14 +1750,14 @@ Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 114.488328 +The total amount of wall time = 100.233980 -Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_cpt_prod -Checking test 034 fv3_ccpp_cpt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_cpt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_cpt +Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1793,14 +1807,14 @@ Checking test 034 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 289.126417 +The total amount of wall time = 285.318168 -Test 034 fv3_ccpp_cpt PASS +Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_prod -Checking test 035 fv3_ccpp_gsd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd +Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1888,14 +1902,14 @@ Checking test 035 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 199.176066 +The total amount of wall time = 198.948099 -Test 035 fv3_ccpp_gsd PASS +Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rap_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rap_prod -Checking test 036 fv3_ccpp_rap results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rap +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rap +Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1959,14 +1973,14 @@ Checking test 036 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.102948 +The total amount of wall time = 103.121426 -Test 036 fv3_ccpp_rap PASS +Test 036 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_hrrr_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_hrrr_prod -Checking test 037 fv3_ccpp_hrrr results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_hrrr +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_hrrr +Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2030,14 +2044,14 @@ Checking test 037 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 121.642248 +The total amount of wall time = 110.194777 -Test 037 fv3_ccpp_hrrr PASS +Test 037 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_prod -Checking test 038 fv3_ccpp_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson +Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2101,14 +2115,14 @@ Checking test 038 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.285796 +The total amount of wall time = 97.531919 -Test 038 fv3_ccpp_thompson PASS +Test 038 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_prod -Checking test 039 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero +Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2172,14 +2186,14 @@ Checking test 039 fv3_ccpp_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.686278 +The total amount of wall time = 92.294440 -Test 039 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_prod -Checking test 040 fv3_ccpp_rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta +Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2243,85 +2257,16 @@ Checking test 040 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.501950 - -Test 040 fv3_ccpp_rrfs_v1beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_prod -Checking test 041 fv3_ccpp_gfs_v15p2 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - 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 dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.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/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/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 +The total amount of wall time = 109.548864 -The total amount of wall time = 109.180521 +Test 040 fv3_rrfs_v1beta PASS -Test 041 fv3_ccpp_gfs_v15p2 PASS +Test 041 fv3_gfs_v15p2 FAIL -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_prod -Checking test 042 fv3_ccpp_gfs_v16 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16 +Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2397,14 +2342,14 @@ Checking test 042 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 131.858752 +The total amount of wall time = 124.119466 -Test 042 fv3_ccpp_gfs_v16 PASS +Test 042 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_restart_prod -Checking test 043 fv3_ccpp_gfs_v16_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_restart +Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2450,14 +2395,14 @@ Checking test 043 fv3_ccpp_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.244794 +The total amount of wall time = 66.460357 -Test 043 fv3_ccpp_gfs_v16_restart PASS +Test 043 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_stochy_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_stochy_prod -Checking test 044 fv3_ccpp_gfs_v16_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_stochy +Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2521,85 +2466,16 @@ Checking test 044 fv3_ccpp_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.121171 +The total amount of wall time = 60.644591 -Test 044 fv3_ccpp_gfs_v16_stochy PASS +Test 044 fv3_gfs_v16_stochy PASS +Test 045 fv3_gfs_v15p2_RRTMGP FAIL -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 045 fv3_ccpp_gfs_v15p2_RRTMGP results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - 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 dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.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/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/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 -The total amount of wall time = 176.063395 - -Test 045 fv3_ccpp_gfs_v15p2_RRTMGP PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP +Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2663,14 +2539,14 @@ Checking test 046 fv3_ccpp_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.542941 +The total amount of wall time = 170.291390 -Test 046 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_c192L127 +Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2728,14 +2604,14 @@ Checking test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 718.556767 +The total amount of wall time = 714.283719 -Test 047 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_2thrd +Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2799,14 +2675,14 @@ Checking test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 172.144048 +The total amount of wall time = 161.452458 -Test 048 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmg_prod -Checking test 049 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmg +Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2850,14 +2726,14 @@ Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 145.900090 +The total amount of wall time = 139.130456 -Test 049 fv3_ccpp_gfsv16_csawmg PASS +Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_csawmgt +Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2901,14 +2777,14 @@ Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.009408 +The total amount of wall time = 136.270951 -Test 050 fv3_ccpp_gfsv16_csawmgt PASS +Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gocart_clm_prod -Checking test 051 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gocart_clm +Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2952,14 +2828,14 @@ Checking test 051 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 93.182478 +The total amount of wall time = 77.083874 -Test 051 fv3_ccpp_gocart_clm PASS +Test 051 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_flake_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_flake_prod -Checking test 052 fv3_ccpp_gfs_v16_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_flake +Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3023,14 +2899,14 @@ Checking test 052 fv3_ccpp_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 117.063447 +The total amount of wall time = 105.976975 -Test 052 fv3_ccpp_gfs_v16_flake PASS +Test 052 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 053 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson +Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3094,14 +2970,14 @@ Checking test 053 fv3_ccpp_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 = 160.487371 +The total amount of wall time = 162.377383 -Test 053 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3115,14 +2991,14 @@ Checking test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 301.412646 +The total amount of wall time = 351.963836 -Test 054 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1 +Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3180,14 +3056,14 @@ Checking test 055 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.811337 +The total amount of wall time = 194.130522 -Test 055 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_warmstart +Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3245,14 +3121,85 @@ Checking test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.702998 +The total amount of wall time = 193.636061 -Test 056 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras +Checking test 057 fv3_gfs_v16_ras results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + 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 dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.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 + +The total amount of wall time = 107.075383 + +Test 057 fv3_gfs_v16_ras PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_debug +Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3316,14 +3263,14 @@ Checking test 057 fv3_ccpp_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 211.346801 +The total amount of wall time = 207.075769 -Test 057 fv3_ccpp_gfs_v15p2_debug PASS +Test 058 fv3_gfs_v15p2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_debug_prod -Checking test 058 fv3_ccpp_gfs_v16_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_debug +Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3387,14 +3334,14 @@ Checking test 058 fv3_ccpp_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.230739 +The total amount of wall time = 161.262855 -Test 058 fv3_ccpp_gfs_v16_debug PASS +Test 059 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v15p2_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v15p2_RRTMGP_debug +Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3458,14 +3405,14 @@ Checking test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 342.379244 +The total amount of wall time = 333.313594 -Test 059 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 060 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_RRTMGP_debug +Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3529,28 +3476,28 @@ Checking test 060 fv3_ccpp_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 = 350.378805 +The total amount of wall time = 340.652034 -Test 060 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_regional_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_regional_control_debug_prod -Checking test 061 fv3_ccpp_regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_regional_control_debug +Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 343.168795 +The total amount of wall time = 341.091158 -Test 061 fv3_ccpp_regional_control_debug PASS +Test 062 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_control_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_control_debug_prod -Checking test 062 fv3_ccpp_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_control_debug +Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3576,14 +3523,14 @@ Checking test 062 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 129.611232 +The total amount of wall time = 124.095935 -Test 062 fv3_ccpp_control_debug PASS +Test 063 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_stretched_nest_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_stretched_nest_debug_prod -Checking test 063 fv3_ccpp_stretched_nest_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_stretched_nest_debug +Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3599,14 +3546,14 @@ Checking test 063 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 410.472189 +The total amount of wall time = 407.127074 -Test 063 fv3_ccpp_stretched_nest_debug PASS +Test 064 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_debug_prod -Checking test 064 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_debug +Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3617,14 @@ Checking test 064 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.373577 +The total amount of wall time = 190.071342 -Test 064 fv3_ccpp_gsd_debug PASS +Test 065 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gsd_diag3d_debug +Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3688,14 @@ Checking test 065 fv3_ccpp_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 230.638613 +The total amount of wall time = 218.845830 -Test 065 fv3_ccpp_gsd_diag3d_debug PASS +Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_debug_prod -Checking test 066 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_debug +Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3812,14 +3759,14 @@ Checking test 066 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 322.695953 +The total amount of wall time = 320.590012 -Test 066 fv3_ccpp_thompson_debug PASS +Test 067 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 067 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_thompson_no_aero_debug +Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3883,14 +3830,14 @@ Checking test 067 fv3_ccpp_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 = 310.005248 +The total amount of wall time = 307.651853 -Test 067 fv3_ccpp_thompson_no_aero_debug PASS +Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_rrfs_v1beta_debug +Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3954,14 +3901,14 @@ Checking test 068 fv3_ccpp_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.089158 +The total amount of wall time = 187.461681 -Test 068 fv3_ccpp_rrfs_v1beta_debug PASS +Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4025,14 +3972,14 @@ Checking test 069 fv3_ccpp_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 = 185.737524 +The total amount of wall time = 189.957662 -Test 069 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4046,14 +3993,14 @@ Checking test 070 fv3_ccpp_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 = 354.356825 +The total amount of wall time = 348.270535 -Test 070 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10849/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfsv16_ugwpv1_debug +Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4111,11 +4058,87 @@ Checking test 071 fv3_ccpp_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 538.833850 +The total amount of wall time = 539.522156 + +Test 072 fv3_gfsv16_ugwpv1_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210318/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_41244/fv3_gfs_v16_ras_debug +Checking test 073 fv3_gfs_v16_ras_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.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 + +The total amount of wall time = 300.749507 -Test 071 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 073 fv3_gfs_v16_ras_debug PASS +FAILED TESTS: +Test fv3_gfs_v15p2 041 failed failed +Test fv3_gfs_v15p2 041 failed in run_test failed +Test fv3_gfs_v15p2_RRTMGP 045 failed failed +Test fv3_gfs_v15p2_RRTMGP 045 failed in run_test failed -REGRESSION TEST WAS SUCCESSFUL -Mon Mar 15 15:58:20 UTC 2021 -Elapsed time: 00h:47m:47s. Have a nice day! +REGRESSION TEST FAILED +Tue Mar 23 19:44:35 UTC 2021 +Elapsed time: 00h:43m:03s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 96b847e7c7..0ca68416ef 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -81,13 +81,13 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" CMAKE_FLAGS='' if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=ON" elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=ON" fi if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=Y" + CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=ON" fi if [[ "${MAKE_OPT}" == *"OPENMP=N"* ]]; then @@ -131,20 +131,30 @@ if [[ $? -eq 0 ]]; then fi set -ex -if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" +# Valid applications +if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then + echo "MAKE_OPT = ${MAKE_OPT}" + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" +if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" fi -if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" +if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]] || [[ ${MAKE_OPT} == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" +if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" +fi + +if [[ "${MAKE_OPT}" == *"APP=DATM"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=DATM" +fi + +if [[ "${MAKE_OPT}" == *"APP=DATM_NEMS"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=DATM_NEMS" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") @@ -174,3 +184,4 @@ fi elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" +echo "Compile $COMPILE_NR elapsed time $elapsed seconds. ${MAKE_OPT}" >> ${LOG_DIR}/compile_${COMPILE_NR}_time.log diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray index 6b7ae0bbec..e9e76d1fe8 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_cray @@ -16,8 +16,10 @@ module load alps module list set -x +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 index a40f697104..9bdb0713c7 100644 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 @@ -12,8 +12,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index 9d438efdf3..03feac1e69 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -9,8 +9,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index ee2b789758..9bd9e1e667 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -13,8 +13,10 @@ set -eux cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index f5051b92a6..2071d4b00f 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera index 45fdbbe389..2bab9972bb 100644 --- a/tests/fv3_conf/compile_slurm.IN_hera +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -10,8 +10,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_jet b/tests/fv3_conf/compile_slurm.IN_jet index dc1b29c538..a04541d66e 100644 --- a/tests/fv3_conf/compile_slurm.IN_jet +++ b/tests/fv3_conf/compile_slurm.IN_jet @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion index 6d8bdeb8b9..f100c8121d 100644 --- a/tests/fv3_conf/compile_slurm.IN_orion +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -11,8 +11,10 @@ set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt echo "Compile started: " `date` @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] echo "Compile ended: " `date` +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray index 81359cca4f..424ecc989d 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray @@ -10,6 +10,7 @@ #BSUB -M 500 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -28,5 +29,4 @@ export KMP_AFFINITY=disabled aprun -j 1 -n @[TASKS] -N @[TPN] -d @[THRD] -cc depth ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 index 0079469187..d28f04265e 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 @@ -11,6 +11,7 @@ #BSUB -R affinity[core(@[THRD])] set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -28,5 +29,4 @@ export I_MPI_DEBUG=4 mpirun -l -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_msub.IN b/tests/fv3_conf/fv3_msub.IN deleted file mode 100644 index cdce1e094f..0000000000 --- a/tests/fv3_conf/fv3_msub.IN +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash -l -#PBS -S /bin/bash -#PBS -o out -#PBS -e err -#PBS -N @[JBNME] -#PBS -A @[ACCNR] -#PBS -q @[QUEUE] -#PBS -d . -#PBS -l partition=@[PARTITION] -#PBS -l size=@[NODES] -#PBS -l walltime=00:@[WLCLK]:00 - -set -ux - -set +x -module use $( pwd -P ) -module load modules.fv3 -set -x -module list - -echo "Model started: " `date` - -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=1024M -export NC_BLKSZ=1M - -aprun -n @[TASKS] -d@[THRD] -j1 ./fv3.exe - -echo "Model ended: " `date` - -exit diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index f3476d9b3b..9a651df675 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -8,6 +8,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -30,5 +31,4 @@ sync && sleep 1 mpiexec_mpt -np @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index d000b7e493..2316551603 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -9,6 +9,7 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt cd $PBS_O_WORKDIR export CRAY_CONFIG_DIR=$HOME @@ -28,5 +29,4 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 cray aprun -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index ada92b658d..fcadd8c8dc 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -8,7 +8,8 @@ #SBATCH --ntasks=@[TASKS] #SBATCH --time=@[WLCLK] -set -ux +set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -30,5 +31,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 6c48bb4f64..c8c12d041c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -11,6 +11,7 @@ ### #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -35,5 +36,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index d44012ed11..bb7fb42a36 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -10,6 +10,7 @@ ### #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -34,5 +35,4 @@ sync && sleep 1 srun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index d1c142f513..857550fb30 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -12,6 +12,7 @@ #SBATCH --exclusive set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -39,5 +40,4 @@ sync && sleep 1 srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 59fe5a87f7..1c81669128 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -1,13 +1,14 @@ #!/bin/bash -l #SBATCH -o out #SBATCH -e err -#SBATCH -N 4 +#SBATCH -N @[NODES] #SBATCH -A @[ACCNR] -#SBATCH -p skx-dev +#SBATCH -p @[QUEUE] #SBATCH -n @[TASKS] #SBATCH -t 00:@[WLCLK]:00 set -eux +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt set +x source ./module-setup.sh @@ -32,5 +33,4 @@ export LD_BIND_NOW=1 ibrun ./fv3.exe echo "Model ended: " `date` - -exit +echo -n " $( date +%s )," >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt diff --git a/tests/rt.conf b/tests/rt.conf index c1669c361e..3a39fd4416 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # PROD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017 | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_control | | fv3 | RUN | fv3_decomp | - jet.intel | | @@ -23,21 +23,21 @@ RUN | fv3_iau RUN | fv3_lheatstrg | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | + wcoss_dell_p3 hera.intel orion.intel | fv3 | +COMPILE | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_gfdlmprad | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_gfdlmprad_atmwav | + wcoss_dell_p3 hera.intel orion.intel | fv3 | RUN | fv3_wrtGauss_nemsio_c768 | + hera.intel orion.intel | fv3 | # Run multigases test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | RUN | fv3_multigases | | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | RUN | fv3_control_32bit | | fv3 | RUN | fv3_stretched | | fv3 | RUN | fv3_stretched_nest | | fv3 | -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | RUN | fv3_regional_control | | fv3 | RUN | fv3_regional_restart | | fv3 | fv3_regional_control RUN | fv3_regional_quilt | | fv3 | @@ -49,19 +49,19 @@ RUN | fv3_regional_quilt_netcdf_parallel #RUN | fv3_regional_c768 | jet.intel | fv3 | #RUN | fv3_regional_c768 | orion.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | RUN | fv3_gfdlmprad_gwd | | fv3 | RUN | fv3_gfdlmprad_noahmp | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | #RUN | fv3_csawmgshoc | | fv3 | #RUN | fv3_csawmg3shoc127 | | fv3 | RUN | fv3_csawmg | | fv3 | RUN | fv3_satmedmf | | fv3 | RUN | fv3_satmedmfq | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_gfdlmp_32bit | | fv3 | RUN | fv3_gfdlmprad_32bit_post | | fv3 | RUN | fv3_cpt | | fv3 | @@ -74,7 +74,7 @@ RUN | fv3_thompson_no_aero # This test crashes with NaNs on jet.intel RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | # fv3_gfs_v15p2 and fv3_gfs_v15p2_RRTMGP fail w/ sat.vap pressure error when cdmbgwd=0.14,1.8,1.0,1.0 RUN | fv3_gfs_v15p2 | - cheyenne.intel | fv3 | RUN | fv3_gfs_v16 | | fv3 | @@ -85,16 +85,16 @@ RUN | fv3_gfs_v16_RRTMGP RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | RUN | fv3_gfs_v16_RRTMGP_2thrd | | fv3 | -COMPILE | SUITES=FV3_GFS_v16_csawmg | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests RUN | fv3_gfsv16_csawmg | - cheyenne.intel | fv3 | RUN | fv3_gfsv16_csawmgt | - cheyenne.intel | fv3 | -COMPILE | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | RUN | fv3_gocart_clm | | fv3 | RUN | fv3_gfs_v16_flake | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -106,13 +106,13 @@ RUN | fv3_gfs_v16_ras # DEBUG tests # ################################################################################################################################################################################### -COMPILE | DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | 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 32BIT=Y DEBUG=Y | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_stretched_nest_debug | | fv3 | @@ -122,7 +122,7 @@ RUN | fv3_thompson_debug RUN | fv3_thompson_no_aero_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | @@ -133,7 +133,7 @@ RUN | fv3_gfs_v16_ras_debug # CPLD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | RUN | cpld_control | - wcoss_cray jet.intel | fv3 | RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | @@ -165,13 +165,13 @@ RUN | cpld_restart_bmarkfrac RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | - wcoss_cray gaea.intel jet.intel | fv3 | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmark_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_control_wave | - wcoss_cray gaea.intel jet.intel | fv3 | -COMPILE | DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | RUN | cpld_debug | - wcoss_cray jet.intel | fv3 | RUN | cpld_debugfrac | - wcoss_cray jet.intel | fv3 | @@ -179,7 +179,7 @@ RUN | cpld_debugfrac # Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | DATM=Y S2S=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=DATM_NEMS | - wcoss_cray jet.intel | fv3 | RUN | datm_control_cfsr | - wcoss_cray jet.intel | fv3 | RUN | datm_restart_cfsr | - wcoss_cray jet.intel | | datm_control_cfsr RUN | datm_control_gefs | - wcoss_cray jet.intel | fv3 | @@ -190,5 +190,5 @@ RUN | datm_bulk_gefs RUN | datm_mx025_cfsr | - wcoss_cray jet.intel gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray jet.intel | fv3 | -COMPILE | DATM=Y S2S=Y DEBUG=Y | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=DATM_NEMS DEBUG=Y | - wcoss_cray jet.intel | fv3 | RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 5a892accb0..fa245cf8fe 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -327,11 +327,12 @@ elif [[ $MACHINE_ID = stampede.* ]]; then export PYTHONPATH= ECFLOW_START= - QUEUE=skx-dev + QUEUE=skx-normal COMPILE_QUEUE=skx-dev PARTITION= - dprefix=$WORK/ufs-weather-model/run - DISKNM=$WORK/ufs-weather-model/RT + ACCNR=TG-EES200015 + dprefix=$SCRATCH/ufs-weather-model/run + DISKNM=/work/07736/minsukji/stampede2/ufs-weather-model/RT STMP=$dprefix PTMP=$dprefix SCHEDULER=slurm @@ -435,7 +436,6 @@ if [[ $CREATE_BASELINE == true ]]; then mkdir -p "${NEW_BASELINE}" fi -COMPILE_LOG=${PATHRT}/Compile_$MACHINE_ID.log REGRESSIONTEST_LOG=${PATHRT}/RegressionTests_$MACHINE_ID.log date > ${REGRESSIONTEST_LOG} @@ -444,12 +444,13 @@ echo >> ${REGRESSIONTEST_LOG} source default_vars.sh +JOB_NR=0 TEST_NR=0 COMPILE_NR=0 COMPILE_PREV_WW3_NR='' rm -f fail_test -LOG_DIR=${PATHRT}/log_$MACHINE_ID +export LOG_DIR=${PATHRT}/log_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} @@ -529,8 +530,7 @@ if [[ $ECFLOW == true ]]; then rm -rf ${ECFLOW_RUN} mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} - > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - cat << EOF >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def suite ${ECFLOW_SUITE} edit ECF_HOME '${ECFLOW_RUN}' edit ECF_INCLUDE '${ECFLOW_RUN}' @@ -582,6 +582,8 @@ while read -r line || [ "$line" ]; do [[ ${#line} == 0 ]] && continue [[ $line == \#* ]] && continue + JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) + if [[ $line == COMPILE* ]] ; then MAKE_OPT=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') @@ -601,9 +603,11 @@ while read -r line || [ "$line" ]; do fi fi - (( COMPILE_NR += 1 )) + export COMPILE_NR=$( printf '%03d' $(( 10#$COMPILE_NR + 1 )) ) cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env + export JOB_NR=${JOB_NR} + export COMPILE_NR=${COMPILE_NR} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export PATHRT=${PATHRT} @@ -697,6 +701,7 @@ EOF fi cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env + export JOB_NR=${JOB_NR} export MACHINE_ID=${MACHINE_ID} export RT_COMPILER=${RT_COMPILER} export RTPWD=${RTPWD} @@ -758,7 +763,7 @@ fi ## regression test is either failed or successful ## set +e -cat ${LOG_DIR}/compile_*.log > ${COMPILE_LOG} +cat ${LOG_DIR}/compile_*_time.log >> ${REGRESSIONTEST_LOG} cat ${LOG_DIR}/rt_*.log >> ${REGRESSIONTEST_LOG} if [[ -e fail_test ]]; then echo "FAILED TESTS: " @@ -783,6 +788,6 @@ fi date >> ${REGRESSIONTEST_LOG} -elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $(($SECONDS%86400/3600)) $(($SECONDS%3600/60)) $(($SECONDS%60)) ) +elapsed_time=$( printf '%02dh:%02dm:%02ds\n' $((SECONDS%86400/3600)) $((SECONDS%3600/60)) $((SECONDS%60)) ) echo "Elapsed time: ${elapsed_time}. Have a nice day!" >> ${REGRESSIONTEST_LOG} echo "Elapsed time: ${elapsed_time}. Have a nice day!" diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 9397d51c46..42eb3b230c 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,4 +1,4 @@ -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmark_35d | | fv3 | | 2012010100 RUN | cpld_bmark_35d | | fv3 | | 2012040100 RUN | cpld_bmark_35d | | fv3 | | 2012070100 @@ -8,7 +8,7 @@ RUN | cpld_bmark_35d RUN | cpld_bmark_35d | | fv3 | | 2013070100 RUN | cpld_bmark_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmark_wave_35d | | fv3 | | 2012010100 RUN | cpld_bmark_wave_35d | | fv3 | | 2012040100 RUN | cpld_bmark_wave_35d | | fv3 | | 2012070100 @@ -18,7 +18,7 @@ RUN | cpld_bmark_wave_35d RUN | cpld_bmark_wave_35d | | fv3 | | 2013070100 RUN | cpld_bmark_wave_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_35d | | fv3 | | 2012070100 @@ -28,7 +28,7 @@ RUN | cpld_bmarkfrac_35d RUN | cpld_bmarkfrac_35d | | fv3 | | 2013070100 RUN | cpld_bmarkfrac_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2012070100 @@ -38,7 +38,7 @@ RUN | cpld_bmarkfrac_wave_35d RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013070100 RUN | cpld_bmarkfrac_wave_35d | | fv3 | | 2013100100 -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled S2S=Y WW3=Y | + hera.intel orion.intel | fv3 | | +COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | + hera.intel orion.intel | fv3 | | RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 diff --git a/tests/rt_ccpp_dev.conf b/tests/rt_ccpp_dev.conf index 562022cb6f..fd61d05ed3 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -4,7 +4,7 @@ # CCPP REPRO tests # ############################################################################################################################################################ -COMPILE | REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah | | fv3 | RUN | fv3_ccpp_thompson_mynn | | fv3 | RUN | fv3_ccpp_gf_thompson | | fv3 | @@ -15,12 +15,12 @@ RUN | fv3_ccpp_gsd_lndp RUN | fv3_ccpp_gsd_noah | | fv3 | RUN | fv3_ccpp_gsd_noah_lndp | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc | | fv3 | RUN | fv3_ccpp_gsd_mynnsfc | | fv3 | RUN | fv3_ccpp_gsd_noah_mynnsfc | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GFS_v16_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_SAR | | fv3 | RUN | fv3_ccpp_thompson | | fv3 | RUN | fv3_ccpp_thompson_no_aero | | fv3 | @@ -28,7 +28,7 @@ RUN | fv3_ccpp_gf RUN | fv3_ccpp_mynn | | fv3 | RUN | fv3_ccpp_gsd_sar | | fv3 | -COMPILE | REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_GSD_v0_unified_ugwp_suite,FV3_RAP,FV3_HRRR | | fv3 | +COMPILE | APP=ATM REPRO=Y SUITES=FV3_GSD_v0_drag_suite,FV3_GSD_v0_unified_ugwp_suite,FV3_RAP,FV3_HRRR | | fv3 | RUN | fv3_ccpp_gsd_drag_suite | | fv3 | RUN | fv3_ccpp_gsd_unified_ugwp | | | RUN | fv3_ccpp_gsd_drag_suite_unified_ugwp | | | @@ -36,7 +36,7 @@ RUN | fv3_ccpp_rap RUN | fv3_ccpp_hrrr | | fv3 | # Compile without suite argument for CAPS physics -COMPILE | REPRO=Y | | fv3 | +COMPILE | APP=ATM REPRO=Y | | fv3 | # Run tests RUN | fv3_ccpp_shinhong | | fv3 | RUN | fv3_ccpp_ysu | | fv3 | @@ -46,7 +46,7 @@ RUN | fv3_ccpp_ntiedtke # CCPP DEBUG tests # ############################################################################################################################################################ -COMPILE | DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | +COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GSD_v0,FV3_GSD_v0_mynnsfc,FV3_GSD_noah_mynnsfc,FV3_GFS_v16_thompson | | fv3 | RUN | fv3_ccpp_gsd_debug | | fv3 | RUN | fv3_ccpp_gsd_diag3d_debug | | fv3 | @@ -54,6 +54,6 @@ RUN | fv3_ccpp_gsd_mynnsfc_debug RUN | fv3_ccpp_gsd_noah_mynnsfc_debug | | fv3 | RUN | fv3_ccpp_thompson_no_aero_debug | | fv3 | -COMPILE | 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | +COMPILE | APP=ATM 32BIT=Y DEBUG=Y SUITES=FV3_GSD_SAR,FV3_RAP,FV3_HRRR | | fv3 | # Run tests RUN | fv3_ccpp_gsd_sar_debug | | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 23ea04488f..d1bac460d1 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,10 +2,10 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_gfdlmp | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v15p2 | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 @@ -14,13 +14,13 @@ RUN | fv3_gfs_v16_flake RUN | fv3_gfs_v15p2_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | -COMPILE | SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y | | fv3 | RUN | fv3_gsd | | fv3 | RUN | fv3_thompson | | fv3 | RUN | fv3_thompson_no_aero | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -33,7 +33,7 @@ RUN | fv3_gfs_v16_ras ################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | APP=ATM 32BIT=Y DEBUG=Y | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_rrfs_v1beta_debug | | fv3 | @@ -41,16 +41,16 @@ RUN | fv3_gsd_debug RUN | fv3_thompson_debug | | fv3 | RUN | fv3_thompson_no_aero_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v15p2_RRTMGP_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | RUN | fv3_multigases | | fv3 | -COMPILE | SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | @@ -61,10 +61,10 @@ RUN | fv3_gfs_v16_ras_debug # S2S tests # ################################################################################################################################################################## -COMPILE | SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | ################################################################################################################################################################## # Data Atmosphere tests # ################################################################################################################################################################## -COMPILE | DATM=Y S2S=Y | | fv3 | +COMPILE | APP=DATM_NEMS | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index a6e982a4de..34ed5dff25 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -375,8 +375,6 @@ rocoto_create_compile_task() { echo " " >> $ROCOTO_XML fi - rocoto_cmd="&PATHRT;/compile.sh $MACHINE_ID \"${MAKE_OPT}\" $COMPILE_NR" - # serialize WW3 builds. FIXME DEP_STRING="" if [[ ${MAKE_OPT^^} =~ "WW3=Y" && ${COMPILE_PREV_WW3_NR} != '' ]]; then @@ -393,7 +391,6 @@ rocoto_create_compile_task() { fi if [[ ${MACHINE_ID} == wcoss_cray ]]; then BUILD_CORES=24 - rocoto_cmd="aprun -n 1 -j 1 -N 1 -d $BUILD_CORES $rocoto_cmd" NATIVE=" PATHTR&PATHTR;" fi if [[ ${MACHINE_ID} == jet ]]; then @@ -406,14 +403,15 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML $DEP_STRING - $rocoto_cmd + &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR} compile_${COMPILE_NR} ${ACCNR} ${COMPILE_QUEUE} ${PARTITION} ${BUILD_CORES} ${BUILD_WALLTIME} - &LOG;/compile_${COMPILE_NR}.log + &RUNDIR_ROOT;/compile_${COMPILE_NR}/out + &RUNDIR_ROOT;/compile_${COMPILE_NR}/err ${NATIVE} EOF @@ -450,7 +448,8 @@ rocoto_create_run_task() { ${PARTITION} ${NODES}:ppn=${TPN} 00:${WLCLK}:00 - &LOG;/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log + &RUNDIR_ROOT;/${TEST_NAME}${RT_SUFFIX}/out + &RUNDIR_ROOT;/${TEST_NAME}${RT_SUFFIX}/err ${NATIVE} EOF diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 7ee1db6ea5..5de9cb5663 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -35,6 +35,8 @@ export TEST_NR=${COMPILE_NR} export JBNME="compile_${COMPILE_NR}" export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR} +echo -n "${JBNME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + source rt_utils.sh source atparse.bash @@ -64,5 +66,7 @@ fi # End compile job ################################################################################ +echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 582e3bd179..5e9cb3ac52 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -50,6 +50,8 @@ export CNTL_DIR=${CNTL_DIR}${BL_SUFFIX} export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} +echo -n "${TEST_NAME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + UNIT_TEST=${UNIT_TEST:-false} if [[ ${UNIT_TEST} == false ]]; then REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log @@ -167,5 +169,7 @@ check_results # End test ################################################################################ +echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Test ${TEST_NAME}" diff --git a/tests/utest b/tests/utest index 4ba5c5bbfa..28a2a9b8d5 100755 --- a/tests/utest +++ b/tests/utest @@ -55,7 +55,7 @@ cleanup() { build_utests() { [[ -f $build_file ]] || error "$build_file does not exist" - rm -f fv3_*.exe modules.fv3_* $compile_log + rm -f fv3_*.exe modules.fv3_* model_found=false base_opt= @@ -92,9 +92,12 @@ build_utests() { ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') + export COMPILE_NR=${name} cat <<-EOF > ${RUNDIR_ROOT}/compile_${name}.env export MACHINE_ID=${MACHINE_ID} + export JOB_NR=${COMPILE_NR} + export COMPILE_NR=${COMPILE_NR} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export SCHEDULER=${SCHEDULER} @@ -119,6 +122,7 @@ build_utests() { } run_utests() { + JOB_NR=0 for rc in $run_case; do # load default variables and override as necessary source default_vars.sh @@ -132,6 +136,7 @@ run_utests() { comp_nm=std RT_SUFFIX="_${rc}" + JOB_NR=$( printf '%03d' $(( 10#$JOB_NR + 1 )) ) case $rc in std_base) @@ -332,6 +337,7 @@ run_utests() { esac cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env + export JOB_NR=${JOB_NR} export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} @@ -631,7 +637,7 @@ if [[ $run_case =~ std_base && ! $run_case =~ ^std_base ]]; then fi # log directory -LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID +export LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} @@ -667,7 +673,6 @@ if [[ $ECFLOW == true ]]; then fi fi -compile_log=${PATHRT}/Compile_ut_$MACHINE_ID.log unittest_log=${PATHRT}/UnitTests_$MACHINE_ID.log REGRESSIONTEST_LOG=$unittest_log @@ -699,9 +704,6 @@ if [[ $skip_compile == true ]]; then else echo "cases to compile: $compile_case" build_utests - if [[ $ECFLOW == false ]]; then - cat ${LOG_DIR}/compile_*.log > ${compile_log} - fi fi # if skipping run, stop after build. print out status information and @@ -749,9 +751,6 @@ fi #### UNIT TEST STATUS #### ######################################################################## set +e -if [[ $ECFLOW == true ]]; then - cat ${LOG_DIR}/compile_*.log > ${compile_log} -fi cat ${LOG_DIR}/ut_*.log | tee -a ${unittest_log} if [[ -e fail_unit_test ]]; then diff --git a/tests/utest.bld b/tests/utest.bld index a2852dbeb9..be685aa6d1 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_control | SUITES=FV3_GFS_2017 -fv3_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 -fv3_wrtGauss_netcdf | SUITES=FV3_GFS_2017 -fv3_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 -fv3_wrtGauss_nemsio | SUITES=FV3_GFS_2017 -fv3_stochy | SUITES=FV3_GFS_2017 -fv3_iau | SUITES=FV3_GFS_2017 -fv3_ca | SUITES=FV3_GFS_2017 -fv3_lheatstrg | SUITES=FV3_GFS_2017 -fv3_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_gfdlmprad_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -fv3_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp -fv3_csawmg | SUITES=FV3_GFS_2017_csawmg -fv3_satmedmf | SUITES=FV3_GFS_2017_satmedmf -fv3_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq -fv3_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg -fv3_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg -fv3_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_control | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf_esmf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_netcdf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGlatlon_netcdf | APP=ATM SUITES=FV3_GFS_2017 +fv3_wrtGauss_nemsio | APP=ATM SUITES=FV3_GFS_2017 +fv3_stochy | APP=ATM SUITES=FV3_GFS_2017 +fv3_iau | APP=ATM SUITES=FV3_GFS_2017 +fv3_ca | APP=ATM SUITES=FV3_GFS_2017 +fv3_lheatstrg | APP=ATM SUITES=FV3_GFS_2017 +fv3_gfdlmprad | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +fv3_gfdlmprad_atmwav | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +fv3_multigases | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +fv3_gfdlmp | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_gwd | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_gfdlmprad_noahmp | APP=ATM SUITES=FV3_GFS_2017_gfdlmp, FV3_GFS_2017_gfdlmp_noahmp +fv3_csawmg | APP=ATM SUITES=FV3_GFS_2017_csawmg +fv3_satmedmf | APP=ATM SUITES=FV3_GFS_2017_satmedmf +fv3_satmedmfq | APP=ATM SUITES=FV3_GFS_2017_satmedmfq +fv3_gfsv16_csawmg | APP=ATM SUITES=FV3_GFS_v16_csawmg +fv3_gfsv16_csawmgt | APP=ATM SUITES=FV3_GFS_v16_csawmg +fv3_gocart_clm | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +fv3_gfs_v16_flake | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake