From 2cfa0470343e1d6991778049ea3991bed8bfc3e6 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 13:53:32 -0500 Subject: [PATCH 01/23] add an example mechanism to validate compsets and valid applications. --- CMakeLists.txt | 139 ++++++++++++++++++---------------- cmake/validate_compsets.cmake | 44 +++++++++++ 2 files changed, 118 insertions(+), 65 deletions(-) create mode 100644 cmake/validate_compsets.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index c1782977d2..021dd1cd4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,9 +29,11 @@ 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(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") + +# Valid Applications 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") ############################################################################### @@ -76,6 +78,11 @@ message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") + +# Validate compsets +include(cmake/validate_compsets.cmake) + +# Application message("WW3 .............. ${WW3}") message("S2S .............. ${S2S}") message("DATM ............. ${DATM}") @@ -125,68 +132,60 @@ 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 ############################################################################### -include(fms_files.cmake) -add_library(fms ${fms_src_files} ${fms_headers}) - -list(APPEND _fms_defs_public use_libMPI - use_netCDF - GFS_PHYS - INTERNAL_FILE_NML) -if(QUAD_PRECISION) - list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) -endif() +if(FMS) + include(fms_files.cmake) + add_library(fms ${fms_src_files} ${fms_headers}) + + list(APPEND _fms_defs_public use_libMPI + use_netCDF + GFS_PHYS + INTERNAL_FILE_NML) + if(QUAD_PRECISION) + list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) + endif() -# check gettid -include(CheckFunctionExists) -check_function_exists(gettid HAVE_GETTID) -if(HAVE_GETTID) - list(APPEND _fms_defs_public HAVE_GETTID) -endif() + # check gettid + include(CheckFunctionExists) + check_function_exists(gettid HAVE_GETTID) + if(HAVE_GETTID) + list(APPEND _fms_defs_public HAVE_GETTID) + endif() -target_compile_definitions(fms PUBLIC "${_fms_defs_public}") + target_compile_definitions(fms PUBLIC "${_fms_defs_public}") -if(32BIT) - list(APPEND _fms_defs_private OVERLOAD_R4 - OVERLOAD_R8) -endif() + if(32BIT) + list(APPEND _fms_defs_private OVERLOAD_R4 + OVERLOAD_R8) + endif() + + target_compile_definitions(fms PRIVATE "${_fms_defs_private}") + + target_include_directories(fms PUBLIC $ + $ + $ + $ + $) + target_include_directories(fms INTERFACE + $ + $) + target_link_libraries(fms PUBLIC MPI::MPI_Fortran + NetCDF::NetCDF_Fortran) + if(OpenMP_Fortran_FOUND) + target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) + endif() + set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) + set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) + set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) +endif(FMS) -target_compile_definitions(fms PRIVATE "${_fms_defs_private}") - -target_include_directories(fms PUBLIC $ - $ - $ - $ - $) -target_include_directories(fms INTERFACE - $ - $) -target_link_libraries(fms PUBLIC MPI::MPI_Fortran - NetCDF::NetCDF_Fortran) -if(OpenMP_Fortran_FOUND) - target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) -endif() -set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) -set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics ############################################################################### -if(NOT DATM) +if(STOCH_PHYS) add_subdirectory(stochastic_physics) endif() @@ -195,7 +194,9 @@ endif() ############################################################################### if(DATM) add_subdirectory(DATM) -else() +endif() + +if(FV3) add_subdirectory(FV3) endif() @@ -277,10 +278,13 @@ add_dependencies(ufs fms) if(DATM) list(APPEND _ufs_defs_private FRONT_DATM=datm) add_dependencies(ufs datatm) -else() +endif() + +if(FV3) 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() @@ -301,7 +305,9 @@ target_link_libraries(ufs PUBLIC esmf) if(DATM) target_link_libraries(ufs PUBLIC datatm) -else() +endif() + +if(FV3) target_link_libraries(ufs PUBLIC fv3atm) endif() @@ -348,18 +354,21 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### ### Install ############################################################################### -install( - TARGETS fms - EXPORT fms-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - PUBLIC_HEADER DESTINATION include ) +if(FMS) + install( + TARGETS fms + EXPORT fms-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + PUBLIC_HEADER DESTINATION include ) -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + + install(EXPORT fms-config + DESTINATION lib/cmake + ) +endif(FMS) -install(EXPORT fms-config - DESTINATION lib/cmake -) install( TARGETS ufs EXPORT ufs-config diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake new file mode 100644 index 0000000000..d0e19cc241 --- /dev/null +++ b/cmake/validate_compsets.cmake @@ -0,0 +1,44 @@ +############################################################################### +# Disable all Components except applications +############################################################################### +set(FMS OFF CACHE BOOL "Disable FMS" FORCE) +set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) +set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) +set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) +set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) +set(WW3 OFF CACHE BOOL "Disable WaveWatch III" FORCE) +set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) + +############################################################################### +### Checks +############################################################################### +if(DATM AND S2S) + message(FATAL_ERROR "DATM=ON and S2S=ON are incompatible, ABORT!") +endif() + +############################################################################### +### Enable Application Specific components +############################################################################### +if(DATM) + set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + message("Configuring UFS in Data Atmosphere application mode") + return() +endif() + +if(S2S) + set(FMS ON CACHE BOOL "Enable MOM6" 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(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) + message("Configuring UFS in S2S application mode") + return() +endif() + From d9a1548c5aeef686b8443182b932aea54480f5ca Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 14:12:25 -0500 Subject: [PATCH 02/23] missed cmeps --- CMakeLists.txt | 8 +++++++- cmake/validate_compsets.cmake | 12 ++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 021dd1cd4d..31a754ab4b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -238,9 +238,15 @@ endif() ############################################################################### ### S2S Components [CMEPS, MOM6, CICE] ############################################################################### -if(S2S) +if(CMEPS) add_subdirectory(CMEPS-interface) +endif() + +if(MOM6) add_subdirectory(MOM6-interface) +endif() + +if(CICE6) add_subdirectory(CICE-interface) endif() diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index d0e19cc241..1938eabc56 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -3,6 +3,7 @@ ############################################################################### set(FMS OFF CACHE BOOL "Disable FMS" FORCE) set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) +set(CMEPS OFF CACHE BOOL "Disable CMEPS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) @@ -20,7 +21,7 @@ endif() ### Enable Application Specific components ############################################################################### if(DATM) - set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) @@ -31,7 +32,8 @@ if(DATM) endif() if(S2S) - set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(CMEPS ON CACHE BOOL "Enable CMEPS" 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) @@ -42,3 +44,9 @@ if(S2S) return() endif() +############################################################################### +### If you have reached here, then it is the default application +############################################################################### +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) From c9921959358b8bcbd8780a0346d2b3fa3b531765 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 15:46:09 -0500 Subject: [PATCH 03/23] more apps and unsupported too --- CMakeLists.txt | 56 +++++++++++++++++++++++++--------- cmake/validate_compsets.cmake | 57 +++++++++++++++++++++-------------- 2 files changed, 75 insertions(+), 38 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 31a754ab4b..c108d4cc26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,9 +31,18 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +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(CMEPS OFF CACHE BOOL "Enable CMEPS") +set(CDEPS OFF CACHE BOOL "Enable CDEPS") + # Valid Applications -set(WW3 OFF CACHE BOOL "Enable WW3") +set(ATM ON CACHE BOOL "Enable Atmosphere only") +set(ATMW OFF CACHE BOOL "Enable Atmosphere with Waves") set(S2S OFF CACHE BOOL "Enable S2S") +set(S2SW OFF CACHE BOOL "Enable S2S with Waves") set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### @@ -67,7 +76,6 @@ if(CMAKE_Platform) endif() message("") -message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") @@ -80,12 +88,21 @@ message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") # Validate compsets +message("") include(cmake/validate_compsets.cmake) +message("") -# Application +# Components +message("") +message("FMS .............. ${FMS}") +message("CDEPS ............ ${CDEPS}") +message("CMEPS ............ ${CMEPS}") +message("FV3 .............. ${FV3}") +message("MOM6 ............. ${MOM6}") +message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") -message("S2S .............. ${S2S}") -message("DATM ............. ${DATM}") +message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("32BIT ............ ${32BIT}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -112,7 +129,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() @@ -232,7 +249,7 @@ 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() ############################################################################### @@ -317,15 +334,23 @@ if(FV3) target_link_libraries(ufs PUBLIC fv3atm) endif() -if(S2S) - list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod - FRONT_CICE6=ice_comp_nuopc - CMEPS +if(MOM6) + list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod) + add_dependencies(ufs mom6) + target_link_libraries(ufs PUBLIC mom6) +endif() + +if(CICE6) + list(APPEND _ufs_defs_private FRONT_CICE6=ice_comp_nuopc) + add_dependencies(ufs cice) + target_link_libraries(ufs PUBLIC cice) +endif() + +if(CMEPS) + list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps) - target_link_libraries(ufs PUBLIC mom6 - cice - cmeps) + add_dependencies(ufs cmeps) + target_link_libraries(ufs PUBLIC cmeps) endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") @@ -352,6 +377,7 @@ target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") if(DATM) target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() + target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 1938eabc56..791f6f0b4c 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -1,25 +1,34 @@ ############################################################################### -# Disable all Components except applications +### Application Checks ############################################################################### -set(FMS OFF CACHE BOOL "Disable FMS" FORCE) -set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) -set(CMEPS OFF CACHE BOOL "Disable CMEPS" FORCE) -set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) -set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) -set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) -set(WW3 OFF CACHE BOOL "Disable WaveWatch III" FORCE) -set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) +if((ATM OR ATMW) AND (S2S OR S2SW)) + message(FATAL_ERROR "ATM|ATMW=ON and S2S|S2SW=ON are incompatible, ABORT!") +endif() -############################################################################### -### Checks -############################################################################### -if(DATM AND S2S) - message(FATAL_ERROR "DATM=ON and S2S=ON are incompatible, ABORT!") +if(DATM AND (S2S OR S2SW)) + message(FATAL_ERROR "DATM=ON and S2S|S2SW=ON are incompatible, ABORT!") +endif() + +if(DATM AND (ATM OR ATMW)) + message(FATAL_ERROR "DATM=ON and ATM|ATMW=ON are incompatible, ABORT!") endif() ############################################################################### -### Enable Application Specific components +### Enable Components in Supported Applications ############################################################################### +if(ATM OR 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(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() + return() +endif() + if(DATM) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) @@ -27,26 +36,28 @@ if(DATM) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) - message("Configuring UFS in Data Atmosphere application mode") + message("Configuring UFS app in Data Atmosphere mode") return() endif() -if(S2S) +if(S2S OR S2SW) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(CMEPS ON CACHE BOOL "Enable CMEPS" 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(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) - message("Configuring UFS in S2S application mode") + if(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() return() endif() ############################################################################### -### If you have reached here, then it is the default application +### The application you are building is unsupported, proceed with caution! ############################################################################### -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) +message("Configuring UFS app in an unsupported configuration!") From 55885daad5798b927dab5979eeac268bdef93696 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:28:40 -0500 Subject: [PATCH 04/23] typo and missing CMEPS in DATM app --- cmake/validate_compsets.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 791f6f0b4c..e65a5ac1cf 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -30,12 +30,12 @@ if(ATM OR ATMW) endif() if(DATM) + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) - set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) message("Configuring UFS app in Data Atmosphere mode") return() endif() @@ -47,7 +47,7 @@ if(S2S OR S2SW) 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) - set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) + set(32BIT OFF CACHE BOOL "Disable 32BIT" FORCE) if(S2SW) set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) message("Configuring UFS app in S2S with Waves mode") From 6b9cabac66f90860d9f7aae9f6db3f721ac4591f Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:38:56 -0500 Subject: [PATCH 05/23] forgot WW3 default option --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c108d4cc26..c05dbce163 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,7 @@ 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(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") @@ -102,6 +103,10 @@ message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("") + +# Options that components reset +message("") message("32BIT ............ ${32BIT}") message("") From 3f781197f708ddf38dac49910416a6d12737d6a8 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:51:44 -0500 Subject: [PATCH 06/23] WAVEWATCH needs to be all-caps --- cmake/validate_compsets.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index e65a5ac1cf..76dfcafa1a 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -21,7 +21,7 @@ if(ATM OR ATMW) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(ATMW) - set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + 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") @@ -49,7 +49,7 @@ if(S2S OR S2SW) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) set(32BIT OFF CACHE BOOL "Disable 32BIT" FORCE) if(S2SW) - set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + 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") From 9431974e9759ea80d966cdafdb52df5f8796a2ec Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:55:42 -0500 Subject: [PATCH 07/23] remove unwanted options --- cmake/validate_compsets.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 76dfcafa1a..e5f164b0da 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -32,17 +32,15 @@ endif() if(DATM) set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) - set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) - set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) message("Configuring UFS app in Data Atmosphere mode") return() endif() if(S2S OR S2SW) - set(FMS ON CACHE BOOL "Enable FMS" FORCE) 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) From 389fbd2c0106e41d8ebb79749511eaf5141f42e7 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 13:53:32 -0500 Subject: [PATCH 08/23] add an example mechanism to validate compsets and valid applications. --- CMakeLists.txt | 139 ++++++++++++++++++---------------- cmake/validate_compsets.cmake | 44 +++++++++++ 2 files changed, 118 insertions(+), 65 deletions(-) create mode 100644 cmake/validate_compsets.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 67ca10847c..dad2cb8e30 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,9 +29,11 @@ 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(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") + +# Valid Applications 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") ############################################################################### @@ -76,6 +78,11 @@ message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") + +# Validate compsets +include(cmake/validate_compsets.cmake) + +# Application message("WW3 .............. ${WW3}") message("S2S .............. ${S2S}") message("DATM ............. ${DATM}") @@ -125,68 +132,60 @@ 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 ############################################################################### -include(fms_files.cmake) -add_library(fms ${fms_src_files} ${fms_headers}) - -list(APPEND _fms_defs_public use_libMPI - use_netCDF - GFS_PHYS - INTERNAL_FILE_NML) -if(QUAD_PRECISION) - list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) -endif() +if(FMS) + include(fms_files.cmake) + add_library(fms ${fms_src_files} ${fms_headers}) + + list(APPEND _fms_defs_public use_libMPI + use_netCDF + GFS_PHYS + INTERNAL_FILE_NML) + if(QUAD_PRECISION) + list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) + endif() -# check gettid -include(CheckFunctionExists) -check_function_exists(gettid HAVE_GETTID) -if(HAVE_GETTID) - list(APPEND _fms_defs_public HAVE_GETTID) -endif() + # check gettid + include(CheckFunctionExists) + check_function_exists(gettid HAVE_GETTID) + if(HAVE_GETTID) + list(APPEND _fms_defs_public HAVE_GETTID) + endif() -target_compile_definitions(fms PUBLIC "${_fms_defs_public}") + target_compile_definitions(fms PUBLIC "${_fms_defs_public}") -if(32BIT) - list(APPEND _fms_defs_private OVERLOAD_R4 - OVERLOAD_R8) -endif() + if(32BIT) + list(APPEND _fms_defs_private OVERLOAD_R4 + OVERLOAD_R8) + endif() + + target_compile_definitions(fms PRIVATE "${_fms_defs_private}") + + target_include_directories(fms PUBLIC $ + $ + $ + $ + $) + target_include_directories(fms INTERFACE + $ + $) + target_link_libraries(fms PUBLIC MPI::MPI_Fortran + NetCDF::NetCDF_Fortran) + if(OpenMP_Fortran_FOUND) + target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) + endif() + set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) + set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) + set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) +endif(FMS) -target_compile_definitions(fms PRIVATE "${_fms_defs_private}") - -target_include_directories(fms PUBLIC $ - $ - $ - $ - $) -target_include_directories(fms INTERFACE - $ - $) -target_link_libraries(fms PUBLIC MPI::MPI_Fortran - NetCDF::NetCDF_Fortran) -if(OpenMP_Fortran_FOUND) - target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) -endif() -set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) -set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics ############################################################################### -if(NOT DATM) +if(STOCH_PHYS) add_subdirectory(stochastic_physics) endif() @@ -195,7 +194,9 @@ endif() ############################################################################### if(DATM) add_subdirectory(DATM) -else() +endif() + +if(FV3) add_subdirectory(FV3) endif() @@ -271,10 +272,13 @@ add_dependencies(ufs fms) if(DATM) list(APPEND _ufs_defs_private FRONT_DATM=datm) add_dependencies(ufs datatm) -else() +endif() + +if(FV3) 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() @@ -295,7 +299,9 @@ target_link_libraries(ufs PUBLIC esmf) if(DATM) target_link_libraries(ufs PUBLIC datatm) -else() +endif() + +if(FV3) target_link_libraries(ufs PUBLIC fv3atm) endif() @@ -342,18 +348,21 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### ### Install ############################################################################### -install( - TARGETS fms - EXPORT fms-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - PUBLIC_HEADER DESTINATION include ) +if(FMS) + install( + TARGETS fms + EXPORT fms-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + PUBLIC_HEADER DESTINATION include ) -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) + + install(EXPORT fms-config + DESTINATION lib/cmake + ) +endif(FMS) -install(EXPORT fms-config - DESTINATION lib/cmake -) install( TARGETS ufs EXPORT ufs-config diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake new file mode 100644 index 0000000000..d0e19cc241 --- /dev/null +++ b/cmake/validate_compsets.cmake @@ -0,0 +1,44 @@ +############################################################################### +# Disable all Components except applications +############################################################################### +set(FMS OFF CACHE BOOL "Disable FMS" FORCE) +set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) +set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) +set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) +set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) +set(WW3 OFF CACHE BOOL "Disable WaveWatch III" FORCE) +set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) + +############################################################################### +### Checks +############################################################################### +if(DATM AND S2S) + message(FATAL_ERROR "DATM=ON and S2S=ON are incompatible, ABORT!") +endif() + +############################################################################### +### Enable Application Specific components +############################################################################### +if(DATM) + set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) + set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) + set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) + set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + message("Configuring UFS in Data Atmosphere application mode") + return() +endif() + +if(S2S) + set(FMS ON CACHE BOOL "Enable MOM6" 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(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) + message("Configuring UFS in S2S application mode") + return() +endif() + From 554d9c763864ccd178e0d8781de5d6fc419cea54 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 14:12:25 -0500 Subject: [PATCH 09/23] missed cmeps --- CMakeLists.txt | 8 +++++++- cmake/validate_compsets.cmake | 12 ++++++++++-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dad2cb8e30..5c09232201 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -232,9 +232,15 @@ endif() ############################################################################### ### S2S Components [CMEPS, MOM6, CICE] ############################################################################### -if(S2S) +if(CMEPS) add_subdirectory(CMEPS-interface) +endif() + +if(MOM6) add_subdirectory(MOM6-interface) +endif() + +if(CICE6) add_subdirectory(CICE-interface) endif() diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index d0e19cc241..1938eabc56 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -3,6 +3,7 @@ ############################################################################### set(FMS OFF CACHE BOOL "Disable FMS" FORCE) set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) +set(CMEPS OFF CACHE BOOL "Disable CMEPS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) @@ -20,7 +21,7 @@ endif() ### Enable Application Specific components ############################################################################### if(DATM) - set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) @@ -31,7 +32,8 @@ if(DATM) endif() if(S2S) - set(FMS ON CACHE BOOL "Enable MOM6" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(CMEPS ON CACHE BOOL "Enable CMEPS" 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) @@ -42,3 +44,9 @@ if(S2S) return() endif() +############################################################################### +### If you have reached here, then it is the default application +############################################################################### +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) From 5c705eeb501f8336cfebe795126906f8e19920ff Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 15:46:09 -0500 Subject: [PATCH 10/23] more apps and unsupported too --- CMakeLists.txt | 56 +++++++++++++++++++++++++--------- cmake/validate_compsets.cmake | 57 +++++++++++++++++++++-------------- 2 files changed, 75 insertions(+), 38 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5c09232201..b7594a3add 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,9 +31,18 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +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(CMEPS OFF CACHE BOOL "Enable CMEPS") +set(CDEPS OFF CACHE BOOL "Enable CDEPS") + # Valid Applications -set(WW3 OFF CACHE BOOL "Enable WW3") +set(ATM ON CACHE BOOL "Enable Atmosphere only") +set(ATMW OFF CACHE BOOL "Enable Atmosphere with Waves") set(S2S OFF CACHE BOOL "Enable S2S") +set(S2SW OFF CACHE BOOL "Enable S2S with Waves") set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### @@ -67,7 +76,6 @@ if(CMAKE_Platform) endif() message("") -message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") @@ -80,12 +88,21 @@ message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") # Validate compsets +message("") include(cmake/validate_compsets.cmake) +message("") -# Application +# Components +message("") +message("FMS .............. ${FMS}") +message("CDEPS ............ ${CDEPS}") +message("CMEPS ............ ${CMEPS}") +message("FV3 .............. ${FV3}") +message("MOM6 ............. ${MOM6}") +message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") -message("S2S .............. ${S2S}") -message("DATM ............. ${DATM}") +message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("32BIT ............ ${32BIT}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -112,7 +129,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() @@ -226,7 +243,7 @@ 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() ############################################################################### @@ -311,15 +328,23 @@ if(FV3) target_link_libraries(ufs PUBLIC fv3atm) endif() -if(S2S) - list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod - FRONT_CICE6=ice_comp_nuopc - CMEPS +if(MOM6) + list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod) + add_dependencies(ufs mom6) + target_link_libraries(ufs PUBLIC mom6) +endif() + +if(CICE6) + list(APPEND _ufs_defs_private FRONT_CICE6=ice_comp_nuopc) + add_dependencies(ufs cice) + target_link_libraries(ufs PUBLIC cice) +endif() + +if(CMEPS) + list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps) - target_link_libraries(ufs PUBLIC mom6 - cice - cmeps) + add_dependencies(ufs cmeps) + target_link_libraries(ufs PUBLIC cmeps) endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") @@ -346,6 +371,7 @@ target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") if(DATM) target_link_libraries(ufs_model PUBLIC ufs w3nco::w3nco_d) endif() + target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 1938eabc56..791f6f0b4c 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -1,25 +1,34 @@ ############################################################################### -# Disable all Components except applications +### Application Checks ############################################################################### -set(FMS OFF CACHE BOOL "Disable FMS" FORCE) -set(CDEPS OFF CACHE BOOL "Disable CDEPS" FORCE) -set(CMEPS OFF CACHE BOOL "Disable CMEPS" FORCE) -set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) -set(MOM6 OFF CACHE BOOL "Disable MOM6" FORCE) -set(CICE6 OFF CACHE BOOL "Disable CICE6" FORCE) -set(WW3 OFF CACHE BOOL "Disable WaveWatch III" FORCE) -set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) +if((ATM OR ATMW) AND (S2S OR S2SW)) + message(FATAL_ERROR "ATM|ATMW=ON and S2S|S2SW=ON are incompatible, ABORT!") +endif() -############################################################################### -### Checks -############################################################################### -if(DATM AND S2S) - message(FATAL_ERROR "DATM=ON and S2S=ON are incompatible, ABORT!") +if(DATM AND (S2S OR S2SW)) + message(FATAL_ERROR "DATM=ON and S2S|S2SW=ON are incompatible, ABORT!") +endif() + +if(DATM AND (ATM OR ATMW)) + message(FATAL_ERROR "DATM=ON and ATM|ATMW=ON are incompatible, ABORT!") endif() ############################################################################### -### Enable Application Specific components +### Enable Components in Supported Applications ############################################################################### +if(ATM OR 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(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() + return() +endif() + if(DATM) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) @@ -27,26 +36,28 @@ if(DATM) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) - message("Configuring UFS in Data Atmosphere application mode") + message("Configuring UFS app in Data Atmosphere mode") return() endif() -if(S2S) +if(S2S OR S2SW) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(CMEPS ON CACHE BOOL "Enable CMEPS" 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(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) - message("Configuring UFS in S2S application mode") + if(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() return() endif() ############################################################################### -### If you have reached here, then it is the default application +### The application you are building is unsupported, proceed with caution! ############################################################################### -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) +message("Configuring UFS app in an unsupported configuration!") From 4c57c809842b591e211551ebd3ab7953a61a8445 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:28:40 -0500 Subject: [PATCH 11/23] typo and missing CMEPS in DATM app --- cmake/validate_compsets.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 791f6f0b4c..e65a5ac1cf 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -30,12 +30,12 @@ if(ATM OR ATMW) endif() if(DATM) + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) - set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) message("Configuring UFS app in Data Atmosphere mode") return() endif() @@ -47,7 +47,7 @@ if(S2S OR S2SW) 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) - set(32BIT OFF CACHE BOOL "Disable 32IT" FORCE) + set(32BIT OFF CACHE BOOL "Disable 32BIT" FORCE) if(S2SW) set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) message("Configuring UFS app in S2S with Waves mode") From 00bd4f97bd8788e1c32a7c76623000d34aa0583c Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:38:56 -0500 Subject: [PATCH 12/23] forgot WW3 default option --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7594a3add..68451f0a26 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,7 @@ 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(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") @@ -102,6 +103,10 @@ message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") +message("") + +# Options that components reset +message("") message("32BIT ............ ${32BIT}") message("") From 39856d1fb3f6ccb85efd54d930ba2d8e63e69c15 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:51:44 -0500 Subject: [PATCH 13/23] WAVEWATCH needs to be all-caps --- cmake/validate_compsets.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index e65a5ac1cf..76dfcafa1a 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -21,7 +21,7 @@ if(ATM OR ATMW) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(ATMW) - set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + 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") @@ -49,7 +49,7 @@ if(S2S OR S2SW) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) set(32BIT OFF CACHE BOOL "Disable 32BIT" FORCE) if(S2SW) - set(WW3 ON CACHE BOOL "Enable WaveWatch III" FORCE) + 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") From dd306688062002f0fabb68633a12c5a867b76c91 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 12 Mar 2021 16:55:42 -0500 Subject: [PATCH 14/23] remove unwanted options --- cmake/validate_compsets.cmake | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index 76dfcafa1a..e5f164b0da 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -32,17 +32,15 @@ endif() if(DATM) set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) - set(FV3 OFF CACHE BOOL "Disable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) - set(STOCH_PHYS OFF CACHE BOOL "Disable Stochastic Physics" FORCE) message("Configuring UFS app in Data Atmosphere mode") return() endif() if(S2S OR S2SW) - set(FMS ON CACHE BOOL "Enable FMS" FORCE) 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) From 9f8a694f43b927946871e2ab08797c85938e7b7e Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Thu, 18 Mar 2021 14:10:30 -0400 Subject: [PATCH 15/23] updates to test scripts and confs --- CMakeLists.txt | 87 ++++++++++++++++++++--------------- cmake/validate_compsets.cmake | 11 +++++ tests/compile.sh | 17 ++++--- tests/rt.conf | 40 ++++++++-------- tests/rt_gnu.conf | 20 ++++---- 5 files changed, 101 insertions(+), 74 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 68451f0a26..253e25c905 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,11 +40,12 @@ set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") # Valid Applications -set(ATM ON CACHE BOOL "Enable Atmosphere only") +set(ATM OFF CACHE BOOL "Enable Atmosphere only") set(ATMW OFF CACHE BOOL "Enable Atmosphere with Waves") -set(S2S OFF CACHE BOOL "Enable S2S") -set(S2SW OFF CACHE BOOL "Enable S2S with Waves") -set(DATM OFF CACHE BOOL "Enable Data Atmosphere") +set(S2S OFF CACHE BOOL "Enable Coupled model") +set(S2SW OFF CACHE BOOL "Enable Coupled model with Waves") +set(DATM OFF CACHE BOOL "Enable Coupled model with (CMEPS) Data Atmosphere") +set(DATM_NEMS OFF CACHE BOOL "Enable Coupled model with (NEMS) Data Atmosphere") ############################################################################### ### Set CMAKE_BUILD_TYPE for DEBUG mode @@ -102,6 +103,7 @@ message("FV3 .............. ${FV3}") message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") +message("NEMSdatm ......... ${NEMSdatm}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("") @@ -203,7 +205,6 @@ if(FMS) set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) endif(FMS) - ############################################################################### ### stochastic_physics ############################################################################### @@ -212,18 +213,14 @@ if(STOCH_PHYS) endif() ############################################################################### -### FV3 or Data Atmosphere +### Atmosphere Components [FV3] ############################################################################### -if(DATM) - add_subdirectory(DATM) -endif() - if(FV3) add_subdirectory(FV3) endif() ############################################################################### -### WW3 +### Wave components [WW3] ############################################################################### if(WW3) if(CMAKE_Platform) @@ -252,12 +249,8 @@ if(WW3) endif() ############################################################################### -### S2S Components [CMEPS, MOM6, CICE] +### Ocean Components [MOM6, CICE] ############################################################################### -if(CMEPS) - add_subdirectory(CMEPS-interface) -endif() - if(MOM6) add_subdirectory(MOM6-interface) endif() @@ -266,6 +259,25 @@ 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] ############################################################################### @@ -292,26 +304,35 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/NEMS/src/ESMFConvenienceMacros.h COPYONLY) add_library(ufs ${_nems_srcs}) +target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/NEMS/src) +set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(ufs INTERFACE $ + $) + +list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR}) + +target_link_libraries(ufs PUBLIC esmf) -list(APPEND _ufs_defs_private ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} - FRONT_FMS) -add_dependencies(ufs fms) +if(FMS) + list(APPEND _ufs_defs_private FRONT_FMS) + add_dependencies(ufs fms) +endif() -if(DATM) +if(NEMSdatm) list(APPEND _ufs_defs_private FRONT_DATM=datm) add_dependencies(ufs datatm) + target_link_libraries(ufs PUBLIC datatm) endif() if(FV3) list(APPEND _ufs_defs_private FRONT_FV3=fv3gfs_cap_mod) add_dependencies(ufs fv3atm) + target_link_libraries(ufs PUBLIC 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) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) @@ -320,19 +341,6 @@ if(WW3) target_link_libraries(ufs PUBLIC ${WW3_LIBS}) endif() -target_include_directories(ufs INTERFACE $ - $) - -target_link_libraries(ufs PUBLIC esmf) - -if(DATM) - target_link_libraries(ufs PUBLIC datatm) -endif() - -if(FV3) - target_link_libraries(ufs PUBLIC fv3atm) -endif() - if(MOM6) list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod) add_dependencies(ufs mom6) @@ -346,12 +354,15 @@ if(CICE6) endif() if(CMEPS) - list(APPEND _ufs_defs_private CMEPS - FRONT_CMEPS=MED) + list(APPEND _ufs_defs_private CMEPS FRONT_CMEPS=MED) add_dependencies(ufs cmeps) target_link_libraries(ufs PUBLIC cmeps) endif() +if(CDEPS) + message("Do CDEPS things here") +endif() + target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") ############################################################################### @@ -373,7 +384,7 @@ 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() diff --git a/cmake/validate_compsets.cmake b/cmake/validate_compsets.cmake index e5f164b0da..bfaf5bc1fe 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/validate_compsets.cmake @@ -29,8 +29,19 @@ if(ATM OR ATMW) return() endif() +if(DATM_NEMS) + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(NEMSdatm ON CACHE BOOL "Enable NEMS DataAtm" 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) + message("Configuring UFS app in Data Atmosphere mode") + return() +endif() + if(DATM) set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" 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) diff --git a/tests/compile.sh b/tests/compile.sh index 96b847e7c7..8d86f38fe6 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -131,20 +131,25 @@ if [[ $? -eq 0 ]]; then fi set -ex -if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DWW3=Y" +# Valid applications +if [[ "${MAKE_OPT}" == *"ATM=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DATM=Y" +fi + +if [[ "${MAKE_OPT}" == *"ATMW=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DATMW=Y" fi if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" fi -if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" +if [[ "${MAKE_OPT}" == *"S2SW=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DS2SW=Y" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]] || [[ ${MAKE_OPT} == *"DATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" +if [[ "${MAKE_OPT}" == *"DATM_NEMS=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM_NEMS=Y" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") diff --git a/tests/rt.conf b/tests/rt.conf index a4e120fa44..b5b98974ab 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # PROD tests # ################################################################################################################################################################################### -COMPILE | SUITES=FV3_GFS_2017 | | fv3 | +COMPILE | ATM=Y 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 | ATMW=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp 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 | ATM=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y RUN | fv3_multigases | | fv3 | -COMPILE | SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +COMPILE | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | S2S=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_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 | S2SW=Y 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 | S2S=Y 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 | DATM_NEMS=Y 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 | DATM_NEMS=Y RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 23ea04488f..c7135e9dca 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | S2S=Y 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 | DATM_NEMS=Y | | fv3 | From 469f74a8314b0f3769e6a49667693462faeb69dc Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Thu, 18 Mar 2021 18:39:23 -0400 Subject: [PATCH 16/23] edit more conf files --- tests/rt.conf | 2 +- tests/rt_35d.conf | 10 +++++----- tests/rt_ccpp_dev.conf | 14 +++++++------- tests/rt_compile.conf | 20 ++++++++++++++++++++ 4 files changed, 33 insertions(+), 13 deletions(-) create mode 100644 tests/rt_compile.conf diff --git a/tests/rt.conf b/tests/rt.conf index b5b98974ab..6b42650f1c 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -49,7 +49,7 @@ RUN | fv3_regional_quilt_netcdf_parallel #RUN | fv3_regional_c768 | jet.intel | fv3 | #RUN | fv3_regional_c768 | orion.intel | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +COMPILE | ATM=Y 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 | diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 9397d51c46..9aa97145b6 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 | S2S=Y 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 | S2SW=Y 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 | S2S=Y 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 | S2SW=Y 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 | S2SW=Y 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..79b11dbb3b 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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_compile.conf b/tests/rt_compile.conf new file mode 100644 index 0000000000..b7dd265c55 --- /dev/null +++ b/tests/rt_compile.conf @@ -0,0 +1,20 @@ +COMPILE | ATM=Y SUITES=FV3_GFS_2017 | | fv3 | +COMPILE | ATMW=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +COMPILE | ATM=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +COMPILE | ATM=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +COMPILE | ATM=Y SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | +COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +COMPILE | ATM=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +COMPILE | ATM=Y 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 | ATM=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | ATM=Y SUITES=FV3_GFS_v16_csawmg | | fv3 | +COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +COMPILE | ATM=Y SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | ATM=Y DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | ATM=Y 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 | ATM=Y SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | +COMPILE | S2SW=Y 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 | +COMPILE | S2S=Y 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 | +COMPILE | DATM_NEMS=Y +COMPILE | DATM_NEMS=Y From bf062f365e969d978bd174182bd728ac44b5fcb0 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 19 Mar 2021 22:25:30 -0400 Subject: [PATCH 17/23] use a unique application name and add user option -DAPP= --- CMakeLists.txt | 21 ++++---- ...te_compsets.cmake => configure_apps.cmake} | 51 +++++-------------- tests/compile.sh | 31 ++++++----- tests/rt.conf | 40 +++++++-------- tests/rt_35d.conf | 10 ++-- tests/rt_ccpp_dev.conf | 14 ++--- tests/rt_gnu.conf | 20 ++++---- 7 files changed, 84 insertions(+), 103 deletions(-) rename cmake/{validate_compsets.cmake => configure_apps.cmake} (51%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 253e25c905..21bff7cfd0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,21 +31,22 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +# Component Options set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(CICE6 OFF CACHE BOOL "Enable CICE6") set(WW3 OFF CACHE BOOL "Enable WW3") +set(NEMSdatm OFF CACHE BOOL "Enable NEMSdatm") set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") -# Valid Applications -set(ATM OFF CACHE BOOL "Enable Atmosphere only") -set(ATMW OFF CACHE BOOL "Enable Atmosphere with Waves") -set(S2S OFF CACHE BOOL "Enable Coupled model") -set(S2SW OFF CACHE BOOL "Enable Coupled model with Waves") -set(DATM OFF CACHE BOOL "Enable Coupled model with (CMEPS) Data Atmosphere") -set(DATM_NEMS OFF CACHE BOOL "Enable Coupled model with (NEMS) Data Atmosphere") +# 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 @@ -89,9 +90,9 @@ message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") -# Validate compsets +# Configure selected application specific components message("") -include(cmake/validate_compsets.cmake) +include(cmake/configure_apps.cmake) message("") # Components @@ -107,7 +108,7 @@ message("NEMSdatm ......... ${NEMSdatm}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("") -# Options that components reset +# Options that applications reset message("") message("32BIT ............ ${32BIT}") message("") diff --git a/cmake/validate_compsets.cmake b/cmake/configure_apps.cmake similarity index 51% rename from cmake/validate_compsets.cmake rename to cmake/configure_apps.cmake index bfaf5bc1fe..f5515ae71f 100644 --- a/cmake/validate_compsets.cmake +++ b/cmake/configure_apps.cmake @@ -1,26 +1,11 @@ ############################################################################### -### Application Checks +### Configure Application Components ############################################################################### -if((ATM OR ATMW) AND (S2S OR S2SW)) - message(FATAL_ERROR "ATM|ATMW=ON and S2S|S2SW=ON are incompatible, ABORT!") -endif() - -if(DATM AND (S2S OR S2SW)) - message(FATAL_ERROR "DATM=ON and S2S|S2SW=ON are incompatible, ABORT!") -endif() - -if(DATM AND (ATM OR ATMW)) - message(FATAL_ERROR "DATM=ON and ATM|ATMW=ON are incompatible, ABORT!") -endif() - -############################################################################### -### Enable Components in Supported Applications -############################################################################### -if(ATM OR ATMW) +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(ATMW) + if(APP MATCHES "ATMW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in Atmosphere with Waves mode") else() @@ -29,27 +14,22 @@ if(ATM OR ATMW) return() endif() -if(DATM_NEMS) +if(APP MATCHES "^(DATM|DATM_NEMS)$") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) - set(NEMSdatm ON CACHE BOOL "Enable NEMS DataAtm" 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) - message("Configuring UFS app in Data Atmosphere mode") - return() -endif() - -if(DATM) - set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) - set(CDEPS ON CACHE BOOL "Enable CDEPS" 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) - message("Configuring UFS app in Data Atmosphere mode") + 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() return() endif() -if(S2S OR S2SW) +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) @@ -57,7 +37,7 @@ if(S2S OR S2SW) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) set(32BIT OFF CACHE BOOL "Disable 32BIT" FORCE) - if(S2SW) + if(APP MATCHES "S2SW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in S2S with Waves mode") else() @@ -65,8 +45,3 @@ if(S2S OR S2SW) endif() return() endif() - -############################################################################### -### The application you are building is unsupported, proceed with caution! -############################################################################### -message("Configuring UFS app in an unsupported configuration!") diff --git a/tests/compile.sh b/tests/compile.sh index 8d86f38fe6..9b565d9a86 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 @@ -132,24 +132,29 @@ fi set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"ATM=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DATM=Y" +if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then + echo "MAKE_OPT = ${MAKE_OPT}" + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" fi -if [[ "${MAKE_OPT}" == *"ATMW=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DATMW=Y" +if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" fi -if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" +if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"S2SW=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DS2SW=Y" +if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"DATM_NEMS=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM_NEMS=Y" +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}") diff --git a/tests/rt.conf b/tests/rt.conf index 6b42650f1c..e697698e3d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # PROD tests # ################################################################################################################################################################################### -COMPILE | ATM=Y 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 | ATMW=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +COMPILE | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp 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 | ATM=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y RUN | fv3_multigases | | fv3 | -COMPILE | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - 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 | S2SW=Y 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 | +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 | S2S=Y 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 | +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_NEMS=Y +COMPILE | APP=DATM_NEMS 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_NEMS=Y +COMPILE | APP=DATM_NEMS RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 9aa97145b6..42eb3b230c 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,4 +1,4 @@ -COMPILE | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + 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 | S2SW=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + 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 | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + 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 | S2SW=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | + 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 | S2SW=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | + 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 79b11dbb3b..fd61d05ed3 100644 --- a/tests/rt_ccpp_dev.conf +++ b/tests/rt_ccpp_dev.conf @@ -4,7 +4,7 @@ # CCPP REPRO tests # ############################################################################################################################################################ -COMPILE | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 c7135e9dca..d1bac460d1 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,10 +2,10 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp | | fv3 | +COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | -COMPILE | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | ATM=Y 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 | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | ################################################################################################################################################################## # Data Atmosphere tests # ################################################################################################################################################################## -COMPILE | DATM_NEMS=Y | | fv3 | +COMPILE | APP=DATM_NEMS | | fv3 | From 81aaf0a3fc8dcfb4f989c02ef64e47942a1ab093 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 19 Mar 2021 22:36:47 -0400 Subject: [PATCH 18/23] remove file added by error --- tests/rt_compile.conf | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 tests/rt_compile.conf diff --git a/tests/rt_compile.conf b/tests/rt_compile.conf deleted file mode 100644 index b7dd265c55..0000000000 --- a/tests/rt_compile.conf +++ /dev/null @@ -1,20 +0,0 @@ -COMPILE | ATM=Y SUITES=FV3_GFS_2017 | | fv3 | -COMPILE | ATMW=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -COMPILE | ATM=Y SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -COMPILE | ATM=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y | | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | -COMPILE | ATM=Y 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 | ATM=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16_RRTMGP | | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_v16_csawmg | | fv3 | -COMPILE | ATM=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | -COMPILE | ATM=Y SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras | | fv3 | -COMPILE | ATM=Y DEBUG=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v15p2_RRTMGP,FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | -COMPILE | ATM=Y 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 | ATM=Y SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | -COMPILE | S2S=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | -COMPILE | S2SW=Y 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 | -COMPILE | S2S=Y 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 | -COMPILE | DATM_NEMS=Y -COMPILE | DATM_NEMS=Y From 7fc0a36012840bfd576c2b7b338b67f23185121d Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 19 Mar 2021 23:07:55 -0400 Subject: [PATCH 19/23] missed echoing STOCH_PHYS. tidying --- CMakeLists.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21bff7cfd0..2791754956 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,6 +37,7 @@ 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") @@ -89,27 +90,24 @@ message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") +message("") # Configure selected application specific components -message("") include(cmake/configure_apps.cmake) -message("") # Components message("") message("FMS .............. ${FMS}") -message("CDEPS ............ ${CDEPS}") -message("CMEPS ............ ${CMEPS}") message("FV3 .............. ${FV3}") message("MOM6 ............. ${MOM6}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") -message("NEMSdatm ......... ${NEMSdatm}") message("STOCH_PHYS ....... ${STOCH_PHYS}") -message("") +message("NEMSdatm ......... ${NEMSdatm}") +message("CDEPS ............ ${CDEPS}") +message("CMEPS ............ ${CMEPS}") # Options that applications reset -message("") message("32BIT ............ ${32BIT}") message("") From 3e46f5b7050e18884a0bed13691823ad88d443c3 Mon Sep 17 00:00:00 2001 From: Phil Pegion <38869668+pjpegion@users.noreply.github.com> Date: Sun, 21 Mar 2021 11:11:40 -0600 Subject: [PATCH 20/23] Stoch updates (#372) Addition of stochastic physics restarts in netCDF format that will be written at the restart interval, and at end of run. Addition of stochastic cloud perturbation and microphysics perturbations for SPPT. Clean up of stochastic physics code. Co-authored-by: mlee03 Co-authored-by: MinsukJi-NOAA Co-authored-by: Brian Curtis --- CMakeLists.txt | 71 +- FMS | 2 +- FV3 | 2 +- fms_files.cmake | 92 -- modulefiles/macosx.gnu/fv3 | 6 +- modulefiles/macosx.gnu/fv3_debug | 6 +- stochastic_physics | 2 +- tests/RegressionTests_cheyenne.gnu.log | 198 ++-- tests/RegressionTests_cheyenne.intel.log | 648 +++++------ tests/RegressionTests_gaea.intel.log | 618 +++++------ tests/RegressionTests_hera.gnu.log | 198 ++-- tests/RegressionTests_hera.intel.log | 680 ++++++------ tests/RegressionTests_jet.intel.log | 599 +++++------ tests/RegressionTests_orion.intel.log | 1250 ++++++++++++---------- tests/ci/ci.test | 2 +- tests/parm/input.mom6_ccpp.nml.IN | 3 - tests/rt.conf | 2 +- tests/rt.sh | 4 +- tests/utest | 10 +- tests/utest.bld | 44 +- 20 files changed, 2186 insertions(+), 2251 deletions(-) delete mode 100644 fms_files.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 67ca10847c..203a5add81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,56 +139,27 @@ endif() ############################################################################### ### FMS ############################################################################### -include(fms_files.cmake) -add_library(fms ${fms_src_files} ${fms_headers}) - -list(APPEND _fms_defs_public use_libMPI - use_netCDF - GFS_PHYS - INTERNAL_FILE_NML) -if(QUAD_PRECISION) - list(APPEND _fms_defs_public ENABLE_QUAD_PRECISION) -endif() +set(GFS_PHYS ON CACHE BOOL "Enable GFS Physics") +if(NOT 32BIT) + set(64BIT ON CACHE BOOL "Enable 64-bit") -# check gettid -include(CheckFunctionExists) -check_function_exists(gettid HAVE_GETTID) -if(HAVE_GETTID) - list(APPEND _fms_defs_public HAVE_GETTID) endif() - -target_compile_definitions(fms PUBLIC "${_fms_defs_public}") - -if(32BIT) - list(APPEND _fms_defs_private OVERLOAD_R4 - OVERLOAD_R8) +if(NOT QUAD_PRECISION) + set(ENABLE_QUAD_PRECISION OFF CACHE BOOL "Enable Quad-precision") endif() -target_compile_definitions(fms PRIVATE "${_fms_defs_private}") - -target_include_directories(fms PUBLIC $ - $ - $ - $ - $) -target_include_directories(fms INTERFACE - $ - $) -target_link_libraries(fms PUBLIC MPI::MPI_Fortran - NetCDF::NetCDF_Fortran) -if(OpenMP_Fortran_FOUND) - target_link_libraries(fms PRIVATE OpenMP::OpenMP_Fortran) +add_subdirectory(FMS) + +if(32BIT) + add_library(fms ALIAS fms_r4) +else() + add_library(fms ALIAS fms_r8) endif() -set_target_properties(fms PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS) -set_target_properties(fms PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod) -set_target_properties(fms PROPERTIES PUBLIC_HEADER "${fms_headers}" ) ############################################################################### ### stochastic_physics ############################################################################### -if(NOT DATM) add_subdirectory(stochastic_physics) -endif() ############################################################################### ### FV3 or Data Atmosphere @@ -291,7 +262,7 @@ endif() target_include_directories(ufs INTERFACE $ $) -target_link_libraries(ufs PUBLIC esmf) +target_link_libraries(ufs PUBLIC esmf stochastic_physics) if(DATM) target_link_libraries(ufs PUBLIC datatm) @@ -304,7 +275,7 @@ if(S2S) FRONT_CICE6=ice_comp_nuopc CMEPS FRONT_CMEPS=MED) - add_dependencies(ufs mom6 cice cmeps) + add_dependencies(ufs mom6 cice cmeps stochastic_physics) target_link_libraries(ufs PUBLIC mom6 cice cmeps) @@ -336,26 +307,14 @@ if(DATM) endif() target_link_libraries(ufs_model PRIVATE ufs esmf - NetCDF::NetCDF_Fortran - ${MKL_LIB}) + NetCDF::NetCDF_Fortran) ############################################################################### ### Install ############################################################################### -install( - TARGETS fms - EXPORT fms-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - PUBLIC_HEADER DESTINATION include ) - -install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) - -install(EXPORT fms-config - DESTINATION lib/cmake -) install( TARGETS ufs + EXPORT ufs-config LIBRARY DESTINATION lib ARCHIVE DESTINATION lib) diff --git a/FMS b/FMS index 0707f2c027..d4724fa36e 160000 --- a/FMS +++ b/FMS @@ -1 +1 @@ -Subproject commit 0707f2c0279a9efd12cdbf0133c1e09435766928 +Subproject commit d4724fa36ead10bfd818b7e3092a4824eff7f323 diff --git a/FV3 b/FV3 index dbaff1cbfb..07b00a9a84 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit dbaff1cbfb2764f2ffa605d20d3c1a99c44b01fe +Subproject commit 07b00a9a84782aa95a18cc8a9c91ba31a76ea619 diff --git a/fms_files.cmake b/fms_files.cmake deleted file mode 100644 index 81e3cfb381..0000000000 --- a/fms_files.cmake +++ /dev/null @@ -1,92 +0,0 @@ -list(APPEND fms_src_files - FMS/affinity/fms_affinity.F90 - FMS/amip_interp/amip_interp.F90 - FMS/astronomy/astronomy.F90 - FMS/axis_utils/axis_utils.F90 - FMS/axis_utils/axis_utils2.F90 - FMS/block_control/block_control.F90 - FMS/column_diagnostics/column_diagnostics.F90 - FMS/constants/constants.F90 - FMS/coupler/atmos_ocean_fluxes.F90 - FMS/coupler/coupler_types.F90 - FMS/coupler/ensemble_manager.F90 - FMS/data_override/data_override.F90 - FMS/data_override/get_grid_version_fms2io.F90 - FMS/data_override/get_grid_version_mpp.F90 - FMS/diag_integral/diag_integral.F90 - FMS/diag_manager/diag_axis.F90 - FMS/diag_manager/diag_data.F90 - FMS/diag_manager/diag_grid.F90 - FMS/diag_manager/diag_manager.F90 - FMS/diag_manager/diag_output.F90 - FMS/diag_manager/diag_table.F90 - FMS/diag_manager/diag_util.F90 - FMS/drifters/cloud_interpolator.F90 - FMS/drifters/drifters.F90 - FMS/drifters/drifters_comm.F90 - FMS/drifters/drifters_core.F90 - FMS/drifters/drifters_input.F90 - FMS/drifters/drifters_io.F90 - FMS/drifters/quicksort.F90 - FMS/exchange/stock_constants.F90 - FMS/exchange/xgrid.F90 - FMS/field_manager/field_manager.F90 - FMS/field_manager/fm_util.F90 - FMS/fms/fms.F90 - FMS/fms/fms_io.F90 - FMS/fms2_io/blackboxio.F90 - FMS/fms2_io/fms_io_utils.F90 - FMS/fms2_io/fms_netcdf_domain_io.F90 - FMS/fms2_io/fms_netcdf_unstructured_domain_io.F90 - FMS/fms2_io/fms2_io.F90 - FMS/fms2_io/netcdf_io.F90 - FMS/horiz_interp/horiz_interp.F90 - FMS/horiz_interp/horiz_interp_bicubic.F90 - FMS/horiz_interp/horiz_interp_bilinear.F90 - FMS/horiz_interp/horiz_interp_conserve.F90 - FMS/horiz_interp/horiz_interp_spherical.F90 - FMS/horiz_interp/horiz_interp_type.F90 - FMS/interpolator/interpolator.F90 - FMS/memutils/memutils.F90 - FMS/monin_obukhov/monin_obukhov.F90 - FMS/monin_obukhov/monin_obukhov_inter.F90 - FMS/mosaic/gradient.F90 - FMS/mosaic/grid.F90 - FMS/mosaic/mosaic.F90 - FMS/mosaic/mosaic2.F90 - FMS/mpp/mpp.F90 - FMS/mpp/mpp_data.F90 - FMS/mpp/mpp_domains.F90 - FMS/mpp/mpp_efp.F90 - FMS/mpp/mpp_io.F90 - FMS/mpp/mpp_memutils.F90 - FMS/mpp/mpp_parameter.F90 - FMS/mpp/mpp_utilities.F90 - FMS/platform/platform.F90 - FMS/random_numbers/mersennetwister.F90 - FMS/random_numbers/random_numbers.F90 - FMS/sat_vapor_pres/sat_vapor_pres.F90 - FMS/sat_vapor_pres/sat_vapor_pres_k.F90 - FMS/time_interp/time_interp.F90 - FMS/time_interp/time_interp_external.F90 - FMS/time_interp/time_interp_external2.F90 - FMS/time_manager/get_cal_time.F90 - FMS/time_manager/time_manager.F90 - FMS/topography/gaussian_topog.F90 - FMS/topography/topography.F90 - FMS/tracer_manager/tracer_manager.F90 - FMS/tridiagonal/tridiagonal.F90 - - FMS/affinity/affinity.c - FMS/mpp/mpp_memuse.c - FMS/mosaic/create_xgrid.c - FMS/mosaic/gradient_c2l.c - FMS/mosaic/interp.c - FMS/mosaic/mosaic_util.c - FMS/mosaic/read_mosaic.c -) - -list( APPEND fms_headers -FMS/include/fms_platform.h -FMS/include/file_version.h -) diff --git a/modulefiles/macosx.gnu/fv3 b/modulefiles/macosx.gnu/fv3 index f99e07ad70..006e695d66 100755 --- a/modulefiles/macosx.gnu/fv3 +++ b/modulefiles/macosx.gnu/fv3 @@ -39,6 +39,6 @@ fi ## ## Intel MKL library ## -export MKL_DIR=${MKL_DIR:-/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl} -export MKL_INC="-m64 -I${MKL_DIR}/include" -export MKL_LIB="-L${MKL_DIR}/lib -Wl,-rpath,${MKL_DIR}/lib -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl" +#export MKL_DIR=${MKL_DIR:-/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl} +#export MKL_INC="-m64 -I${MKL_DIR}/include" +#export MKL_LIB="-L${MKL_DIR}/lib -Wl,-rpath,${MKL_DIR}/lib -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl" diff --git a/modulefiles/macosx.gnu/fv3_debug b/modulefiles/macosx.gnu/fv3_debug index f99e07ad70..006e695d66 100755 --- a/modulefiles/macosx.gnu/fv3_debug +++ b/modulefiles/macosx.gnu/fv3_debug @@ -39,6 +39,6 @@ fi ## ## Intel MKL library ## -export MKL_DIR=${MKL_DIR:-/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl} -export MKL_INC="-m64 -I${MKL_DIR}/include" -export MKL_LIB="-L${MKL_DIR}/lib -Wl,-rpath,${MKL_DIR}/lib -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl" +#export MKL_DIR=${MKL_DIR:-/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl} +#export MKL_INC="-m64 -I${MKL_DIR}/include" +#export MKL_LIB="-L${MKL_DIR}/lib -Wl,-rpath,${MKL_DIR}/lib -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl" diff --git a/stochastic_physics b/stochastic_physics index c39bb8a09a..d0e62eb299 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit c39bb8a09a196a9dd17ea3fb52152b61ef2881ae +Subproject commit d0e62eb2996b363862fd543fe9ec910bd75bf004 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index fb18913ac9..3bf1877863 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:01:40 MDT 2021 +Thu Mar 18 13:19:36 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfdlmp +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 Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,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 = 73.616751 +The total amount of wall time = 72.427329 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2 +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 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +119,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 = 137.489110 +The total amount of wall time = 136.941182 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16 +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 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,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 = 188.023624 +The total amount of wall time = 185.465164 Test 003 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_restart +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 Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,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 = 96.352609 +The total amount of wall time = 95.241565 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_stochy +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 Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,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 = 87.995187 +The total amount of wall time = 89.065852 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_flake +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 Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,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 = 143.045845 +The total amount of wall time = 144.758066 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP +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 Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +468,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 = 251.776369 +The total amount of wall time = 233.688023 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP +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 Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,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 = 256.904365 +The total amount of wall time = 262.519106 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd +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 Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,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.093742 +The total amount of wall time = 352.206210 Test 009 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson +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 Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,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.850767 +The total amount of wall time = 166.159439 Test 010 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero +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 Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +776,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 = 157.963503 +The total amount of wall time = 159.091610 Test 011 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta +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 Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +847,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.093884 +The total amount of wall time = 181.064238 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson +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 Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,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 = 258.319014 +The total amount of wall time = 243.144962 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson +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 Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +939,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 = 446.279773 +The total amount of wall time = 460.237050 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1 +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 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,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 = 299.376887 +The total amount of wall time = 298.148424 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_warmstart +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 Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,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.457903 +The total amount of wall time = 303.021790 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras +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 Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1140,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.499220 +The total amount of wall time = 167.885537 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_control_debug +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 Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1173,13 @@ Checking test 018 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 76.607637 +The total amount of wall time = 77.618175 Test 018 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_regional_control_debug +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 Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1187,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 = 188.760185 +The total amount of wall time = 186.595065 Test 019 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_rrfs_v1beta_debug +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 Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1258,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 = 110.901097 +The total amount of wall time = 109.971979 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gsd_debug +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 Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1329,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.633345 +The total amount of wall time = 116.480241 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_debug +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 Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1400,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 = 185.570727 +The total amount of wall time = 186.048865 Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_thompson_no_aero_debug +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 Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,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 = 179.866162 +The total amount of wall time = 177.982636 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_debug +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 Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,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 = 134.004125 +The total amount of wall time = 137.547670 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_debug +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 Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1613,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 = 97.658277 +The total amount of wall time = 96.621232 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v15p2_RRTMGP_debug +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 Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,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 = 196.654978 +The total amount of wall time = 198.750607 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_RRTMGP_debug +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 Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,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 = 199.520481 +The total amount of wall time = 205.621718 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_multigases +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 Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,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 = 176.551824 +The total amount of wall time = 174.473162 Test 028 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_HAFS_v0_hwrf_thompson_debug +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 Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1903,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 = 113.111862 +The total amount of wall time = 112.451863 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_esg_HAFS_v0_hwrf_thompson_debug +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 Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1924,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 = 215.358006 +The total amount of wall time = 216.026078 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfsv16_ugwpv1_debug +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 Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1989,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 = 308.982518 +The total amount of wall time = 305.011925 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_1787/fv3_gfs_v16_ras_debug +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 Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2060,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.077223 +The total amount of wall time = 172.520721 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 15:22:05 MDT 2021 -Elapsed time: 00h:20m:25s. Have a nice day! +Thu Mar 18 13:37:55 MDT 2021 +Elapsed time: 00h:18m:19s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 889cd4d3ee..f4158365a7 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:00:15 MDT 2021 +Thu Mar 18 13:19:41 MDT 2021 Start Regression test -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control +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 Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,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.977801 +The total amount of wall time = 47.958572 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_decomp +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 Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,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.404157 +The total amount of wall time = 48.067631 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_2threads +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 Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,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 = 107.164876 +The total amount of wall time = 106.388280 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_restart +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 Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,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.442370 +The total amount of wall time = 22.917253 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_read_inc +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 Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,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.585103 +The total amount of wall time = 47.473873 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_esmf +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 Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,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 = 123.916570 +The total amount of wall time = 122.527143 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf +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 Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,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 = 45.465214 +The total amount of wall time = 46.852420 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_netcdf_parallel +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 Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -451,9 +451,9 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -487,13 +487,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.184444 +The total amount of wall time = 47.080210 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGlatlon_netcdf +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 Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,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 = 46.662453 +The total amount of wall time = 47.236247 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio +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 Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,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 = 46.507193 +The total amount of wall time = 47.047256 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_wrtGauss_nemsio_c192 +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 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.393899 +The total amount of wall time = 123.070683 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stochy +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 Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,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 = 55.603605 +The total amount of wall time = 54.625384 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_ca +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 Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,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.020025 +The total amount of wall time = 29.444011 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lndp +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 Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,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 = 50.850419 +The total amount of wall time = 52.987457 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_iau +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 Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,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 = 46.657869 +The total amount of wall time = 45.283016 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_lheatstrg +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 Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,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.329600 +The total amount of wall time = 46.276234 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_multigases_repro +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 Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,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 = 109.322209 +The total amount of wall time = 111.440695 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_32bit +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 Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1123,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.080135 +The total amount of wall time = 40.434938 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched +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 Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,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 = 330.931597 +The total amount of wall time = 324.010684 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest +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 Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1252,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 = 343.913204 +The total amount of wall time = 352.560075 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control +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 Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,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 = 716.261602 +The total amount of wall time = 714.905067 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_restart +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 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 = 391.516587 +The total amount of wall time = 382.830994 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt +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 Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 740.845723 +The total amount of wall time = 721.119525 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_hafs +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 Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,27 +1310,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 737.470533 +The total amount of wall time = 717.041861 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_quilt_netcdf_parallel +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 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 dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -The total amount of wall time = 741.687853 +The total amount of wall time = 717.890376 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp +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 Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,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 = 51.724523 +The total amount of wall time = 52.663537 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_gwd +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 Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,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.482174 +The total amount of wall time = 52.955815 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_noahmp +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 Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,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 = 52.864785 +The total amount of wall time = 53.663012 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_csawmg +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 Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,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 = 137.691614 +The total amount of wall time = 140.600685 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmf +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 Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,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.102946 +The total amount of wall time = 59.721545 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_satmedmfq +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 Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,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 = 58.919454 +The total amount of wall time = 59.607443 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmp_32bit +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 Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,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 = 41.538693 +The total amount of wall time = 42.216585 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfdlmprad_32bit_post +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 Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,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 = 72.990521 +The total amount of wall time = 73.153192 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_cpt +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 Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,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 = 324.277909 +The total amount of wall time = 328.693268 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd +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 Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,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 = 200.510933 +The total amount of wall time = 198.976083 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rap +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 Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,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 = 102.523415 +The total amount of wall time = 101.175017 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_hrrr +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 Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,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.593038 +The total amount of wall time = 106.708498 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson +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 Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,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 = 96.257675 +The total amount of wall time = 94.770375 Test 038 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero +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 Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,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.158832 +The total amount of wall time = 91.204857 Test 039 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta +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 Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,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 = 108.271884 +The total amount of wall time = 107.160438 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16 +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 Checking test 041 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2326,13 +2326,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 = 130.052721 +The total amount of wall time = 129.958834 Test 041 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_restart +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 Checking test 042 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2379,13 +2379,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 = 69.465290 +The total amount of wall time = 67.685012 Test 042 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_stochy +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 Checking test 043 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2450,13 +2450,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 = 62.916099 +The total amount of wall time = 61.220929 Test 043 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP +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 Checking test 044 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,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 = 220.380142 +The total amount of wall time = 225.546934 Test 044 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_c192L127 +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 Checking test 045 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2586,13 +2586,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 = 834.952485 +The total amount of wall time = 831.881649 Test 045 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_2thrd +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 Checking test 046 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2657,13 +2657,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 = 466.870817 +The total amount of wall time = 464.680179 Test 046 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gocart_clm +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 Checking test 047 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2708,13 +2708,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.031058 +The total amount of wall time = 58.082096 Test 047 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_flake +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 Checking test 048 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2779,13 +2779,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 = 106.579599 +The total amount of wall time = 117.009840 Test 048 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson +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 Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2850,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 = 196.376108 +The total amount of wall time = 181.728184 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson +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 Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2871,13 +2871,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 = 323.367695 +The total amount of wall time = 318.936857 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1 +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 Checking test 051 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2936,13 +2936,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 = 215.379700 +The total amount of wall time = 216.580824 Test 051 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_warmstart +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 Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3001,13 +3001,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 = 218.012111 +The total amount of wall time = 215.713858 Test 052 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras +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 Checking test 053 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3072,13 +3072,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.689935 +The total amount of wall time = 115.663476 Test 053 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_debug +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 Checking test 054 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3143,13 +3143,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 = 245.407283 +The total amount of wall time = 244.322214 Test 054 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_debug +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 Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3214,13 +3214,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.404620 +The total amount of wall time = 190.266804 Test 055 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v15p2_RRTMGP_debug +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 Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3285,13 +3285,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 = 384.474234 +The total amount of wall time = 386.139272 Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_RRTMGP_debug +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 Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3356,13 +3356,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 = 393.114772 +The total amount of wall time = 391.135094 Test 057 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_regional_control_debug +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 Checking test 058 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3370,13 +3370,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 = 366.899380 +The total amount of wall time = 367.762370 Test 058 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_control_debug +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 Checking test 059 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3403,13 +3403,13 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 146.618466 +The total amount of wall time = 147.442953 Test 059 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_stretched_nest_debug +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 Checking test 060 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3426,13 +3426,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 = 432.998634 +The total amount of wall time = 433.260613 Test 060 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_debug +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 Checking test 061 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3497,13 +3497,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.755184 +The total amount of wall time = 216.558308 Test 061 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gsd_diag3d_debug +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 Checking test 062 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3568,13 +3568,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 = 261.555642 +The total amount of wall time = 262.674351 Test 062 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_debug +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 Checking test 063 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3639,13 +3639,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 = 360.248777 +The total amount of wall time = 359.965520 Test 063 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_thompson_no_aero_debug +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 Checking test 064 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3710,13 +3710,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 = 348.057383 +The total amount of wall time = 347.570263 Test 064 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_rrfs_v1beta_debug +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 Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3781,13 +3781,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.467344 +The total amount of wall time = 209.696788 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_HAFS_v0_hwrf_thompson_debug +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 Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3852,13 +3852,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 = 223.594519 +The total amount of wall time = 222.971545 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_esg_HAFS_v0_hwrf_thompson_debug +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 Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3873,13 +3873,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 = 397.519750 +The total amount of wall time = 396.434516 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfsv16_ugwpv1_debug +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 Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3938,13 +3938,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 = 604.477397 +The total amount of wall time = 602.823082 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/fv3_gfs_v16_ras_debug +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 Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4009,13 +4009,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 = 343.084605 +The total amount of wall time = 342.964276 Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control +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 Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4065,13 +4065,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 = 94.330202 +The total amount of wall time = 99.168593 Test 070 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart +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 Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4121,13 +4121,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 = 54.509987 +The total amount of wall time = 55.667218 Test 071 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac +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 Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4177,13 +4177,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 = 97.537951 +The total amount of wall time = 95.002092 Test 072 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac +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 Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4233,13 +4233,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.634580 +The total amount of wall time = 54.074622 Test 073 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_2threads +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 Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4289,13 +4289,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 = 260.143343 +The total amount of wall time = 259.441104 Test 074 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_decomp +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 Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4345,13 +4345,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.188274 +The total amount of wall time = 96.105468 Test 075 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_satmedmf +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 Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4401,13 +4401,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 = 95.901729 +The total amount of wall time = 93.120103 Test 076 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_ca +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 Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4457,13 +4457,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 = 95.998523 +The total amount of wall time = 96.397273 Test 077 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c192 +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 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4513,13 +4513,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 = 409.876274 +The total amount of wall time = 401.073510 Test 078 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c192 +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 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4569,13 +4569,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 = 288.008984 +The total amount of wall time = 289.528245 Test 079 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c192 +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 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4625,13 +4625,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 = 408.893341 +The total amount of wall time = 410.274779 Test 080 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c192 +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 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4681,13 +4681,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 = 287.403359 +The total amount of wall time = 292.162685 Test 081 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_c384 +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 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4740,13 +4740,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 = 1600.512764 +The total amount of wall time = 1575.556051 Test 082 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_c384 +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 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4799,13 +4799,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 = 839.420761 +The total amount of wall time = 842.742485 Test 083 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_controlfrac_c384 +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 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4858,13 +4858,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 = 1591.439482 +The total amount of wall time = 1588.019550 Test 084 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restartfrac_c384 +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 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4917,13 +4917,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 = 832.477485 +The total amount of wall time = 828.257714 Test 085 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark +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 Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4976,13 +4976,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 = 910.591583 +The total amount of wall time = 911.514819 Test 086 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmark +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 Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5035,13 +5035,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 = 492.644072 +The total amount of wall time = 493.418354 Test 087 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac +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 Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5094,13 +5094,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 = 942.768192 +The total amount of wall time = 915.905406 Test 088 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac +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 Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5153,13 +5153,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 = 490.677498 +The total amount of wall time = 491.543561 Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_v16 +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 Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5212,13 +5212,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 = 1619.458789 +The total amount of wall time = 1639.823971 Test 090 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_restart_bmarkfrac_v16 +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 Checking test 091 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5271,13 +5271,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 = 876.345179 +The total amount of wall time = 867.579293 Test 091 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmark_wave +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 Checking test 092 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5333,13 +5333,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 = 1579.004437 +The total amount of wall time = 1525.613086 Test 092 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave +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 Checking test 093 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5395,13 +5395,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 = 1564.991092 +The total amount of wall time = 1582.184637 Test 093 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_bmarkfrac_wave_v16 +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 Checking test 094 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5456,13 +5456,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 = 1037.828157 +The total amount of wall time = 1046.151554 Test 094 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_control_wave +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 Checking test 095 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5515,13 +5515,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 = 813.195210 +The total amount of wall time = 808.664644 Test 095 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debug +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 Checking test 096 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5571,13 +5571,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 = 310.532484 +The total amount of wall time = 306.754779 Test 096 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/cpld_debugfrac +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 Checking test 097 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5627,73 +5627,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.075755 +The total amount of wall time = 305.357800 Test 097 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_cfsr +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 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.179644 +The total amount of wall time = 102.539148 Test 098 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_restart_cfsr +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 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 = 61.928971 +The total amount of wall time = 64.278362 Test 099 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_control_gefs +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 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 = 95.586184 +The total amount of wall time = 96.288880 Test 100 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_cfsr +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 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.097471 +The total amount of wall time = 98.708313 Test 101 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_bulk_gefs +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 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 = 96.061119 +The total amount of wall time = 93.157359 Test 102 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_cfsr +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 Checking test 103 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5702,13 +5702,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 = 391.962767 +The total amount of wall time = 377.314568 Test 103 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_mx025_gefs +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 Checking test 104 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5717,23 +5717,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 = 389.212635 +The total amount of wall time = 390.675084 Test 104 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /glade/scratch/heinzell/FV3_RT/rt_37681/datm_debug_cfsr +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 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 = 286.252814 +The total amount of wall time = 285.156024 Test 105 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 16:56:57 MDT 2021 -Elapsed time: 01h:56m:42s. Have a nice day! +Thu Mar 18 15:08:27 MDT 2021 +Elapsed time: 01h:48m:46s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b577ab36e8..88b99b94a6 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 15:32:59 EDT 2021 +Thu Mar 18 14:02:42 EDT 2021 Start Regression test -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control +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 Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,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 = 102.485374 +The total amount of wall time = 58.173925 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_decomp +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 Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,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 = 72.102716 +The total amount of wall time = 77.669375 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_2threads +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 Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,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 = 56.773568 +The total amount of wall time = 57.378820 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_restart +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 Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,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 = 21.193289 +The total amount of wall time = 51.109880 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_read_inc +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 Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,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 = 41.536547 +The total amount of wall time = 69.991447 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_esmf +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 Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,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 = 130.242622 +The total amount of wall time = 118.327474 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf +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 Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,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 = 73.005528 +The total amount of wall time = 65.565436 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_netcdf_parallel +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 Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,13 +487,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 = 62.012410 +The total amount of wall time = 118.454508 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGlatlon_netcdf +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 Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,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 = 67.968061 +The total amount of wall time = 40.285961 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio +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 Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,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 = 92.057050 +The total amount of wall time = 69.056323 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_wrtGauss_nemsio_c192 +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 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,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 = 109.756012 +The total amount of wall time = 148.154030 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stochy +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 Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,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 = 48.024480 +The total amount of wall time = 53.992756 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_ca +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 Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,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.883390 +The total amount of wall time = 85.120918 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lndp +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 Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,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.541476 +The total amount of wall time = 55.435999 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_iau +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 Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,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 = 67.247275 +The total amount of wall time = 69.747564 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_lheatstrg +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 Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,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 = 69.819128 +The total amount of wall time = 39.620394 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_multigases_repro +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 Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,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 = 98.505522 +The total amount of wall time = 93.531560 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_32bit +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 Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,13 +1123,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 = 39.663154 +The total amount of wall time = 74.532582 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched +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 Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1182,13 +1182,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 = 332.390533 +The total amount of wall time = 303.026302 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest +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 Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1252,13 +1252,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 = 363.772572 +The total amount of wall time = 333.078656 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control +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 Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1266,25 +1266,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 = 671.029829 +The total amount of wall time = 672.510765 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_restart +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 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 = 368.134453 +The total amount of wall time = 367.874886 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt +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 Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 692.031281 +The total amount of wall time = 693.509027 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_hafs +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 Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 688.414005 +The total amount of wall time = 688.758619 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_quilt_netcdf_parallel +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 Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 691.740751 +The total amount of wall time = 692.256162 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp +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 Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1375,13 +1375,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 = 75.604375 +The total amount of wall time = 52.829686 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_gwd +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 Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1426,13 +1426,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 = 47.142772 +The total amount of wall time = 46.787917 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_noahmp +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 Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1477,13 +1477,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 = 46.771940 +The total amount of wall time = 47.856230 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_csawmg +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 Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1528,13 +1528,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 = 149.960741 +The total amount of wall time = 124.446355 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmf +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 Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1579,13 +1579,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 = 79.670296 +The total amount of wall time = 81.529699 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_satmedmfq +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 Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1630,13 +1630,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 = 51.506543 +The total amount of wall time = 53.994321 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmp_32bit +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 Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1681,13 +1681,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 = 69.878808 +The total amount of wall time = 45.413532 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfdlmprad_32bit_post +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 Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1736,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 = 77.396202 +The total amount of wall time = 109.161842 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_cpt +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 Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,13 +1793,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 = 288.651895 +The total amount of wall time = 295.095030 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd +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 Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,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 = 192.839897 +The total amount of wall time = 196.933302 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rap +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 Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,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 = 96.174180 +The total amount of wall time = 94.009529 Test 036 fv3_rap PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_hrrr +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 Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,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 = 116.171670 +The total amount of wall time = 127.447812 Test 037 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson +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 Checking test 038 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2101,13 +2101,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 = 90.491086 +The total amount of wall time = 118.252587 Test 038 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero +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 Checking test 039 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2172,13 +2172,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 = 85.585007 +The total amount of wall time = 143.020293 Test 039 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta +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 Checking test 040 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2243,13 +2243,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 = 120.673515 +The total amount of wall time = 102.168042 Test 040 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2 +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 Checking test 041 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,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.877411 +The total amount of wall time = 129.212450 Test 041 fv3_gfs_v15p2 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16 +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 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2397,13 +2397,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 = 145.397896 +The total amount of wall time = 116.339200 Test 042 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_restart +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 Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2450,13 +2450,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 = 60.858808 +The total amount of wall time = 75.138607 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_stochy +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 Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2521,13 +2521,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.493794 +The total amount of wall time = 82.378238 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP +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 Checking test 045 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2592,13 +2592,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 = 185.233689 +The total amount of wall time = 175.144328 Test 045 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP +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 Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,13 +2663,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 = 187.969992 +The total amount of wall time = 178.879686 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_c192L127 +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 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2728,13 +2728,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 = 733.570211 +The total amount of wall time = 720.183361 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_2thrd +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 Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,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 = 282.897222 +The total amount of wall time = 272.559145 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmg +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 Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2850,13 +2850,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 = 132.452220 +The total amount of wall time = 135.174201 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_csawmgt +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 Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2901,13 +2901,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.527004 +The total amount of wall time = 130.489969 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gocart_clm +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 Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2952,13 +2952,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 = 56.881795 +The total amount of wall time = 52.544351 Test 051 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_flake +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 Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3023,13 +3023,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 = 116.827340 +The total amount of wall time = 110.543339 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson +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 Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3094,13 +3094,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.380788 +The total amount of wall time = 161.699485 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson +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 Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3115,13 +3115,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 = 310.000662 +The total amount of wall time = 297.153337 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1 +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 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3180,13 +3180,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.639949 +The total amount of wall time = 184.919745 Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_warmstart +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 Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3245,13 +3245,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 = 212.647393 +The total amount of wall time = 196.396511 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras +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 Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3316,13 +3316,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 = 128.544225 +The total amount of wall time = 100.193398 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_debug +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 Checking test 058 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3387,13 +3387,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 = 235.095911 +The total amount of wall time = 227.452795 Test 058 fv3_gfs_v15p2_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_debug +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 Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3458,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 = 199.460156 +The total amount of wall time = 169.959918 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v15p2_RRTMGP_debug +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 Checking test 060 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,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 = 374.563559 +The total amount of wall time = 364.400285 Test 060 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_RRTMGP_debug +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 Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3600,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 = 381.595627 +The total amount of wall time = 373.305128 Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_regional_control_debug +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 Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3614,13 +3614,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 = 367.593608 +The total amount of wall time = 366.383020 Test 062 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_control_debug +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 Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3647,13 +3647,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.752562 +The total amount of wall time = 128.722369 Test 063 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_stretched_nest_debug +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 Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3670,13 +3670,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 = 436.695048 +The total amount of wall time = 437.496081 Test 064 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_debug +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 Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3741,13 +3741,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 = 227.074360 +The total amount of wall time = 196.713598 Test 065 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gsd_diag3d_debug +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 Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3812,13 +3812,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 = 224.236854 +The total amount of wall time = 217.697104 Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_debug +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 Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3883,13 +3883,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.075554 +The total amount of wall time = 340.529417 Test 067 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_thompson_no_aero_debug +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 Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3954,13 +3954,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 = 329.845920 +The total amount of wall time = 327.741274 Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_rrfs_v1beta_debug +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 Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4025,13 +4025,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 = 188.889830 +The total amount of wall time = 189.380950 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_HAFS_v0_hwrf_thompson_debug +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 Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4096,13 +4096,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 = 203.934209 +The total amount of wall time = 205.502659 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_esg_HAFS_v0_hwrf_thompson_debug +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 Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4117,13 +4117,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 = 376.024082 +The total amount of wall time = 375.463604 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfsv16_ugwpv1_debug +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 Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4182,13 +4182,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 = 606.656985 +The total amount of wall time = 583.120481 Test 072 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/fv3_gfs_v16_ras_debug +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 Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4253,13 +4253,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 = 350.677365 +The total amount of wall time = 322.960453 Test 073 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control +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 Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4309,13 +4309,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 = 120.457928 +The total amount of wall time = 96.066367 Test 074 cpld_control PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart +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 Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,13 +4365,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 = 50.718759 +The total amount of wall time = 80.916076 Test 075 cpld_restart PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac +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 Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4421,13 +4421,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 = 120.677719 +The total amount of wall time = 103.398861 Test 076 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac +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 Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4477,13 +4477,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 = 48.239807 +The total amount of wall time = 74.393433 Test 077 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_2threads +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 Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4533,13 +4533,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 = 147.067040 +The total amount of wall time = 132.871286 Test 078 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_decomp +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 Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4589,13 +4589,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 = 90.314914 +The total amount of wall time = 91.193769 Test 079 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_satmedmf +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 Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4645,13 +4645,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 = 91.042473 +The total amount of wall time = 90.195777 Test 080 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_ca +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 Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4701,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 = 121.001866 +The total amount of wall time = 109.883565 Test 081 cpld_ca PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c192 +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 Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4757,13 +4757,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 = 407.757892 +The total amount of wall time = 411.594599 Test 082 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c192 +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 Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4813,13 +4813,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 = 307.998223 +The total amount of wall time = 287.980100 Test 083 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c192 +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 Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4869,13 +4869,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 = 406.897365 +The total amount of wall time = 412.493013 Test 084 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c192 +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 Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4925,13 +4925,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 = 323.773810 +The total amount of wall time = 310.823757 Test 085 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_control_c384 +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 Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +4984,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 = 1521.958534 +The total amount of wall time = 1529.454292 Test 086 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_c384 +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 Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +5043,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 = 773.748556 +The total amount of wall time = 776.811556 Test 087 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_controlfrac_c384 +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 Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +5102,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 = 1532.686150 +The total amount of wall time = 1513.024381 Test 088 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restartfrac_c384 +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 Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5161,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 = 766.519234 +The total amount of wall time = 775.324726 Test 089 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmark +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 Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5220,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 = 881.501054 +The total amount of wall time = 891.937549 Test 090 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmark +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 Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5279,13 +5279,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 = 453.189565 +The total amount of wall time = 456.077376 Test 091 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_bmarkfrac +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 Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5338,13 +5338,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 = 859.231561 +The total amount of wall time = 877.482866 Test 092 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_restart_bmarkfrac +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 Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5397,13 +5397,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 = 447.852029 +The total amount of wall time = 458.318475 Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debug +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 Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5453,13 +5453,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 = 261.103150 +The total amount of wall time = 264.028391 Test 094 cpld_debug PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/cpld_debugfrac +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 Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5509,73 +5509,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 = 287.770841 +The total amount of wall time = 270.464542 Test 095 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_control_cfsr +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 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 = 97.793800 +The total amount of wall time = 99.886181 Test 096 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_restart_cfsr +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 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 = 69.735499 +The total amount of wall time = 62.137315 Test 097 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_control_gefs +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 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.204006 +The total amount of wall time = 95.549332 Test 098 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_bulk_cfsr +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 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 = 114.196027 +The total amount of wall time = 95.883983 Test 099 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_bulk_gefs +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 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 = 94.867519 +The total amount of wall time = 98.449456 Test 100 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_mx025_gefs +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 Checking test 101 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5584,23 +5584,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 = 386.640594 +The total amount of wall time = 448.897550 Test 101 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_34833/datm_debug_cfsr +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 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 = 253.835049 +The total amount of wall time = 247.861378 Test 102 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 16:50:27 EDT 2021 -Elapsed time: 01h:17m:29s. Have a nice day! +Thu Mar 18 15:28:43 EDT 2021 +Elapsed time: 01h:26m:02s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index d0c0d71d6c..9136f2f100 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Wed Mar 17 21:02:21 UTC 2021 +Fri Mar 19 16:32:02 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfdlmp +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 Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -48,13 +48,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 = 230.221815 + 0: The total amount of wall time = 237.471537 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2 +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 Checking test 002 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,13 +119,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 = 575.623872 + 0: The total amount of wall time = 675.469331 Test 002 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16 +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 Checking test 003 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -202,13 +202,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 = 599.253044 + 0: The total amount of wall time = 644.481194 Test 003 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_restart +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 Checking test 004 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -255,13 +255,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 = 298.897952 + 0: The total amount of wall time = 293.565687 Test 004 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_stochy +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 Checking test 005 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -326,13 +326,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 = 408.934031 + 0: The total amount of wall time = 403.710703 Test 005 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_flake +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 Checking test 006 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -397,13 +397,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 = 651.896884 + 0: The total amount of wall time = 674.892521 Test 006 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP +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 Checking test 007 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -468,13 +468,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 = 718.716919 + 0: The total amount of wall time = 758.831205 Test 007 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP +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 Checking test 008 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -539,13 +539,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 = 743.681647 + 0: The total amount of wall time = 764.434046 Test 008 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd +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 Checking test 009 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -634,13 +634,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 = 881.051197 + 0: The total amount of wall time = 846.078479 Test 009 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson +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 Checking test 010 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -705,13 +705,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 = 398.364665 + 0: The total amount of wall time = 430.229886 Test 010 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero +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 Checking test 011 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -776,13 +776,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 = 399.138654 + 0: The total amount of wall time = 387.260332 Test 011 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta +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 Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -847,13 +847,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 = 399.585865 + 0: The total amount of wall time = 443.446092 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson +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 Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,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 = 628.560364 + 0: The total amount of wall time = 640.029604 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson +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 Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -939,13 +939,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 = 443.604429 + 0: The total amount of wall time = 450.842489 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1 +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 Checking test 015 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1004,13 +1004,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 = 908.532238 + 0: The total amount of wall time = 901.591014 Test 015 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_warmstart +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 Checking test 016 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1069,13 +1069,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 = 923.398587 + 0: The total amount of wall time = 917.105238 Test 016 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras +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 Checking test 017 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1140,13 +1140,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 = 608.975806 + 0: The total amount of wall time = 574.592917 Test 017 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_control_debug +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 Checking test 018 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1173,13 +1173,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 = 88.625162 + 0: The total amount of wall time = 84.997363 Test 018 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_regional_control_debug +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 Checking test 019 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1187,13 +1187,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 = 168.838854 + 0: The total amount of wall time = 172.290542 Test 019 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_rrfs_v1beta_debug +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 Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1258,13 +1258,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 = 120.986153 + 0: The total amount of wall time = 118.870100 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gsd_debug +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 Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1329,13 +1329,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 = 122.324768 + 0: The total amount of wall time = 121.813272 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_debug +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 Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1400,13 +1400,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 = 203.342459 + 0: The total amount of wall time = 200.768902 Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_thompson_no_aero_debug +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 Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1471,13 +1471,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 = 197.439857 + 0: The total amount of wall time = 192.773701 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_debug +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 Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,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 = 275.837348 + 0: The total amount of wall time = 296.726170 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_debug +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 Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1613,13 +1613,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 = 132.082633 + 0: The total amount of wall time = 127.074768 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v15p2_RRTMGP_debug +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 Checking test 026 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,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 = 325.547437 + 0: The total amount of wall time = 327.302773 Test 026 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_RRTMGP_debug +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 Checking test 027 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,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 = 311.887452 + 0: The total amount of wall time = 354.534815 Test 027 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_multigases +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 Checking test 028 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1832,13 +1832,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 = 441.145451 + 0: The total amount of wall time = 420.499654 Test 028 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_HAFS_v0_hwrf_thompson_debug +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 Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1903,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 = 133.935288 + 0: The total amount of wall time = 132.677680 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_esg_HAFS_v0_hwrf_thompson_debug +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 Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,13 +1924,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 = 224.800982 + 0: The total amount of wall time = 227.660754 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfsv16_ugwpv1_debug +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 Checking test 031 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1989,13 +1989,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.575539 + 0: The total amount of wall time = 391.564759 Test 031 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_42883/fv3_gfs_v16_ras_debug +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 Checking test 032 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2060,11 +2060,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.115575 + 0: The total amount of wall time = 219.969998 Test 032 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 21:28:59 UTC 2021 -Elapsed time: 00h:26m:39s. Have a nice day! +Fri Mar 19 19:23:01 UTC 2021 +Elapsed time: 02h:50m:59s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index eeb5727b00..664939a3ff 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 20:53:57 UTC 2021 +Fri Mar 19 15:56:08 UTC 2021 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control +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 Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,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.984777 + 0: The total amount of wall time = 39.366954 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_decomp +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 Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,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.778737 + 0: The total amount of wall time = 40.042910 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_2threads +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 Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -210,13 +210,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.434267 + 0: The total amount of wall time = 41.787880 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_restart +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 Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -263,13 +263,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 = 18.898729 + 0: The total amount of wall time = 19.759936 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_read_inc +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 Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,13 +334,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.456500 + 0: The total amount of wall time = 36.350124 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_esmf +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 Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -385,13 +385,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 = 111.429769 + 0: The total amount of wall time = 109.973546 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf +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 Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -436,13 +436,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 = 38.158742 + 0: The total amount of wall time = 37.412712 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_netcdf_parallel +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 Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,7 +450,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -487,13 +487,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 = 48.224545 + 0: The total amount of wall time = 47.306747 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGlatlon_netcdf +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 Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -538,13 +538,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 = 37.504070 + 0: The total amount of wall time = 36.743012 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio +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 Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -589,13 +589,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.951184 + 0: The total amount of wall time = 36.238317 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c192 +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 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,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 = 95.861372 + 0: The total amount of wall time = 96.443016 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stochy +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 Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,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.037955 + 0: The total amount of wall time = 41.237996 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_ca +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 Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,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 = 26.848782 + 0: The total amount of wall time = 25.717263 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lndp +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 Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,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.912846 + 0: The total amount of wall time = 43.449009 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_iau +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 Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -924,13 +924,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.950534 + 0: The total amount of wall time = 36.585567 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_lheatstrg +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 Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -975,13 +975,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.682170 + 0: The total amount of wall time = 36.734224 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad +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 Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1027,13 +1027,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 = 647.779269 + 0: The total amount of wall time = 648.749887 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_atmwav +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 Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,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 = 795.365042 + 0: The total amount of wall time = 794.961885 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_wrtGauss_nemsio_c768 +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 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1131,13 +1131,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 = 674.318096 + 0: The total amount of wall time = 680.930308 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_multigases_repro +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 Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1208,13 +1208,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.344276 + 0: The total amount of wall time = 94.288968 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_32bit +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 Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1279,13 +1279,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 = 37.402951 + 0: The total amount of wall time = 35.895105 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched +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 Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,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 = 225.504355 + 0: The total amount of wall time = 219.544988 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest +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 Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1408,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 = 236.955976 + 0: The total amount of wall time = 241.675102 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control +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 Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1422,25 +1422,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 = 546.765215 + 0: The total amount of wall time = 548.190531 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_restart +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 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.067242 + 0: The total amount of wall time = 302.533953 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt +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 Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1451,13 +1451,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 574.553838 + 0: The total amount of wall time = 573.061955 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_hafs +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 Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1466,13 +1466,13 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 574.746857 + 0: The total amount of wall time = 572.216512 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_quilt_netcdf_parallel +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 Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1480,13 +1480,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 = 573.410316 + 0: The total amount of wall time = 576.056927 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp +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 Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1531,13 +1531,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.617745 + 0: The total amount of wall time = 42.336905 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_gwd +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 Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1582,13 +1582,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.644786 + 0: The total amount of wall time = 42.847183 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_noahmp +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 Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1633,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 = 42.722683 + 0: The total amount of wall time = 43.159585 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_csawmg +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 Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1684,13 +1684,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.398435 + 0: The total amount of wall time = 107.230208 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmf +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 Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1735,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 = 45.666010 + 0: The total amount of wall time = 47.557898 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_satmedmfq +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 Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1786,13 +1786,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.544278 + 0: The total amount of wall time = 45.282295 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmp_32bit +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 Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1837,13 +1837,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 = 40.948125 + 0: The total amount of wall time = 36.633248 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfdlmprad_32bit_post +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 Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +1892,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 = 74.076119 + 0: The total amount of wall time = 72.571621 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_cpt +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 Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1949,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 = 252.570449 + 0: The total amount of wall time = 253.276627 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd +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 Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,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.306962 + 0: The total amount of wall time = 177.512813 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rap +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 Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,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.164614 + 0: The total amount of wall time = 87.803927 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_hrrr +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 Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,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 = 95.376886 + 0: The total amount of wall time = 96.256129 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson +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 Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,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 = 83.532451 + 0: The total amount of wall time = 84.610243 Test 041 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero +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 Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2328,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 = 79.108371 + 0: The total amount of wall time = 80.016053 Test 042 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta +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 Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2399,13 +2399,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.567700 + 0: The total amount of wall time = 97.763308 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2 +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 Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2470,13 +2470,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 = 91.850977 + 0: The total amount of wall time = 93.635316 Test 044 fv3_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16 +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 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2553,13 +2553,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.515385 + 0: The total amount of wall time = 102.081819 Test 045 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_restart +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 Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2606,13 +2606,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 = 53.055160 + 0: The total amount of wall time = 54.023024 Test 046 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_stochy +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 Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2677,13 +2677,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 = 47.100106 + 0: The total amount of wall time = 46.823884 Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP +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 Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2748,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 = 153.246460 + 0: The total amount of wall time = 155.682140 Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP +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 Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2819,13 +2819,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 = 156.436174 + 0: The total amount of wall time = 165.211830 Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_c192L127 +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 Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2884,13 +2884,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 = 624.869992 + 0: The total amount of wall time = 621.071081 Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_2thrd +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 Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2955,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 = 175.662028 + 0: The total amount of wall time = 171.747147 Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmg +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 Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3006,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.438854 + 0: The total amount of wall time = 114.605300 Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_csawmgt +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 Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3057,13 +3057,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.480343 + 0: The total amount of wall time = 112.926929 Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gocart_clm +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 Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3108,13 +3108,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.884791 + 0: The total amount of wall time = 46.699732 Test 054 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_flake +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 Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3179,13 +3179,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 = 94.609762 + 0: The total amount of wall time = 97.267533 Test 055 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson +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 Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3250,13 +3250,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.396630 + 0: The total amount of wall time = 141.251279 Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson +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 Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3271,13 +3271,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 = 280.570341 + 0: The total amount of wall time = 279.445435 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1 +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 Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3336,13 +3336,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 = 163.168728 + 0: The total amount of wall time = 162.403031 Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_warmstart +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 Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3401,13 +3401,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.991385 + 0: The total amount of wall time = 164.604458 Test 059 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras +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 Checking test 060 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3472,13 +3472,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 = 88.093064 + 0: The total amount of wall time = 87.473920 Test 060 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_debug +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 Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3543,13 +3543,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 = 227.023364 + 0: The total amount of wall time = 225.572325 Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_debug +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 Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3614,13 +3614,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 = 170.542628 + 0: The total amount of wall time = 173.296381 Test 062 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v15p2_RRTMGP_debug +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 Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3685,13 +3685,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 = 343.080931 + 0: The total amount of wall time = 348.706433 Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_RRTMGP_debug +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 Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3756,13 +3756,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 = 350.730465 + 0: The total amount of wall time = 347.673806 Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_regional_control_debug +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 Checking test 065 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3770,13 +3770,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 = 343.648586 + 0: The total amount of wall time = 353.505385 Test 065 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_control_debug +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 Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3803,13 +3803,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 = 131.367273 + 0: The total amount of wall time = 132.647365 Test 066 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_stretched_nest_debug +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 Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3826,13 +3826,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 = 353.115307 + 0: The total amount of wall time = 352.899196 Test 067 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_debug +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 Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3897,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 = 198.377431 + 0: The total amount of wall time = 197.568431 Test 068 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gsd_diag3d_debug +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 Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3968,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.833859 + 0: The total amount of wall time = 250.595468 Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_debug +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 Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4039,13 +4039,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 = 328.146694 + 0: The total amount of wall time = 333.573337 Test 070 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_thompson_no_aero_debug +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 Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4110,13 +4110,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 = 316.827349 + 0: The total amount of wall time = 317.647750 Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_rrfs_v1beta_debug +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 Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4181,13 +4181,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 = 189.821750 + 0: The total amount of wall time = 192.390696 Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_HAFS_v0_hwrf_thompson_debug +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 Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4252,13 +4252,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 = 201.618230 + 0: The total amount of wall time = 203.404709 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_esg_HAFS_v0_hwrf_thompson_debug +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 Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4273,13 +4273,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 = 374.293835 + 0: The total amount of wall time = 380.261543 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfsv16_ugwpv1_debug +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 Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4338,13 +4338,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.635850 + 0: The total amount of wall time = 542.538902 Test 075 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/fv3_gfs_v16_ras_debug +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 Checking test 076 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4409,13 +4409,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 = 309.132295 + 0: The total amount of wall time = 320.026427 Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control +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 Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4465,13 +4465,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 = 90.339128 + 0: The total amount of wall time = 89.492388 Test 077 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart +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 Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4521,13 +4521,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 = 54.768869 + 0: The total amount of wall time = 52.752001 Test 078 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac +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 Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4577,13 +4577,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 = 95.907851 + 0: The total amount of wall time = 89.156218 Test 079 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac +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 Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4633,13 +4633,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 = 55.511067 + 0: The total amount of wall time = 54.839990 Test 080 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_2threads +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 Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4689,13 +4689,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 = 110.409809 + 0: The total amount of wall time = 109.331295 Test 081 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_decomp +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 Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4745,13 +4745,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 = 88.728218 + 0: The total amount of wall time = 86.886875 Test 082 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_satmedmf +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 Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4801,13 +4801,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 = 87.231026 + 0: The total amount of wall time = 86.736219 Test 083 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_ca +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 Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4857,13 +4857,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 = 87.981922 + 0: The total amount of wall time = 86.330204 Test 084 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c192 +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 Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4913,13 +4913,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.367746 + 0: The total amount of wall time = 375.102929 Test 085 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c192 +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 Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4969,13 +4969,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 = 270.814211 + 0: The total amount of wall time = 271.849544 Test 086 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c192 +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 Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5025,13 +5025,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 = 373.279468 + 0: The total amount of wall time = 376.076936 Test 087 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c192 +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 Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -5081,13 +5081,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 = 266.135016 + 0: The total amount of wall time = 261.680954 Test 088 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_c384 +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 Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5140,13 +5140,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 = 1329.110627 + 0: The total amount of wall time = 1310.415571 Test 089 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_c384 +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 Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5199,13 +5199,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 = 696.887685 + 0: The total amount of wall time = 699.923037 Test 090 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_controlfrac_c384 +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 Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5258,13 +5258,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.699512 + 0: The total amount of wall time = 1312.460118 Test 091 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restartfrac_c384 +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 Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5317,13 +5317,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 = 695.786189 + 0: The total amount of wall time = 694.840528 Test 092 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark +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 Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5376,13 +5376,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 = 822.009683 + 0: The total amount of wall time = 797.868408 Test 093 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmark +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 Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5435,13 +5435,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 = 455.656186 + 0: The total amount of wall time = 456.416099 Test 094 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac +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 Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5494,13 +5494,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 = 819.301220 + 0: The total amount of wall time = 786.716243 Test 095 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac +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 Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5553,13 +5553,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 = 450.464189 + 0: The total amount of wall time = 446.217410 Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_v16 +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 Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5612,13 +5612,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 = 1305.824498 + 0: The total amount of wall time = 1306.615833 Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_restart_bmarkfrac_v16 +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 Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5671,13 +5671,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 = 736.928195 + 0: The total amount of wall time = 720.890251 Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmark_wave +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 Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5733,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 = 1371.881760 + 0: The total amount of wall time = 1342.795970 Test 099 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave +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 Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5795,13 +5795,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 = 1367.920208 + 0: The total amount of wall time = 1352.035957 Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_bmarkfrac_wave_v16 +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 Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5856,13 +5856,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 = 905.989112 + 0: The total amount of wall time = 881.385353 Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_control_wave +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 Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5915,13 +5915,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 = 781.782198 + 0: The total amount of wall time = 779.555195 Test 102 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debug +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 Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5971,13 +5971,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 = 288.146012 + 0: The total amount of wall time = 285.915942 Test 103 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/cpld_debugfrac +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 Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -6027,73 +6027,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 = 290.711654 + 0: The total amount of wall time = 284.565844 Test 104 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_cfsr +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 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 = 99.712761 + 0: The total amount of wall time = 95.410816 Test 105 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_restart_cfsr +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 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.478684 + 0: The total amount of wall time = 60.909505 Test 106 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_control_gefs +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 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 = 89.962727 + 0: The total amount of wall time = 88.722502 Test 107 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_cfsr +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 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 = 94.244593 + 0: The total amount of wall time = 91.873665 Test 108 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_bulk_gefs +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 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.172983 + 0: The total amount of wall time = 88.616042 Test 109 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_cfsr +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 Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6102,13 +6102,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 = 366.399041 + 0: The total amount of wall time = 357.635167 Test 110 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_mx025_gefs +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 Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6117,23 +6117,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 = 357.507390 + 0: The total amount of wall time = 345.475405 Test 111 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210316/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_106686/datm_debug_cfsr +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 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 = 265.079234 + 0: The total amount of wall time = 266.026575 Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 22:25:38 UTC 2021 -Elapsed time: 01h:31m:42s. Have a nice day! +Fri Mar 19 19:01:44 UTC 2021 +Elapsed time: 03h:05m:37s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d21bbca020..85fbe99614 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,9 +1,9 @@ -Wed Mar 17 19:33:34 GMT 2021 +Fri Mar 19 20:32:46 GMT 2021 Start Regression test -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control +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 Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -68,13 +68,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 = 59.019073 +The total amount of wall time = 64.728782 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_2threads +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 Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +139,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 = 291.380542 +The total amount of wall time = 247.935928 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_restart +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 Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -192,13 +192,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 = 27.673882 +The total amount of wall time = 28.060533 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_read_inc +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 Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,13 +263,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 = 52.907264 +The total amount of wall time = 53.163985 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_esmf +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 Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -314,13 +314,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 = 156.743211 +The total amount of wall time = 188.134730 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf +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 Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -365,13 +365,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 = 52.684815 +The total amount of wall time = 53.163288 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_netcdf_parallel +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 Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -416,13 +416,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 = 68.053817 +The total amount of wall time = 73.607947 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGlatlon_netcdf +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 Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -467,13 +467,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.984470 +The total amount of wall time = 52.930898 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio +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 Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -518,13 +518,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.310479 +The total amount of wall time = 52.238510 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_wrtGauss_nemsio_c192 +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 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -569,13 +569,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.905612 +The total amount of wall time = 140.933841 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stochy +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 Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -640,13 +640,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 = 58.977465 +The total amount of wall time = 60.037783 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_ca +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 Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -711,13 +711,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 = 45.157381 +The total amount of wall time = 43.965197 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lndp +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 Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -782,13 +782,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 = 66.065248 +The total amount of wall time = 67.359845 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_iau +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 Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -853,13 +853,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.581130 +The total amount of wall time = 52.393139 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_lheatstrg +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 Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -904,13 +904,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 = 52.169134 +The total amount of wall time = 53.119680 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_multigases_repro +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 Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -981,13 +981,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 = 130.857413 +The total amount of wall time = 129.411586 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_32bit +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 Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1052,13 +1052,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 = 57.663932 +The total amount of wall time = 58.787940 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched +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 Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1111,13 +1111,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 = 393.187766 +The total amount of wall time = 397.670535 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest +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 Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1181,13 +1181,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 = 423.882746 +The total amount of wall time = 425.730764 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control +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 Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1195,25 +1195,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 = 858.855780 +The total amount of wall time = 865.261803 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_restart +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 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.755054 +The total amount of wall time = 480.835251 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt +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 Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1224,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 848.654061 +The total amount of wall time = 846.432121 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_hafs +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 Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,27 +1239,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 850.474449 +The total amount of wall time = 843.338808 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_quilt_netcdf_parallel +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 Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 854.368540 +The total amount of wall time = 845.687904 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp +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 Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1304,13 +1304,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 = 60.547225 +The total amount of wall time = 61.442180 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_gwd +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 Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1355,13 +1355,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.741896 +The total amount of wall time = 60.994258 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_noahmp +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 Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1406,13 +1406,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.105010 +The total amount of wall time = 61.299577 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_csawmg +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 Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1457,13 +1457,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 = 150.699055 +The total amount of wall time = 151.835768 Test 028 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmf +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 Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1508,13 +1508,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.351403 +The total amount of wall time = 65.891762 Test 029 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_satmedmfq +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 Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1559,13 +1559,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 = 65.648666 +The total amount of wall time = 64.924674 Test 030 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmp_32bit +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 Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,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.508828 +The total amount of wall time = 52.801592 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfdlmprad_32bit_post +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 Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1665,13 +1665,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.512019 +The total amount of wall time = 96.194080 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_cpt +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 Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1722,13 +1722,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 = 349.283110 +The total amount of wall time = 348.882981 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd +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 Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1817,13 +1817,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 = 244.449669 +The total amount of wall time = 240.816257 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson +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 Checking test 035 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1888,13 +1888,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 = 116.800567 +The total amount of wall time = 114.204287 Test 035 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero +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 Checking test 036 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1959,13 +1959,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 = 108.742722 +The total amount of wall time = 109.542404 Test 036 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2 +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 Checking test 037 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2030,13 +2030,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.552870 +The total amount of wall time = 118.426819 Test 037 fv3_gfs_v15p2 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16 +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 Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2113,13 +2113,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.083847 +The total amount of wall time = 145.923377 Test 038 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_restart +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 Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2166,13 +2166,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 = 75.241385 +The total amount of wall time = 74.629030 Test 039 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_stochy +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 Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,85 +2237,14 @@ 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 = 66.542223 +The total amount of wall time = 65.585332 Test 040 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP -Checking test 041 fv3_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 = 187.628841 - -Test 041 fv3_gfs_v15p2_RRTMGP PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP -Checking test 042 fv3_gfs_v16_RRTMGP results .... +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 +Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2379,14 +2308,14 @@ Checking test 042 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 = 189.007064 +The total amount of wall time = 202.330587 -Test 042 fv3_gfs_v16_RRTMGP PASS +Test 041 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_c192L127 -Checking test 043 fv3_gfs_v16_RRTMGP_c192L127 results .... +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 +Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2444,14 +2373,14 @@ Checking test 043 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 = 801.382491 +The total amount of wall time = 803.832167 -Test 043 fv3_gfs_v16_RRTMGP_c192L127 PASS +Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_2thrd -Checking test 044 fv3_gfs_v16_RRTMGP_2thrd results .... +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 +Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2515,14 +2444,14 @@ Checking test 044 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 = 768.356275 +The total amount of wall time = 827.003276 -Test 044 fv3_gfs_v16_RRTMGP_2thrd PASS +Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmg -Checking test 045 fv3_gfsv16_csawmg results .... +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 +Checking test 044 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2566,14 +2495,14 @@ Checking test 045 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 163.570737 +The total amount of wall time = 162.444195 -Test 045 fv3_gfsv16_csawmg PASS +Test 044 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_csawmgt -Checking test 046 fv3_gfsv16_csawmgt results .... +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 +Checking test 045 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2617,14 +2546,14 @@ Checking test 046 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.409704 +The total amount of wall time = 160.087092 -Test 046 fv3_gfsv16_csawmgt PASS +Test 045 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gocart_clm -Checking test 047 fv3_gocart_clm results .... +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 +Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2668,14 +2597,14 @@ 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 = 67.442475 +The total amount of wall time = 70.082356 -Test 047 fv3_gocart_clm PASS +Test 046 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_flake -Checking test 048 fv3_gfs_v16_flake results .... +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 +Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2739,14 +2668,14 @@ 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 = 119.774709 +The total amount of wall time = 123.487427 -Test 048 fv3_gfs_v16_flake PASS +Test 047 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson -Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... +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 +Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2810,14 +2739,14 @@ 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 = 191.359263 +The total amount of wall time = 192.169109 -Test 049 fv3_HAFS_v0_hwrf_thompson PASS +Test 048 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... +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 +Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -2831,14 +2760,14 @@ 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 = 357.358522 +The total amount of wall time = 356.676973 -Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1 -Checking test 051 fv3_gfsv16_ugwpv1 results .... +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 +Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2896,14 +2825,14 @@ 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 = 228.829873 +The total amount of wall time = 229.423421 -Test 051 fv3_gfsv16_ugwpv1 PASS +Test 050 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_warmstart -Checking test 052 fv3_gfsv16_ugwpv1_warmstart results .... +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 +Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2961,14 +2890,14 @@ 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 = 229.672114 +The total amount of wall time = 229.322248 -Test 052 fv3_gfsv16_ugwpv1_warmstart PASS +Test 051 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras -Checking test 053 fv3_gfs_v16_ras results .... +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 +Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3032,14 +2961,14 @@ 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 = 123.129870 +The total amount of wall time = 123.968164 -Test 053 fv3_gfs_v16_ras PASS +Test 052 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_debug -Checking test 054 fv3_gfs_v15p2_debug results .... +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 +Checking test 053 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3103,14 +3032,14 @@ 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 = 271.873950 +The total amount of wall time = 273.697286 -Test 054 fv3_gfs_v15p2_debug PASS +Test 053 fv3_gfs_v15p2_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_debug -Checking test 055 fv3_gfs_v16_debug results .... +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 +Checking test 054 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3174,14 +3103,14 @@ 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 = 207.082359 +The total amount of wall time = 208.127790 -Test 055 fv3_gfs_v16_debug PASS +Test 054 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v15p2_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v15p2_RRTMGP_debug -Checking test 056 fv3_gfs_v15p2_RRTMGP_debug results .... +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 +Checking test 055 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3245,14 +3174,14 @@ 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 = 438.413542 +The total amount of wall time = 440.089160 -Test 056 fv3_gfs_v15p2_RRTMGP_debug PASS +Test 055 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_RRTMGP_debug -Checking test 057 fv3_gfs_v16_RRTMGP_debug results .... +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 +Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3316,28 +3245,28 @@ 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 = 447.659668 +The total amount of wall time = 451.065134 -Test 057 fv3_gfs_v16_RRTMGP_debug PASS +Test 056 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_regional_control_debug -Checking test 058 fv3_regional_control_debug results .... +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 +Checking test 057 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 = 458.928966 +The total amount of wall time = 458.313491 -Test 058 fv3_regional_control_debug PASS +Test 057 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_control_debug -Checking test 059 fv3_control_debug results .... +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 +Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3363,14 +3292,14 @@ Checking test 059 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 157.690354 +The total amount of wall time = 158.968260 -Test 059 fv3_control_debug PASS +Test 058 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_stretched_nest_debug -Checking test 060 fv3_stretched_nest_debug results .... +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 +Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3386,14 +3315,14 @@ 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 = 534.941205 +The total amount of wall time = 535.750789 -Test 060 fv3_stretched_nest_debug PASS +Test 059 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_debug -Checking test 061 fv3_gsd_debug results .... +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 +Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3457,14 +3386,14 @@ 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 = 238.318598 +The total amount of wall time = 239.269686 -Test 061 fv3_gsd_debug PASS +Test 060 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gsd_diag3d_debug -Checking test 062 fv3_gsd_diag3d_debug results .... +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 +Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3528,14 +3457,14 @@ 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 = 270.684010 +The total amount of wall time = 271.115849 -Test 062 fv3_gsd_diag3d_debug PASS +Test 061 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_debug -Checking test 063 fv3_thompson_debug results .... +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 +Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3599,14 +3528,14 @@ 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 = 417.304640 +The total amount of wall time = 417.427067 -Test 063 fv3_thompson_debug PASS +Test 062 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_thompson_no_aero_debug -Checking test 064 fv3_thompson_no_aero_debug results .... +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 +Checking test 063 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3670,14 +3599,14 @@ 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 = 402.109266 +The total amount of wall time = 401.368140 -Test 064 fv3_thompson_no_aero_debug PASS +Test 063 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_rrfs_v1beta_debug -Checking test 065 fv3_rrfs_v1beta_debug results .... +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 +Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3741,14 +3670,14 @@ 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 = 232.941492 +The total amount of wall time = 231.962234 -Test 065 fv3_rrfs_v1beta_debug PASS +Test 064 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... +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 +Checking test 065 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 @@ -3812,14 +3741,14 @@ 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 = 247.699269 +The total amount of wall time = 247.594030 -Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +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 +Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -3833,14 +3762,14 @@ 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 = 462.514551 +The total amount of wall time = 464.549115 -Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfsv16_ugwpv1_debug -Checking test 068 fv3_gfsv16_ugwpv1_debug results .... +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 +Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3898,14 +3827,14 @@ 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 = 708.519770 +The total amount of wall time = 709.309574 -Test 068 fv3_gfsv16_ugwpv1_debug PASS +Test 067 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/RT/NEMSfv3gfs/develop-20210316/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Dom.Heinzeller/RT_RUNDIRS/Dom.Heinzeller/FV3_RT/rt_175899/fv3_gfs_v16_ras_debug -Checking test 069 fv3_gfs_v16_ras_debug results .... +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 +Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3969,11 +3898,11 @@ 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 = 395.906445 +The total amount of wall time = 395.013982 -Test 069 fv3_gfs_v16_ras_debug PASS +Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Mar 17 21:50:12 GMT 2021 -Elapsed time: 02h:16m:39s. Have a nice day! +Fri Mar 19 23:14:51 GMT 2021 +Elapsed time: 02h:42m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 301964dfb3..bd8bb38e30 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,10 +1,10 @@ -Fri Mar 12 21:17:03 CST 2021 +Fri Mar 19 12:50:33 CDT 2021 Start Regression test -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_prod -Checking test 001 fv3_ccpp_control results .... +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 +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 +68,14 @@ Checking test 001 fv3_ccpp_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.335967 + 0: The total amount of wall time = 49.822248 -Test 001 fv3_ccpp_control PASS +Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_decomp_prod -Checking test 002 fv3_ccpp_decomp results .... +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 +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 +139,14 @@ Checking test 002 fv3_ccpp_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.909151 + 0: The total amount of wall time = 51.521173 -Test 002 fv3_ccpp_decomp PASS +Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_2threads_prod -Checking test 003 fv3_ccpp_2threads results .... +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 +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 +210,14 @@ Checking test 003 fv3_ccpp_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.512654 + 0: The total amount of wall time = 45.713742 -Test 003 fv3_ccpp_2threads PASS +Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_restart_prod -Checking test 004 fv3_ccpp_restart results .... +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 +Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 fv3_ccpp_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 24.881297 + 0: The total amount of wall time = 28.132500 -Test 004 fv3_ccpp_restart PASS +Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_read_inc_prod -Checking test 005 fv3_ccpp_read_inc results .... +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 +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 +334,14 @@ Checking test 005 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.960439 + 0: The total amount of wall time = 44.505180 -Test 005 fv3_ccpp_read_inc PASS +Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... +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 +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 +385,14 @@ Checking test 006 fv3_ccpp_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 = 152.822694 + 0: The total amount of wall time = 166.407823 -Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... +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 +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 +436,14 @@ Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.459556 + 0: The total amount of wall time = 40.838167 -Test 007 fv3_ccpp_wrtGauss_netcdf PASS +Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_netcdf_parallel_prod -Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... +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 +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 @@ -453,7 +453,7 @@ Checking test 008 fv3_ccpp_wrtGauss_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -487,14 +487,14 @@ Checking test 008 fv3_ccpp_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 = 53.314491 + 0: The total amount of wall time = 62.405697 -Test 008 fv3_ccpp_wrtGauss_netcdf_parallel PASS +Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGlatlon_netcdf_prod -Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... +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 +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 +538,14 @@ Checking test 009 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.327716 + 0: The total amount of wall time = 47.179670 -Test 009 fv3_ccpp_wrtGlatlon_netcdf PASS +Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... +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 +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 +589,14 @@ Checking test 010 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.746261 + 0: The total amount of wall time = 45.659848 -Test 010 fv3_ccpp_wrtGauss_nemsio PASS +Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 011 fv3_ccpp_wrtGauss_nemsio_c192 results .... +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 +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 +640,14 @@ Checking test 011 fv3_ccpp_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 = 102.974613 + 0: The total amount of wall time = 109.415050 -Test 011 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stochy_prod -Checking test 012 fv3_ccpp_stochy results .... +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 +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 +711,14 @@ Checking test 012 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 49.343612 + 0: The total amount of wall time = 44.225112 -Test 012 fv3_ccpp_stochy PASS +Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_ca_prod -Checking test 013 fv3_ccpp_ca results .... +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 +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 +782,14 @@ Checking test 013 fv3_ccpp_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 30.400909 + 0: The total amount of wall time = 30.103813 -Test 013 fv3_ccpp_ca PASS +Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lndp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lndp_prod -Checking test 014 fv3_ccpp_lndp results .... +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 +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 +853,14 @@ Checking test 014 fv3_ccpp_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 48.801022 + 0: The total amount of wall time = 56.130941 -Test 014 fv3_ccpp_lndp PASS +Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_iau_prod -Checking test 015 fv3_ccpp_iau results .... +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 +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 +924,14 @@ Checking test 015 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.134449 + 0: The total amount of wall time = 50.465295 -Test 015 fv3_ccpp_iau PASS +Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_lheatstrg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_lheatstrg_prod -Checking test 016 fv3_ccpp_lheatstrg results .... +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 +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 +975,14 @@ Checking test 016 fv3_ccpp_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 43.349731 + 0: The total amount of wall time = 46.489782 -Test 016 fv3_ccpp_lheatstrg PASS +Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_prod -Checking test 017 fv3_ccpp_gfdlmprad results .... +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 +Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1027,14 +1027,14 @@ Checking test 017 fv3_ccpp_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 654.665384 + 0: The total amount of wall time = 678.419956 -Test 017 fv3_ccpp_gfdlmprad PASS +Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... +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 +Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,14 +1079,14 @@ Checking test 018 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 798.266029 + 0: The total amount of wall time = 826.633003 -Test 018 fv3_ccpp_gfdlmprad_atmwav PASS +Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... +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 +Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 019 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 673.063059 + 0: The total amount of wall time = 706.467872 -Test 019 fv3_ccpp_wrtGauss_nemsio_c768 PASS +Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_multigases_prod -Checking test 020 fv3_ccpp_multigases results .... +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 +Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1208,14 +1208,14 @@ Checking test 020 fv3_ccpp_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 85.409100 + 0: The total amount of wall time = 107.230897 -Test 020 fv3_ccpp_multigases PASS +Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_32bit_prod -Checking test 021 fv3_ccpp_control_32bit results .... +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 +Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1279,14 +1279,14 @@ Checking test 021 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.169483 + 0: The total amount of wall time = 47.582102 -Test 021 fv3_ccpp_control_32bit PASS +Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_prod -Checking test 022 fv3_ccpp_stretched results .... +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 +Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1338,14 +1338,14 @@ Checking test 022 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 217.704896 + 0: The total amount of wall time = 217.262541 -Test 022 fv3_ccpp_stretched PASS +Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_prod -Checking test 023 fv3_ccpp_stretched_nest results .... +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 +Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1408,40 +1408,40 @@ Checking test 023 fv3_ccpp_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 = 240.960080 + 0: The total amount of wall time = 243.162287 -Test 023 fv3_ccpp_stretched_nest PASS +Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_prod -Checking test 024 fv3_ccpp_regional_control results .... +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 +Checking test 024 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 - 0: The total amount of wall time = 535.673257 + 0: The total amount of wall time = 536.273022 -Test 024 fv3_ccpp_regional_control PASS +Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_restart_prod -Checking test 025 fv3_ccpp_regional_restart results .... +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 +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 = 298.239390 + 0: The total amount of wall time = 301.035378 -Test 025 fv3_ccpp_regional_restart PASS +Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_prod -Checking test 026 fv3_ccpp_regional_quilt results .... +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 +Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1451,14 +1451,14 @@ Checking test 026 fv3_ccpp_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 591.477761 + 0: The total amount of wall time = 576.311724 -Test 026 fv3_ccpp_regional_quilt PASS +Test 026 fv3_regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_hafs_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_hafs_prod -Checking test 027 fv3_ccpp_regional_quilt_hafs results .... +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 +Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1466,28 +1466,28 @@ Checking test 027 fv3_ccpp_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.465772 + 0: The total amount of wall time = 580.253857 -Test 027 fv3_ccpp_regional_quilt_hafs PASS +Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_quilt_netcdf_parallel_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_quilt_netcdf_parallel_prod -Checking test 028 fv3_ccpp_regional_quilt_netcdf_parallel results .... +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 +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 phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 584.521443 + 0: The total amount of wall time = 577.972230 -Test 028 fv3_ccpp_regional_quilt_netcdf_parallel PASS +Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_prod -Checking test 029 fv3_ccpp_gfdlmp results .... +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 +Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1531,14 +1531,14 @@ Checking test 029 fv3_ccpp_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.435399 + 0: The total amount of wall time = 49.088020 -Test 029 fv3_ccpp_gfdlmp PASS +Test 029 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... +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 +Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1582,14 +1582,14 @@ Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 48.252765 + 0: The total amount of wall time = 49.180437 -Test 030 fv3_ccpp_gfdlmprad_gwd PASS +Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... +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 +Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1633,14 +1633,14 @@ Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 56.766459 + 0: The total amount of wall time = 52.319969 -Test 031 fv3_ccpp_gfdlmprad_noahmp PASS +Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_csawmg_prod -Checking test 032 fv3_ccpp_csawmg results .... +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 +Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 032 fv3_ccpp_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.579388 + 0: The total amount of wall time = 109.398812 -Test 032 fv3_ccpp_csawmg PASS +Test 032 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmf_prod -Checking test 033 fv3_ccpp_satmedmf results .... +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 +Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1735,14 +1735,14 @@ Checking test 033 fv3_ccpp_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.209134 + 0: The total amount of wall time = 53.796980 -Test 033 fv3_ccpp_satmedmf PASS +Test 033 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_satmedmfq_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_satmedmfq_prod -Checking test 034 fv3_ccpp_satmedmfq results .... +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 +Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1786,14 +1786,14 @@ Checking test 034 fv3_ccpp_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 53.012331 + 0: The total amount of wall time = 49.514721 -Test 034 fv3_ccpp_satmedmfq PASS +Test 034 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmp_32bit_prod -Checking test 035 fv3_ccpp_gfdlmp_32bit results .... +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 +Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1837,14 +1837,14 @@ Checking test 035 fv3_ccpp_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.385652 + 0: The total amount of wall time = 49.923095 -Test 035 fv3_ccpp_gfdlmp_32bit PASS +Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... +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 +Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1892,14 +1892,14 @@ Checking test 036 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 77.148335 + 0: The total amount of wall time = 72.847140 -Test 036 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_cpt_prod -Checking test 037 fv3_ccpp_cpt results .... +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 +Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1949,14 +1949,14 @@ Checking test 037 fv3_ccpp_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 266.666866 + 0: The total amount of wall time = 258.808684 -Test 037 fv3_ccpp_cpt PASS +Test 037 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_prod -Checking test 038 fv3_ccpp_gsd results .... +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 +Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2044,14 +2044,14 @@ Checking test 038 fv3_ccpp_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.188712 + 0: The total amount of wall time = 181.978842 -Test 038 fv3_ccpp_gsd PASS +Test 038 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rap_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rap_prod -Checking test 039 fv3_ccpp_rap results .... +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 +Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2115,14 +2115,14 @@ Checking test 039 fv3_ccpp_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.997649 + 0: The total amount of wall time = 99.758309 -Test 039 fv3_ccpp_rap PASS +Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_hrrr_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_hrrr_prod -Checking test 040 fv3_ccpp_hrrr results .... +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 +Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2186,14 +2186,14 @@ Checking test 040 fv3_ccpp_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 104.337900 + 0: The total amount of wall time = 108.362225 -Test 040 fv3_ccpp_hrrr PASS +Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_prod -Checking test 041 fv3_ccpp_thompson results .... +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 +Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2257,14 +2257,14 @@ Checking test 041 fv3_ccpp_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 95.628960 + 0: The total amount of wall time = 96.981672 -Test 041 fv3_ccpp_thompson PASS +Test 041 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_prod -Checking test 042 fv3_ccpp_thompson_no_aero results .... +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 +Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2328,14 +2328,14 @@ Checking test 042 fv3_ccpp_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.094245 + 0: The total amount of wall time = 89.632598 -Test 042 fv3_ccpp_thompson_no_aero PASS +Test 042 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_prod -Checking test 043 fv3_ccpp_rrfs_v1beta results .... +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 +Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2399,14 +2399,14 @@ Checking test 043 fv3_ccpp_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 105.609223 + 0: The total amount of wall time = 111.207011 -Test 043 fv3_ccpp_rrfs_v1beta PASS +Test 043 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_prod -Checking test 044 fv3_ccpp_gfs_v15p2 results .... +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 +Checking test 044 fv3_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2470,14 +2470,14 @@ Checking test 044 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 99.985320 + 0: The total amount of wall time = 100.258678 -Test 044 fv3_ccpp_gfs_v15p2 PASS +Test 044 fv3_gfs_v15p2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_prod -Checking test 045 fv3_ccpp_gfs_v16 results .... +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 +Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2553,14 +2553,14 @@ Checking test 045 fv3_ccpp_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 113.638839 + 0: The total amount of wall time = 117.674490 -Test 045 fv3_ccpp_gfs_v16 PASS +Test 045 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_restart_prod -Checking test 046 fv3_ccpp_gfs_v16_restart results .... +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 +Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -2606,14 +2606,14 @@ Checking test 046 fv3_ccpp_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 = 62.982109 + 0: The total amount of wall time = 61.382059 -Test 046 fv3_ccpp_gfs_v16_restart PASS +Test 046 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_stochy_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_stochy_prod -Checking test 047 fv3_ccpp_gfs_v16_stochy results .... +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 +Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2677,14 +2677,14 @@ Checking test 047 fv3_ccpp_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 = 53.746916 + 0: The total amount of wall time = 56.009358 -Test 047 fv3_ccpp_gfs_v16_stochy PASS +Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_prod -Checking test 048 fv3_ccpp_gfs_v15p2_RRTMGP results .... +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 +Checking test 048 fv3_gfs_v15p2_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2748,14 +2748,14 @@ Checking test 048 fv3_ccpp_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 = 162.150450 + 0: The total amount of wall time = 165.693850 -Test 048 fv3_ccpp_gfs_v15p2_RRTMGP PASS +Test 048 fv3_gfs_v15p2_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_prod -Checking test 049 fv3_ccpp_gfs_v16_RRTMGP results .... +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 +Checking test 049 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2819,14 +2819,14 @@ Checking test 049 fv3_ccpp_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 = 163.253696 + 0: The total amount of wall time = 172.052786 -Test 049 fv3_ccpp_gfs_v16_RRTMGP PASS +Test 049 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_c192L127_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_c192L127_prod -Checking test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 results .... +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 +Checking test 050 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 050 fv3_ccpp_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 = 626.222349 + 0: The total amount of wall time = 629.327169 -Test 050 fv3_ccpp_gfs_v16_RRTMGP_c192L127 PASS +Test 050 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_2thrd_prod -Checking test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd results .... +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 +Checking test 051 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2955,14 +2955,14 @@ Checking test 051 fv3_ccpp_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 = 190.698181 + 0: The total amount of wall time = 177.248846 -Test 051 fv3_ccpp_gfs_v16_RRTMGP_2thrd PASS +Test 051 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmg_prod -Checking test 052 fv3_ccpp_gfsv16_csawmg results .... +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 +Checking test 052 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3006,14 +3006,14 @@ Checking test 052 fv3_ccpp_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.215471 + 0: The total amount of wall time = 128.621910 -Test 052 fv3_ccpp_gfsv16_csawmg PASS +Test 052 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... +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 +Checking test 053 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3057,14 +3057,14 @@ Checking test 053 fv3_ccpp_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.487777 + 0: The total amount of wall time = 126.372323 -Test 053 fv3_ccpp_gfsv16_csawmgt PASS +Test 053 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gocart_clm_prod -Checking test 054 fv3_ccpp_gocart_clm results .... +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 +Checking test 054 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3108,14 +3108,14 @@ Checking test 054 fv3_ccpp_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 59.289760 + 0: The total amount of wall time = 61.167507 -Test 054 fv3_ccpp_gocart_clm PASS +Test 054 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_flake_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_flake_prod -Checking test 055 fv3_ccpp_gfs_v16_flake results .... +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 +Checking test 055 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3179,14 +3179,14 @@ Checking test 055 fv3_ccpp_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 = 104.836787 + 0: The total amount of wall time = 113.282933 -Test 055 fv3_ccpp_gfs_v16_flake PASS +Test 055 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_prod -Checking test 056 fv3_ccpp_HAFS_v0_hwrf_thompson results .... +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 +Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3250,14 +3250,14 @@ Checking test 056 fv3_ccpp_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 = 147.882367 + 0: The total amount of wall time = 151.985419 -Test 056 fv3_ccpp_HAFS_v0_hwrf_thompson PASS +Test 056 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_prod -Checking test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson results .... +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 +Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -3271,14 +3271,14 @@ Checking test 057 fv3_ccpp_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 = 289.858017 + 0: The total amount of wall time = 292.902368 -Test 057 fv3_ccpp_esg_HAFS_v0_hwrf_thompson PASS +Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_prod -Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... +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 +Checking test 058 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3336,14 +3336,14 @@ Checking test 058 fv3_ccpp_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 170.089998 + 0: The total amount of wall time = 181.379209 -Test 058 fv3_ccpp_gfsv16_ugwpv1 PASS +Test 058 fv3_gfsv16_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_warmstart_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_warmstart_prod -Checking test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart results .... +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 +Checking test 059 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3401,14 +3401,85 @@ Checking test 059 fv3_ccpp_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 = 172.388475 + 0: The total amount of wall time = 177.143703 + +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 +Checking test 060 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 + + 0: The total amount of wall time = 103.104727 -Test 059 fv3_ccpp_gfsv16_ugwpv1_warmstart PASS +Test 060 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 060 fv3_ccpp_gfs_v15p2_debug results .... +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 +Checking test 061 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3472,14 +3543,14 @@ Checking test 060 fv3_ccpp_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 = 251.703488 + 0: The total amount of wall time = 242.582630 -Test 060 fv3_ccpp_gfs_v15p2_debug PASS +Test 061 fv3_gfs_v15p2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_debug_prod -Checking test 061 fv3_ccpp_gfs_v16_debug results .... +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 +Checking test 062 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3543,14 +3614,14 @@ Checking test 061 fv3_ccpp_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 = 189.430133 + 0: The total amount of wall time = 185.523880 -Test 061 fv3_ccpp_gfs_v16_debug PASS +Test 062 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v15p2_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v15p2_RRTMGP_debug_prod -Checking test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug results .... +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 +Checking test 063 fv3_gfs_v15p2_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3614,14 +3685,14 @@ Checking test 062 fv3_ccpp_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 = 373.969692 + 0: The total amount of wall time = 371.331039 -Test 062 fv3_ccpp_gfs_v15p2_RRTMGP_debug PASS +Test 063 fv3_gfs_v15p2_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gfs_v16_RRTMGP_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfs_v16_RRTMGP_debug_prod -Checking test 063 fv3_ccpp_gfs_v16_RRTMGP_debug results .... +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 +Checking test 064 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3685,28 +3756,28 @@ Checking test 063 fv3_ccpp_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 = 382.031132 + 0: The total amount of wall time = 384.243546 -Test 063 fv3_ccpp_gfs_v16_RRTMGP_debug PASS +Test 064 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_regional_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_regional_control_debug_prod -Checking test 064 fv3_ccpp_regional_control_debug results .... +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 +Checking test 065 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 - 0: The total amount of wall time = 367.720884 + 0: The total amount of wall time = 368.364244 -Test 064 fv3_ccpp_regional_control_debug PASS +Test 065 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_control_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_control_debug_prod -Checking test 065 fv3_ccpp_control_debug results .... +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 +Checking test 066 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -3732,14 +3803,14 @@ Checking test 065 fv3_ccpp_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 149.916615 + 0: The total amount of wall time = 155.221480 -Test 065 fv3_ccpp_control_debug PASS +Test 066 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_stretched_nest_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_stretched_nest_debug_prod -Checking test 066 fv3_ccpp_stretched_nest_debug results .... +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 +Checking test 067 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK Comparing fv3_history2d.tile2.nc .........OK @@ -3755,14 +3826,14 @@ Checking test 066 fv3_ccpp_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 371.255363 + 0: The total amount of wall time = 375.623118 -Test 066 fv3_ccpp_stretched_nest_debug PASS +Test 067 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_debug_prod -Checking test 067 fv3_ccpp_gsd_debug results .... +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 +Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3826,14 +3897,14 @@ Checking test 067 fv3_ccpp_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.754395 + 0: The total amount of wall time = 215.241294 -Test 067 fv3_ccpp_gsd_debug PASS +Test 068 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gsd_diag3d_debug_prod -Checking test 068 fv3_ccpp_gsd_diag3d_debug results .... +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 +Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3897,14 +3968,14 @@ Checking test 068 fv3_ccpp_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 = 296.344801 + 0: The total amount of wall time = 295.256237 -Test 068 fv3_ccpp_gsd_diag3d_debug PASS +Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_debug_prod -Checking test 069 fv3_ccpp_thompson_debug results .... +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 +Checking test 070 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -3968,14 +4039,14 @@ Checking test 069 fv3_ccpp_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.154207 + 0: The total amount of wall time = 353.634309 -Test 069 fv3_ccpp_thompson_debug PASS +Test 070 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 070 fv3_ccpp_thompson_no_aero_debug results .... +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 +Checking test 071 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4039,14 +4110,14 @@ Checking test 070 fv3_ccpp_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 = 369.681577 + 0: The total amount of wall time = 333.756109 -Test 070 fv3_ccpp_thompson_no_aero_debug PASS +Test 071 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_rrfs_v1beta_debug_prod -Checking test 071 fv3_ccpp_rrfs_v1beta_debug results .... +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 +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -4110,14 +4181,14 @@ Checking test 071 fv3_ccpp_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 = 207.134888 + 0: The total amount of wall time = 209.763849 -Test 071 fv3_ccpp_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_HAFS_v0_hwrf_thompson_debug_prod -Checking test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug results .... +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 +Checking test 073 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 @@ -4181,14 +4252,14 @@ Checking test 072 fv3_ccpp_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 = 216.447621 + 0: The total amount of wall time = 263.676892 -Test 072 fv3_ccpp_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/ESG_HAFS_v0_HWRF_thompson_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug_prod -Checking test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug results .... +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 +Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -4202,14 +4273,14 @@ Checking test 073 fv3_ccpp_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 = 417.919395 + 0: The total amount of wall time = 410.622427 -Test 073 fv3_ccpp_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/fv3_ccpp_gfsv16_ugwpv1_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/fv3_ccpp_gfsv16_ugwpv1_debug_prod -Checking test 074 fv3_ccpp_gfsv16_ugwpv1_debug results .... +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 +Checking test 075 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK Comparing phyf000.tile3.nc .........OK @@ -4267,14 +4338,85 @@ Checking test 074 fv3_ccpp_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 = 567.689142 + 0: The total amount of wall time = 577.490209 + +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 +Checking test 076 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 + + 0: The total amount of wall time = 338.669822 -Test 074 fv3_ccpp_gfsv16_ugwpv1_debug PASS +Test 076 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_prod -Checking test 075 cpld_control results .... +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 +Checking test 077 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4323,14 +4465,14 @@ Checking test 075 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 = 99.768565 + 0: The total amount of wall time = 119.325516 -Test 075 cpld_control PASS +Test 077 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_prod -Checking test 076 cpld_restart results .... +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 +Checking test 078 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4379,14 +4521,14 @@ Checking test 076 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 = 75.123364 + 0: The total amount of wall time = 68.154787 -Test 076 cpld_restart PASS +Test 078 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_prod -Checking test 077 cpld_controlfrac results .... +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 +Checking test 079 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4435,14 +4577,14 @@ Checking test 077 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 = 101.608224 + 0: The total amount of wall time = 117.598597 -Test 077 cpld_controlfrac PASS +Test 079 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_prod -Checking test 078 cpld_restartfrac results .... +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 +Checking test 080 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4491,14 +4633,14 @@ Checking test 078 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 = 68.391162 + 0: The total amount of wall time = 78.913061 -Test 078 cpld_restartfrac PASS +Test 080 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_2threads_prod -Checking test 079 cpld_2threads results .... +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 +Checking test 081 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4547,14 +4689,14 @@ Checking test 079 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.696323 + 0: The total amount of wall time = 133.379763 -Test 079 cpld_2threads PASS +Test 081 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_decomp_prod -Checking test 080 cpld_decomp results .... +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 +Checking test 082 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4603,14 +4745,14 @@ Checking test 080 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 = 96.867347 + 0: The total amount of wall time = 104.163066 -Test 080 cpld_decomp PASS +Test 082 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_satmedmf_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_satmedmf_prod -Checking test 081 cpld_satmedmf results .... +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 +Checking test 083 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4659,14 +4801,14 @@ Checking test 081 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 = 96.332041 + 0: The total amount of wall time = 108.150363 -Test 081 cpld_satmedmf PASS +Test 083 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_ca_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_ca_prod -Checking test 082 cpld_ca results .... +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 +Checking test 084 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4715,14 +4857,14 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.729955 + 0: The total amount of wall time = 111.862948 -Test 082 cpld_ca PASS +Test 084 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c192_prod -Checking test 083 cpld_control_c192 results .... +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 +Checking test 085 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4771,14 +4913,14 @@ Checking test 083 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 = 383.916568 + 0: The total amount of wall time = 397.017496 -Test 083 cpld_control_c192 PASS +Test 085 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c192_prod -Checking test 084 cpld_restart_c192 results .... +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 +Checking test 086 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4827,14 +4969,14 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 275.426220 + 0: The total amount of wall time = 272.736278 -Test 084 cpld_restart_c192 PASS +Test 086 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c192_prod -Checking test 085 cpld_controlfrac_c192 results .... +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 +Checking test 087 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4883,14 +5025,14 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 381.668018 + 0: The total amount of wall time = 400.553613 -Test 085 cpld_controlfrac_c192 PASS +Test 087 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c192_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c192_prod -Checking test 086 cpld_restartfrac_c192 results .... +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 +Checking test 088 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK Comparing phyf048.tile3.nc .........OK @@ -4939,14 +5081,14 @@ Checking test 086 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 = 271.383950 + 0: The total amount of wall time = 278.647891 -Test 086 cpld_restartfrac_c192 PASS +Test 088 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_c384_prod -Checking test 087 cpld_control_c384 results .... +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 +Checking test 089 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -4998,14 +5140,14 @@ Checking test 087 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 = 1306.790624 + 0: The total amount of wall time = 1336.147422 -Test 087 cpld_control_c384 PASS +Test 089 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_c384_prod -Checking test 088 cpld_restart_c384 results .... +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 +Checking test 090 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5057,14 +5199,14 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 695.602527 + 0: The total amount of wall time = 713.934599 -Test 088 cpld_restart_c384 PASS +Test 090 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_controlfrac_c384_prod -Checking test 089 cpld_controlfrac_c384 results .... +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 +Checking test 091 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5116,14 +5258,14 @@ Checking test 089 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.468145 + 0: The total amount of wall time = 1406.099769 -Test 089 cpld_controlfrac_c384 PASS +Test 091 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_controlfrac_c384_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restartfrac_c384_prod -Checking test 090 cpld_restartfrac_c384 results .... +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 +Checking test 092 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5175,14 +5317,14 @@ Checking test 090 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 = 685.239220 + 0: The total amount of wall time = 706.690926 -Test 090 cpld_restartfrac_c384 PASS +Test 092 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_prod -Checking test 091 cpld_bmark results .... +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 +Checking test 093 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5234,14 +5376,14 @@ Checking test 091 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 = 842.253747 + 0: The total amount of wall time = 824.173979 -Test 091 cpld_bmark PASS +Test 093 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmark_prod -Checking test 092 cpld_restart_bmark results .... +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 +Checking test 094 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5293,14 +5435,14 @@ Checking test 092 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 = 452.600613 + 0: The total amount of wall time = 457.215343 -Test 092 cpld_restart_bmark PASS +Test 094 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_prod -Checking test 093 cpld_bmarkfrac results .... +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 +Checking test 095 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5352,14 +5494,14 @@ Checking test 093 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 = 831.423830 + 0: The total amount of wall time = 829.110986 -Test 093 cpld_bmarkfrac PASS +Test 095 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_prod -Checking test 094 cpld_restart_bmarkfrac results .... +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 +Checking test 096 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5411,14 +5553,14 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 442.128834 + 0: The total amount of wall time = 453.932339 -Test 094 cpld_restart_bmarkfrac PASS +Test 096 cpld_restart_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_v16_prod -Checking test 095 cpld_bmarkfrac_v16 results .... +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 +Checking test 097 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5470,14 +5612,14 @@ Checking test 095 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 = 1349.080037 + 0: The total amount of wall time = 1344.124539 -Test 095 cpld_bmarkfrac_v16 PASS +Test 097 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_restart_bmarkfrac_v16_prod -Checking test 096 cpld_restart_bmarkfrac_v16 results .... +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 +Checking test 098 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5529,14 +5671,14 @@ Checking test 096 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 = 716.142617 + 0: The total amount of wall time = 740.990276 -Test 096 cpld_restart_bmarkfrac_v16 PASS +Test 098 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmark_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmark_wave_prod -Checking test 097 cpld_bmark_wave results .... +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 +Checking test 099 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5591,14 +5733,14 @@ Checking test 097 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 = 1402.828957 + 0: The total amount of wall time = 1432.098204 -Test 097 cpld_bmark_wave PASS +Test 099 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_prod -Checking test 098 cpld_bmarkfrac_wave results .... +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 +Checking test 100 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5653,14 +5795,14 @@ Checking test 098 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 = 1416.011810 + 0: The total amount of wall time = 1429.371386 -Test 098 cpld_bmarkfrac_wave PASS +Test 100 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_bmarkfrac_wave_v16_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_bmarkfrac_wave_v16_prod -Checking test 099 cpld_bmarkfrac_wave_v16 results .... +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 +Checking test 101 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5714,14 +5856,14 @@ Checking test 099 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 = 939.150736 + 0: The total amount of wall time = 951.222093 -Test 099 cpld_bmarkfrac_wave_v16 PASS +Test 101 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_control_wave_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_control_wave_prod -Checking test 100 cpld_control_wave results .... +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 +Checking test 102 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5773,14 +5915,14 @@ Checking test 100 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 = 790.442777 + 0: The total amount of wall time = 815.263136 -Test 100 cpld_control_wave PASS +Test 102 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debug_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debug_prod -Checking test 101 cpld_debug results .... +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 +Checking test 103 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5829,14 +5971,14 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 321.112205 + 0: The total amount of wall time = 341.676165 -Test 101 cpld_debug PASS +Test 103 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/cpld_debugfrac_ccpp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/cpld_debugfrac_prod -Checking test 102 cpld_debugfrac results .... +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 +Checking test 104 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5885,74 +6027,74 @@ Checking test 102 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 = 322.169993 + 0: The total amount of wall time = 327.395689 -Test 102 cpld_debugfrac PASS +Test 104 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_cfsr -Checking test 103 datm_control_cfsr results .... +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 +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 = 99.728356 + 0: The total amount of wall time = 104.235935 -Test 103 datm_control_cfsr PASS +Test 105 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_restart_cfsr -Checking test 104 datm_restart_cfsr results .... +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 +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 = 68.416477 + 0: The total amount of wall time = 71.592949 -Test 104 datm_restart_cfsr PASS +Test 106 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_control_gefs -Checking test 105 datm_control_gefs results .... +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 +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 = 94.162639 + 0: The total amount of wall time = 97.500170 -Test 105 datm_control_gefs PASS +Test 107 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_cfsr -Checking test 106 datm_bulk_cfsr results .... +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 +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 = 99.111430 + 0: The total amount of wall time = 105.271493 -Test 106 datm_bulk_cfsr PASS +Test 108 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_bulk_gefs -Checking test 107 datm_bulk_gefs results .... +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 +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.246859 + 0: The total amount of wall time = 92.326933 -Test 107 datm_bulk_gefs PASS +Test 109 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_cfsr -Checking test 108 datm_mx025_cfsr results .... +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 +Checking test 110 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5960,14 +6102,14 @@ Checking test 108 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 = 391.029178 + 0: The total amount of wall time = 387.359123 -Test 108 datm_mx025_cfsr PASS +Test 110 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_mx025_gefs -Checking test 109 datm_mx025_gefs results .... +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 +Checking test 111 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5975,23 +6117,23 @@ Checking test 109 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 388.183296 + 0: The total amount of wall time = 409.867554 -Test 109 datm_mx025_gefs PASS +Test 111 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210309/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_255891/datm_debug_cfsr -Checking test 110 datm_debug_cfsr results .... +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 +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 = 281.109002 + 0: The total amount of wall time = 290.904811 -Test 110 datm_debug_cfsr PASS +Test 112 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 12 23:59:51 CST 2021 -Elapsed time: 02h:42m:49s. Have a nice day! +Fri Mar 19 14:13:34 CDT 2021 +Elapsed time: 01h:23m:02s. Have a nice day! diff --git a/tests/ci/ci.test b/tests/ci/ci.test index c1ebb3278b..bf8c8abd07 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,3 +1,3 @@ -fv3_ccpp_control +fv3_control thr mpi dcp rst bit dbg ci-test-weather diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 870f4dfc5a..0fc5f52233 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -268,9 +268,6 @@ FSICS = 99999, / &nam_stochy - lon_s=768, - lat_s=384, - ntrunc=382, SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, diff --git a/tests/rt.conf b/tests/rt.conf index a4e120fa44..c1669c361e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -80,7 +80,7 @@ RUN | fv3_gfs_v15p2 RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | -RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel | fv3 | +RUN | fv3_gfs_v15p2_RRTMGP | - cheyenne.intel jet.intel | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | RUN | fv3_gfs_v16_RRTMGP_2thrd | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 90a0532faf..5a892accb0 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -415,9 +415,9 @@ if [[ $TESTS_FILE =~ '35d' ]]; then fi if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210316/${RT_COMPILER^^}} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210318/${RT_COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210316} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20210318} fi INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210212} diff --git a/tests/utest b/tests/utest index 6dd1394290..4ba5c5bbfa 100755 --- a/tests/utest +++ b/tests/utest @@ -32,11 +32,11 @@ usage() { echo echo " Examples" echo - echo " 'utest -n fv3_ccpp_control' tests all for fv3_ccpp_control" - echo " 'utest -n fv3_ccpp_control -c rst' tests restart for fv3_ccpp_control" - echo " 'utest -n fv3_ccpp_gfdlmp -c mpi,thr' tests mpi and threading for fv3_ccpp_gfdlmp" - echo " 'utest -n fv3_ccpp_gfdlmp -c bit' tests bit for fv3_ccpp_gfdlmp" - echo " 'utest -n fv3_ccpp_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_ccpp_satmedmf" + echo " 'utest -n fv3_control' tests all for fv3_control" + echo " 'utest -n fv3_control -c rst' tests restart for fv3_control" + echo " 'utest -n fv3_gfdlmp -c mpi,thr' tests mpi and threading for fv3_gfdlmp" + echo " 'utest -n fv3_gfdlmp -c bit' tests bit for fv3_gfdlmp" + echo " 'utest -n fv3_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_satmedmf" echo #set -x } diff --git a/tests/utest.bld b/tests/utest.bld index 90814bc59e..a2852dbeb9 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,22 +1,22 @@ -fv3_ccpp_control | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf_esmf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_netcdf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGlatlon_netcdf | SUITES=FV3_GFS_2017 -fv3_ccpp_wrtGauss_nemsio | SUITES=FV3_GFS_2017 -fv3_ccpp_stochy | SUITES=FV3_GFS_2017 -fv3_ccpp_iau | SUITES=FV3_GFS_2017 -fv3_ccpp_ca | SUITES=FV3_GFS_2017 -fv3_ccpp_lheatstrg | SUITES=FV3_GFS_2017 -fv3_ccpp_gfdlmprad | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_atmwav | SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -fv3_ccpp_multigases | SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -fv3_ccpp_gfdlmp | SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_gwd | SUITES=FV3_GFS_2017_gfdlmp -fv3_ccpp_gfdlmprad_noahmp | SUITES=FV3_GFS_2017_gfdlmp_noahmp -fv3_ccpp_csawmg | SUITES=FV3_GFS_2017_csawmg -fv3_ccpp_satmedmf | SUITES=FV3_GFS_2017_satmedmf -fv3_ccpp_satmedmfq | SUITES=FV3_GFS_2017_satmedmfq -fv3_ccpp_gfsv16_csawmg | SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gfsv16_csawmgt | SUITES=FV3_GFS_v16_csawmg -fv3_ccpp_gocart_clm | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -fv3_ccpp_gfs_v16_flake | SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +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 From 40d988d8301834663afeb3f8a1201475bfb11bab Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Mon, 22 Mar 2021 10:17:39 -0400 Subject: [PATCH 21/23] QUAD_PRECISION is ON in FMS by default and is not used anywhere else. --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06f05adbe6..a7a05dad0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,6 @@ 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(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") @@ -88,7 +87,6 @@ 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("") @@ -163,9 +161,6 @@ if(FMS) 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() add_subdirectory(FMS) From 277cefbe9e217257d1282e265aae561ce65d71cc Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Mon, 22 Mar 2021 10:33:57 -0400 Subject: [PATCH 22/23] address comments from @dusanjovic-noaa. Missing table columns --- tests/rt.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/rt.conf b/tests/rt.conf index a39a30fbea..84ffb8839d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -23,13 +23,13 @@ RUN | fv3_iau RUN | fv3_lheatstrg | | fv3 | # WW3 not working on Cheyenne in the past, need to check if it works now -COMPILE | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +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 | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | RUN | fv3_multigases | | fv3 | COMPILE | APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | @@ -179,7 +179,7 @@ RUN | cpld_debugfrac # Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | APP=DATM_NEMS +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 | APP=DATM_NEMS +COMPILE | APP=DATM_NEMS | - wcoss_cray jet.intel | fv3 | RUN | datm_debug_cfsr | - wcoss_cray jet.intel | fv3 | From 362451190dc2353854dc2e6ee5dadc6eb8f7240c Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Mon, 22 Mar 2021 10:37:44 -0400 Subject: [PATCH 23/23] remove FMS installation block from top-level CMakeLists.txt --- CMakeLists.txt | 29 ++++++----------------------- 1 file changed, 6 insertions(+), 23 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a7a05dad0d..fd94cefda7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -366,33 +366,16 @@ target_link_libraries(ufs_model PRIVATE ufs ############################################################################### ### Install ############################################################################### -if(FMS) - install( - TARGETS fms - EXPORT fms-config - LIBRARY DESTINATION lib - ARCHIVE DESTINATION lib - PUBLIC_HEADER DESTINATION include ) - - install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/FMS/mod DESTINATION ${CMAKE_INSTALL_PREFIX}) - - install(EXPORT fms-config - DESTINATION lib/cmake - ) -endif(FMS) - -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 ###############################################################################