diff --git a/.gitmodules b/.gitmodules index 199229c3b7..f0cd1489cf 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-GSL/fv3atm - branch = gsl/develop + url = ssh://git@github.com/SamuelTrahanNOAA/fv3atm + branch = gsl/merge-community-to-develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 @@ -38,3 +38,7 @@ path = GOCART url = https://github.com/GEOS-ESM/GOCART branch = develop +[submodule "AQM"] + path = AQM + url = https://github.com/NOAA-EMC/AQM + branch = develop diff --git a/AQM b/AQM new file mode 160000 index 0000000000..79ff7a9899 --- /dev/null +++ b/AQM @@ -0,0 +1 @@ +Subproject commit 79ff7a9899462a674526c1abaf7044cb2963786d diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index ad4282a002..f1ed1b8de6 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit ad4282a002c6a13b7017ae00f6ec08b175617972 +Subproject commit f1ed1b8de64f466efb24bddb40d4406425b3db07 diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index 0266d44505..be502ec8d6 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -1,6 +1,9 @@ # CDEPS compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fallow-argument-mismatch -fallow-invalid-boz") + endif() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") @@ -69,7 +72,7 @@ add_dependencies(docn share streams dshr) set_target_properties(docn PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(docn PRIVATE $) target_link_libraries(docn PRIVATE dshr share streams) -target_link_libraries(docn PRIVATE esmf) +target_link_libraries(docn PRIVATE esmf PIO::PIO_Fortran) # CDEPS/drof add_library(drof OBJECT ${cdeps_drof_files}) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 27dfd1b6b0..c660075e50 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 27dfd1b6b06a2e95fbb10c78c9a6110669d3eb3f +Subproject commit c660075e50530add27cf920ece06911577612a80 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index df272f1430..763405c02a 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit df272f1430c05236843b983b1b0cf760c29d5397 +Subproject commit 763405c02a8f7eec8c1e1a360fcb5bf3570604e1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 30cc43e8ed..4bfdfab30e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.19) project(ufs VERSION 1.0 @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SW HAFS HAFSW HAFS-ALL NG-GODAS) +list(APPEND VALID_APPS ATM ATMAERO ATMAQ ATMW S2S S2SA S2SW S2SWA HAFS HAFSW HAFS-ALL NG-GODAS) 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}") @@ -24,6 +24,7 @@ endif() set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") +set(AQM OFF CACHE BOOL "Enable AQM") set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") set(HYCOM OFF CACHE BOOL "Enable HYCOM") @@ -40,6 +41,7 @@ include(cmake/configure_apps.cmake) message("") message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") +message("AQM .............. ${AQM}") message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") message("HYCOM ............ ${HYCOM}") @@ -60,9 +62,9 @@ set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") set(INLINE_POST OFF CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") +set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") -set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMAKE_Platform $ENV{CMAKE_Platform}) @@ -84,9 +86,9 @@ message("DEBUG ............ ${DEBUG}") message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") message("INLINE_POST ...... ${INLINE_POST}") message("MULTI_GASES ...... ${MULTI_GASES}") +message("MOVING_NEST ...... ${MOVING_NEST}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") -message("REPRO ............ ${REPRO}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") message("") @@ -144,6 +146,13 @@ if(FV3) add_subdirectory(FV3) endif() +############################################################################### +### AQM +############################################################################### +if(AQM) + add_subdirectory(AQM) +endif() + ############################################################################### ### GOCART ############################################################################### @@ -155,27 +164,10 @@ endif() ### Wave components [WW3] ############################################################################### if(WW3) - if(CMAKE_Platform) - if(${CMAKE_Platform} MATCHES "linux*" OR ${CMAKE_Platform} MATCHES "macosx*") - if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(WW3_COMP "gnu") - elseif (CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(WW3_COMP "intel") - endif() - else() - set(WW3_COMP ${CMAKE_Platform}) - endif() - endif() - message("Build WW3:") - message(" run: ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nemslibonly") - message(" in: ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/esmf") - message("") - - add_custom_target(ww3_nems - 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 options for WW3 build + set(SWITCH "multi_esmf" CACHE STRING "Default to switch_multi_esmf") + set(MULTI_ESMF ON CACHE BOOL "Enable ESMF for WW3") + add_subdirectory(WW3) endif() ############################################################################### @@ -220,6 +212,12 @@ if(JEDI_DRIVER) list(APPEND _ufs_defs_private JEDI_DRIVER=ON) endif() +if(AQM) + add_dependencies(ufs aqm) + list(APPEND _ufs_defs_private FRONT_AQM=aqm) + list(APPEND _ufs_libs_public aqm) +endif() + if(UFS_GOCART) add_dependencies(ufs UFS_Aerosols) list(APPEND _ufs_defs_private FRONT_GOCART=Aerosol_Cap) @@ -227,10 +225,8 @@ if(UFS_GOCART) endif() if(WW3) - add_dependencies(ufs ww3_nems) list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) - target_include_directories(ufs PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/WW3/model/mod) - list(APPEND _ufs_libs_public ${WW3_LIBS}) + target_link_libraries(ufs PUBLIC WW3::WW3) endif() list(APPEND _ufs_libs_public esmf) diff --git a/FV3 b/FV3 index 75396def04..d22a5069d7 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 75396def04bc38a3fafdfb581483ad89145b96f8 +Subproject commit d22a5069d7dfa089351de233b765515bee8f5b2b diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 44313d9d6d..e532d86253 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 44313d9d6df889a51f74611e3a9f0e15f8c12c4d +Subproject commit e532d86253a86d9ae23da8199ef27653339f0768 diff --git a/README.md b/README.md index 331cba1d45..311fec3b65 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # ufs-weather-model -This is the UFS weather model source code. +This is the UFS weather model source code # Where to find information diff --git a/WW3 b/WW3 index bba5df06c0..d00e431a28 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit bba5df06c06df7528113ceccf3cca5b2ba8cb9ff +Subproject commit d00e431a28a4225fdd8f8303e1c12b5a01e0d85e diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 039e9f9b72..4069d922d7 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -12,24 +12,7 @@ if(DEBUG) add_definitions(-DDEBUG) set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") -elseif(REPRO) - add_definitions(-DREPRO) - if (APPLE) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O0") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O0") - else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2") - endif() else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2") + set(CMAKE_C_FLAGS_RELEASE "-O2") endif() - -# For ccpp -set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_C_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index a91bc30cec..83571e4707 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -16,38 +16,23 @@ if(DEBUG) endif() endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") -elseif(REPRO) - add_definitions(-DREPRO) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model consistent -qoverride-limits") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -debug minimal") else() - if(32BIT) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3") - else() - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -no-prec-div -no-prec-sqrt") - endif() - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2 -debug minimal") + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model consistent") + set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") set(FAST "-fast-transcendentals") if(AVX2) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=core-avx2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=core-avx2") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx2") elseif(SIMDMULTIARCH) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -axSSE4.2,CORE-AVX2") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -axSSE4.2,CORE-AVX2") - elseif(AVX) - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -march=core-avx-i") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=core-avx-i") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -axSSE4.2,CORE-AVX2") + elseif(AVX) + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx-i") + set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx-i") endif() endif() -# For ccpp -set(CMAKE_C_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_C_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_CXX_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) -set(CMAKE_Fortran_FLAGS_BITFORBIT "-O2 -fPIC" CACHE STRING "" FORCE) - if(APPLE) # The linker on macOS does not include `common symbols` by default # Passing the -c flag includes them and fixes an error with undefined symbols diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index fea0fc2de5..1d433c4f3b 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,13 +13,16 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW)$") +if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) if(APP MATCHES "ATMW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) message("Configuring UFS app in Atmosphere with Waves mode") + elseif(APP MATCHES "ATMAQ") + set(AQM ON CACHE BOOL "Enable AQM" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") else() message("Configuring UFS app in Atmosphere Only mode") endif() @@ -35,19 +38,27 @@ if(APP MATCHES "^(NG-GODAS)$") message("Configuring UFS app in (CDEPS) Data Atmosphere mode") endif() -if(APP MATCHES "^(S2S|S2SW)$") +if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA)$") + set(APP_MSG "Configuring UFS app in S2S") set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(MOM6 ON CACHE BOOL "Enable MOM6" FORCE) set(CICE6 ON CACHE BOOL "Enable CICE6" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) - if(APP MATCHES "S2SW") + if(APP MATCHES "^S2SW") set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) - message("Configuring UFS app in S2S with Waves mode") - else() - message("Configuring UFS app in S2S mode") + string(CONCAT APP_MSG ${APP_MSG} " with Waves") + endif() + if(APP MATCHES "A$") + set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) + if(WW3) + string(CONCAT APP_MSG ${APP_MSG} " and Aerosols") + else() + string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") + endif() endif() + message("${APP_MSG} mode") endif() if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index b77d9183d2..ca11724c6d 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -40,13 +40,13 @@ The ufs-weather-model repository supports the short- and medium-range UFS applic - https://github.com/NOAA-EMC/CICE * - NOAA/NCEP WAVEWATCH III Model (WW3) - https://github.com/NOAA-EMC/WW3 + * - The Goddard Chemistry Aerosol Radiation and Transport (GOCART) + - https://github.com/GEOS-ESM/GOCART * - NUOPC Community Mediator for Earth Prediction Systems (CMEPS) - https://github.com/NOAA-EMC/CMEPS * - Community Data Models for Earth Prediction Systems (CDEPS) - https://github.com/NOAA-EMC/CDEPS -.. TODO:: GOCART information in progress - In the table, the left column contains a description of each repository, and the right column shows the component repositories which are pointing to (or will point to) the authoritative repositories. The ufs-weather-model currently uses git submodule to manage the sub-components. The umbrella repository for the UFS Weather Model is named ufs-weather-model. Under this repository reside a number of submodules that are nested in specific directories under the parent repository’s working directory. When the ufs-weather-model repository is cloned, the *.gitmodules* file creates the following directories: @@ -68,6 +68,7 @@ The umbrella repository for the UFS Weather Model is named ufs-weather-model. U ├── CICE-interface │ └── CICE https://github.com/NOAA-EMC/CICE ├── WW3 https://github.com/NOAA-EMC/WW3 + ├── GOCART https://github.com/GEOS-ESM/GOCART ├── CMEPS-interface │ └── CMEPS https://github.com/NOAA-EMC/CMEPS ├── CDEPS-interface @@ -118,6 +119,8 @@ When the ufs-weather-model is cloned, the basic directory structure will be simi ├── WW3 │ └── model --------- WW3 model │ └── esmf --------- NUOPC WW3 cap + ├── GOCART + │ └── ESMF --------- GOCART model ├── CDEPS-interface │ └── CDEPS │ ├── datm --------- CDEPS DATM @@ -126,9 +129,7 @@ When the ufs-weather-model is cloned, the basic directory structure will be simi ├── tests -------- regression test infrastructure │ └── parm │ └── tests - │ └── fv3_conf - -.. TODO:: GOCART information in progress + │ └── fv3_conf The physics subdirectory in the *gfsphysics* directory is not used or supported as part of this release (all physics is available through the :term:`CCPP` using diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index fba72b1c58..0a282e323d 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -22,8 +22,12 @@ The ufs-weather-model can be configured as one of several applications, from a s - UFSAtm coupled to GOCART * - S2S - Coupled UFSATM-MOM6-CICE6-CMEPS + * - S2SA + - Coupled UFSATM-MOM6-CICE6-GOCART-CMEPS * - S2SW - Coupled UFSATM-MOM6-CICE6-WW3-CMEPS + * - S2SWA + - Coupled UFSATM-MOM6-CICE6-WW3-GOCART-CMEPS * - NG-GODAS - Coupled CDEPS-DATM-MOM6-CICE6-CMEPS * - HAFS @@ -734,41 +738,106 @@ GOCART Static datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. TODO:: GOCART information in progress +The static input files for GOCART configurations are listed and described in :numref:`Table %s `. -The static input files for global configurations are listed and described in :numref:`Table %s `. +.. _GOCART_ControlFiles: -.. _GOCART_FixFiles: +.. list-table:: *GOCART run control files* + :widths: 40 50 + :header-rows: 1 -.. list-table:: *Fix files containing climatological information* + * - Filename + - Description + * - AERO.rc + - Atmospheric Model Configuration Parameters + * - AERO_ExtData.rc + - Model Inputs related to aerosol emissions + * - AERO_HISTORY.rc + - Create History List for Output + * - AGCM.rc + - Atmospheric Model Configuration Parameters + * - CA2G_instance_CA.bc.rc + - Resource file for Black Carbon parameters + * - CA2G_instance_CA.br.rc + - Resource file for Brown Carbon parameters + * - CA2G_instance_CA.oc.rc + - Resource file for Organic Carbon parameters + * - CAP.rc + - Meteorological fields imported from atmospheric model (CAP_imports) & Prognostic Tracers Table (CAP_exports) + * - DU2G_instance_DU.rc + - Resource file for Dust parameters + * - GOCART2G_GridComp.rc + - The basic properties of the GOCART2G Grid Components + * - NI2G_instance_NI.rc + - Resource file for Nitrate parameters + * - SS2G_instance_SS.rc + - Resource file for Sea Salt parameters + * - SU2G_instance_SU.rc + - Resource file for Sulfur parameters + +GOCART inputs defined in AERO_ExtData are listed and described in :numref:`Table %s `. + +.. _GOCART_InputFiles: + +.. list-table:: *GOCART inputs defined in AERO_ExtData.rc* :widths: 40 50 :header-rows: 1 * - Filename - Description - * - - - + * - ExtData/dust + - FENGSHA input files + * - ExtData/QFED + - QFED biomass burning emissions + * - ExtData/CEDS + - Anthropogenic emissions + * - ExtData/MERRA2 + - DMS concentration + * - ExtData/PIESA/sfc + - Aviation emissions + * - ExtData/PIESA/L127 + - H2O2, OH and NO3 mixing ratios + * - ExtData/MEGAN_OFFLINE_BVOC + - VOCs MEGAN biogenic emissions + * - ExtData/monochromatic + - Aerosol monochromatic optics files + * - ExtData/optics + - Aerosol radiation bands optic files for RRTMG + * - ExtData/volcanic + - SO2 volcanic pointwise sources + +The static input files when using climatology (MERRA2) are listed and described in :numref:`Table %s `. + +.. _Climatology_InputFiles: + +.. list-table:: *Inputs when using climatology (MERRA2)* + :widths: 40 50 + :header-rows: 1 + * - Filename + - Description + * - merra2.aerclim.2003-2014.m$(month).nc + - MERRA2 aerosol climatology mixing ratio + * - Optics_BC.dat + - BC optical look-up table for MERAA2 + * - Optics_DU.dat + - DUST optical look-up table for MERAA2 + * - Optics_OC.dat + - OC optical look-up table for MERAA2 + * - Optics_SS.dat + - Sea Salt optical look-up table for MERAA2 + * - Optics_SU.dat + - Sulfate optical look-up table for MERAA2 + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid description and initial condition files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -.. TODO:: GOCART information in progress - -The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. +Running GOCART in UFS does not require aerosol initial conditions, as aerosol models can always start from scratch (cold start), however, this approach does require more than two weeks of model spin-up to obtain reasonable aerosol simulation results. -.. _GOCART_GridICFiles: +Therefore, the most popular method is to take previous aerosol simulation results. The result is not necessarily from the same model, it could be from a climatology result, such as MERAA2, or a different model but with the same aerosol species and bin/size distribution. -.. list-table:: *Input files containing grid information and initial conditions for global configurations* - :widths: 35 50 15 - :header-rows: 1 - - * - Filename - - Description - - Date-dependent - * - - - - - +The aerosol initial input currently read by GOCART is the same format as the UFSAtm initial input data format of "gfs_data_tile[1-6].nc" in :numref:`Table %s `, so the aerosol initial conditions should be combined with the meteorological initial conditions as one initial input file. There are many tools available for this purpose. Ufs-utils in the global workflow that supports UFS models always provides a solution for this. ========================== Model configuration files @@ -1205,7 +1274,7 @@ shows the following parameters that can be set in *model_configure* at run-time. * - output_fh - history file output forecast hours or history file output frequency if the second elelment is -1 - real - - -1 (negative: turn off the option, otherwise overwritten nfhout/nfhout_fh; 6 -1: output every 6 hoursr; 6 9: output history files at fh=6 and 9) + - -1 (negative: turn off the option, otherwise overwritten nfhout/nfhout_fh; 6 -1: output every 6 hoursr; 6 9: output history files at fh=6 and 9. Note: output_fh can only take 1032 characters) :numref:`Table %s ` shows the following parameters in *model_configure* that are not usually changed. @@ -1605,7 +1674,140 @@ For more HAFS, HAFSW, and HAFS-ALL configurations please see the following nems. - `HAFS ATM-OCN-WAV `_ - `HAFS ATM-DOCN `_ -.. TODO:: GOCART information in progress +For the coupled GOCART in S2SAW application, a sample *nems.configure* is shown below : + +.. code-block:: console + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 287 + :: + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 311 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # CHM # + CHM_model: gocart + CHM_petlist_bounds: 0 287 + CHM_attributes:: + Verbosity = 0 + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 312 431 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 432 479 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 6 + stop_option = nhours + stop_ymd = -999 + :: + + # WAV # + WAV_model: ww3 + WAV_petlist_bounds: 480 559 + WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + :: + + # CMEPS warm run sequence + runSeq:: + @1800 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN -> WAV + WAV -> OCN :srcMaskValues=1 + OCN + @300 + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + WAV -> ATM :srcMaskValues=1 + ATM -> WAV + ICE -> WAV + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac + history_tile_atm = 384 + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 6 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 6 + stop_option = nhours + stop_ymd = -999 + :: --------------------------------------- *The SDF (Suite Definition File) file* diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/EARTH_GRID_COMP.F90 index 07169e6b65..c6ca6b22f8 100644 --- a/driver/EARTH_GRID_COMP.F90 +++ b/driver/EARTH_GRID_COMP.F90 @@ -80,6 +80,10 @@ MODULE module_EARTH_GRID_COMP ! - Handle build time IPM options: #ifdef FRONT_IPE use FRONT_IPE, only: IPE_SS => SetServices +#endif + ! - Handle build time AQM options: +#ifdef FRONT_AQM + use FRONT_AQM, only: AQM_SS => SetServices #endif ! - Handle build time GOCART options: #ifdef FRONT_GOCART @@ -489,6 +493,23 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_AQM + if (trim(model) == "aqm") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif + call NUOPC_DriverAddComp(driver, trim(prefix), AQM_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_GOCART if (trim(model) == "gocart") then !TODO: Remove bail code and pass info and SetVM to DriverAddComp diff --git a/modulefiles/ufs_cheyenne.gnu b/modulefiles/ufs_cheyenne.gnu index 2698e2b2b9..a157b7369c 100644 --- a/modulefiles/ufs_cheyenne.gnu +++ b/modulefiles/ufs_cheyenne.gnu @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" -module load cmake/3.18.2 +module load cmake/3.22.0 module load python/3.7.9 # load programming environment @@ -16,7 +16,7 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.2.0/modulefiles/stack +module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack module load hpc/1.2.0 module load hpc-gnu/10.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/ufs_cheyenne.gnu_debug b/modulefiles/ufs_cheyenne.gnu_debug index 6d95c1badb..9c015b390a 100644 --- a/modulefiles/ufs_cheyenne.gnu_debug +++ b/modulefiles/ufs_cheyenne.gnu_debug @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" -module load cmake/3.18.2 +module load cmake/3.22.0 module load python/3.7.9 # load programming environment @@ -16,7 +16,7 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.2.0/modulefiles/stack +module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack module load hpc/1.2.0 module load hpc-gnu/10.1.0 module load hpc-mpt/2.22 diff --git a/modulefiles/ufs_cheyenne.intel b/modulefiles/ufs_cheyenne.intel index 1926ebe6e2..0a3b75144e 100644 --- a/modulefiles/ufs_cheyenne.intel +++ b/modulefiles/ufs_cheyenne.intel @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" -module load cmake/3.18.2 +module load cmake/3.22.0 module load python/3.7.9 # load programming environment @@ -16,7 +16,8 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.2.0/modulefiles/stack +module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack + module load hpc/1.2.0 module load hpc-intel/2021.2 module load hpc-mpt/2.22 diff --git a/modulefiles/ufs_cheyenne.intel_debug b/modulefiles/ufs_cheyenne.intel_debug index c45c5e4fb2..98a6febd75 100644 --- a/modulefiles/ufs_cheyenne.intel_debug +++ b/modulefiles/ufs_cheyenne.intel_debug @@ -6,7 +6,7 @@ proc ModulesHelp {} { module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" -module load cmake/3.18.2 +module load cmake/3.22.0 module load python/3.7.9 # load programming environment @@ -16,7 +16,7 @@ module load mpt/2.22 module load ncarcompilers/0.5.0 module unload netcdf -module use /glade/p/ral/jntp/GMTB/tools/hpc-stack-v1.2.0/modulefiles/stack +module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack module load hpc/1.2.0 module load hpc-intel/2021.2 module load hpc-mpt/2.22 diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common index 6a0a66dba5..b601a612a8 100644 --- a/modulefiles/ufs_common +++ b/modulefiles/ufs_common @@ -7,8 +7,8 @@ module load png/1.6.35 module load hdf5/1.10.6 module load netcdf/4.7.4 module load pio/2.5.2 -module load esmf/8.2.1b04 -module load fms/2021.03 +module load esmf/8.3.0b09 +module load fms/2022.01 module load bacio/2.4.1 module load crtm/2.3.0 @@ -20,4 +20,4 @@ module load w3nco/2.4.1 module load gftl-shared/v1.3.3 module load yafyaml/v0.5.1 -module load mapl/2.11.0-esmf-8.2.1b04 +module load mapl/2.11.0-esmf-8.3.0b09 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug index 5eeea46b5c..fa274306a8 100644 --- a/modulefiles/ufs_common_debug +++ b/modulefiles/ufs_common_debug @@ -7,8 +7,8 @@ module load png/1.6.35 module load hdf5/1.10.6 module load netcdf/4.7.4 module load pio/2.5.2 -module load esmf/8.2.1b04-debug -module load fms/2021.03 +module load esmf/8.3.0b09-debug +module load fms/2022.01 module load bacio/2.4.1 module load crtm/2.3.0 @@ -20,4 +20,4 @@ module load w3nco/2.4.1 module load gftl-shared/v1.3.3 module load yafyaml/v0.5.1 -module load mapl/2.11.0-esmf-8.2.1b04 +module load mapl/2.11.0-esmf-8.3.0b09 diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel index b505d42b9b..e9dfa639d6 100644 --- a/modulefiles/ufs_gaea.intel +++ b/modulefiles/ufs_gaea.intel @@ -30,6 +30,8 @@ module load hpc-cray-mpich/7.7.11 module load ufs_common +setenv I_MPI_DAPL_UD 1 + setenv CC cc setenv CXX CC setenv FC ftn diff --git a/modulefiles/ufs_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug index 2a51bf3208..a2e573739a 100644 --- a/modulefiles/ufs_gaea.intel_debug +++ b/modulefiles/ufs_gaea.intel_debug @@ -27,6 +27,8 @@ module load hpc-cray-mpich/7.7.11 module load ufs_common_debug +setenv I_MPI_DAPL_UD 1 + setenv CC cc setenv CXX CC setenv FC ftn diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu index 1ddd59aab3..2322493abc 100644 --- a/modulefiles/ufs_hera.gnu +++ b/modulefiles/ufs_hera.gnu @@ -23,9 +23,6 @@ module load hpc-mpich/3.3.2 module load ufs_common -module unload fms -module load fms/2021.03-avx - setenv CC mpicc setenv CXX mpicxx setenv FC mpif90 diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index f20887c316..e1ea830236 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -20,13 +20,9 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -#module swap impi/2021.3.0 module load ufs_common -module unload fms -module load fms/2021.03-avx - setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 8813814012..8e3c1f2676 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -20,7 +20,6 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -#module swap impi/2021.3.0 module load ufs_common_debug diff --git a/modulefiles/ufs_jet.intel b/modulefiles/ufs_jet.intel index c495f4ba25..f31a5945b4 100644 --- a/modulefiles/ufs_jet.intel +++ b/modulefiles/ufs_jet.intel @@ -19,6 +19,8 @@ module load hpc-impi/2018.4.274 module load ufs_common +setenv I_MPI_DAPL_UD 1 + setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort diff --git a/modulefiles/ufs_jet.intel_debug b/modulefiles/ufs_jet.intel_debug index f5c16f7f0f..8c1e67fb41 100644 --- a/modulefiles/ufs_jet.intel_debug +++ b/modulefiles/ufs_jet.intel_debug @@ -19,6 +19,8 @@ module load hpc-impi/2018.4.274 module load ufs_common_debug +setenv I_MPI_DAPL_UD 1 + setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort diff --git a/modulefiles/ufs_orion.intel b/modulefiles/ufs_orion.intel index 30d8eb23de..f9791644d4 100644 --- a/modulefiles/ufs_orion.intel +++ b/modulefiles/ufs_orion.intel @@ -8,7 +8,7 @@ module-whatis "loads UFS Model prerequisites for Orion/Intel" module load contrib noaatools -module load cmake/3.18.1 +module load cmake/3.22.1 module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack @@ -23,3 +23,5 @@ setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort setenv CMAKE_Platform orion.intel + +setenv I_MPI_DAPL_UD 1 diff --git a/modulefiles/ufs_orion.intel_debug b/modulefiles/ufs_orion.intel_debug index 5f0f492a8d..eb6d4bb708 100644 --- a/modulefiles/ufs_orion.intel_debug +++ b/modulefiles/ufs_orion.intel_debug @@ -8,7 +8,7 @@ module-whatis "loads UFS Model prerequisites for Orion/Intel" module load contrib noaatools -module load cmake/3.18.1 +module load cmake/3.22.1 module load python/3.7.5 module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack diff --git a/modulefiles/ufs_wcoss_cray b/modulefiles/ufs_wcoss_cray index bfba467ee7..22a4149bdf 100644 --- a/modulefiles/ufs_wcoss_cray +++ b/modulefiles/ufs_wcoss_cray @@ -57,8 +57,8 @@ module load gni-headers module load udreg module load ugni -module load esmf/8.2.1b04 -module load fms/2021.03 +module load esmf/8.3.0b09 +module load fms/2021.04 module swap pmi pmi/5.0.11 diff --git a/modulefiles/ufs_wcoss_cray_debug b/modulefiles/ufs_wcoss_cray_debug index 7a8e80767a..264e210d83 100644 --- a/modulefiles/ufs_wcoss_cray_debug +++ b/modulefiles/ufs_wcoss_cray_debug @@ -57,8 +57,8 @@ module load gni-headers module load udreg module load ugni -module load esmf/8.2.1b04-debug -module load fms/2021.03 +module load esmf/8.3.0b09-debug +module load fms/2021.04 module swap pmi pmi/5.0.11 diff --git a/modulefiles/ufs_wcoss_dell_p3 b/modulefiles/ufs_wcoss_dell_p3 index fc688d439e..817339afa3 100644 --- a/modulefiles/ufs_wcoss_dell_p3 +++ b/modulefiles/ufs_wcoss_dell_p3 @@ -20,6 +20,8 @@ module load hpc-impi/18.0.1 module load ufs_common +setenv I_MPI_DAPL_UD 1 + setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort diff --git a/modulefiles/ufs_wcoss_dell_p3_debug b/modulefiles/ufs_wcoss_dell_p3_debug index 81bd3cbc5d..75a4678a67 100644 --- a/modulefiles/ufs_wcoss_dell_p3_debug +++ b/modulefiles/ufs_wcoss_dell_p3_debug @@ -20,6 +20,7 @@ module load hpc-impi/18.0.1 module load ufs_common_debug +setenv I_MPI_DAPL_UD 1 setenv CC mpiicc setenv CXX mpiicpc setenv FC mpiifort diff --git a/stochastic_physics b/stochastic_physics index 00d063ed99..5232846c2c 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 00d063ed991a1ca0d0705634366beadbff063345 +Subproject commit 5232846c2cae2b37b891f220c11dfa4280b46edc diff --git a/tests/OpnReqTests_control_p8_hera.intel.log b/tests/OpnReqTests_control_p8_hera.intel.log index c4224b73a3..6c388501ff 100644 --- a/tests/OpnReqTests_control_p8_hera.intel.log +++ b/tests/OpnReqTests_control_p8_hera.intel.log @@ -1,12 +1,9 @@ -Fri Jan 7 14:03:37 UTC 2022 +Wed Apr 6 20:51:37 UTC 2022 Start Operation Requirement Test -Compile bit elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile dbg elapsed time 176 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile std elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_bit_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_bit_base Checking test bit_base control_p8 results .... Moving baseline bit_base control_p8 files .... Moving sfcf000.nc .........OK @@ -54,27 +51,27 @@ Moving baseline bit_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.490022 - 0: The maximum resident set size (KB) = 538872 + 0: The total amount of wall time = 223.323130 + 0: The maximum resident set size (KB) = 986108 Test bit_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_dbg_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dbg_base Checking test dbg_base control_p8 results .... Moving baseline dbg_base control_p8 files .... Moving sfcf001.nc .........OK Moving sfcf001.nc .........OK - 0: The total amount of wall time = 173.655482 - 0: The maximum resident set size (KB) = 579296 + 0: The total amount of wall time = 188.146796 + 0: The maximum resident set size (KB) = 1133204 Test dbg_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_dcp +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dcp Checking test dcp control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -121,14 +118,14 @@ Checking test dcp control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.431602 - 0: The maximum resident set size (KB) = 512036 + 0: The total amount of wall time = 198.841330 + 0: The maximum resident set size (KB) = 969344 Test dcp control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_fhz +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_fhz Checking test fhz control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -171,14 +168,14 @@ Checking test fhz control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.085952 - 0: The maximum resident set size (KB) = 515116 + 0: The total amount of wall time = 193.502760 + 0: The maximum resident set size (KB) = 969984 Test fhz control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_mpi +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_mpi Checking test mpi control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -225,14 +222,14 @@ Checking test mpi control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.497106 - 0: The maximum resident set size (KB) = 580060 + 0: The total amount of wall time = 312.284807 + 0: The maximum resident set size (KB) = 1042144 Test mpi control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_rst +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_rst Checking test rst control_p8 results .... Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -271,14 +268,14 @@ Checking test rst control_p8 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing sfcf024.nc .........OK - 0: The total amount of wall time = 71.703867 - 0: The maximum resident set size (KB) = 323052 + 0: The total amount of wall time = 101.337361 + 0: The maximum resident set size (KB) = 748452 Test rst control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_std_base +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_std_base Checking test std_base control_p8 results .... Moving baseline std_base control_p8 files .... Moving sfcf000.nc .........OK @@ -326,14 +323,14 @@ Moving baseline std_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.047293 - 0: The maximum resident set size (KB) = 520696 + 0: The total amount of wall time = 191.568003 + 0: The maximum resident set size (KB) = 974524 Test std_base control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_28630/control_p8_thr +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_thr Checking test thr control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -380,11 +377,11 @@ Checking test thr control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.427376 - 0: The maximum resident set size (KB) = 584948 + 0: The total amount of wall time = 252.746072 + 0: The maximum resident set size (KB) = 1113940 Test thr control_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 7 14:25:13 UTC 2022 -Elapsed time: 00h:21m:37s. Have a nice day! +Wed Apr 6 21:51:58 UTC 2022 +Elapsed time: 01h:00m:21s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log b/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log new file mode 100644 index 0000000000..3299a1285d --- /dev/null +++ b/tests/OpnReqTests_cpld_control_c96_noaero_p8_hera.intel.log @@ -0,0 +1,329 @@ +Wed Apr 6 22:08:01 UTC 2022 +Start Operation Requirement Test + + +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_dbg_base +Checking test dbg_base cpld_control_c96_noaero_p8 results .... +Moving baseline dbg_base cpld_control_c96_noaero_p8 files .... + Moving sfcf006.tile1.nc .........OK + Moving sfcf006.tile2.nc .........OK + Moving sfcf006.tile3.nc .........OK + Moving sfcf006.tile4.nc .........OK + Moving sfcf006.tile5.nc .........OK + Moving sfcf006.tile6.nc .........OK + Moving atmf006.tile1.nc .........OK + Moving atmf006.tile2.nc .........OK + Moving atmf006.tile3.nc .........OK + Moving atmf006.tile4.nc .........OK + Moving atmf006.tile5.nc .........OK + Moving atmf006.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-43200.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK + + 0: The total amount of wall time = 701.467643 + 0: The maximum resident set size (KB) = 1188428 + +Test dbg_base cpld_control_c96_noaero_p8 PASS + + +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_dcp +Checking test dcp cpld_control_c96_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 267.616965 + 0: The maximum resident set size (KB) = 1021152 + +Test dcp cpld_control_c96_noaero_p8 PASS + + +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_rst +Checking test rst cpld_control_c96_noaero_p8 results .... + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing 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/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + + 0: The total amount of wall time = 135.875481 + 0: The maximum resident set size (KB) = 806596 + +Test rst cpld_control_c96_noaero_p8 PASS + + +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_std_base +Checking test std_base cpld_control_c96_noaero_p8 results .... +Moving baseline std_base cpld_control_c96_noaero_p8 files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 255.559966 + 0: The maximum resident set size (KB) = 1021500 + +Test std_base cpld_control_c96_noaero_p8 PASS + + +baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base +working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_227826/cpld_control_c96_noaero_p8_thr +Checking test thr cpld_control_c96_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 313.511756 + 0: The maximum resident set size (KB) = 1177104 + +Test thr cpld_control_c96_noaero_p8 PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Apr 6 22:56:35 UTC 2022 +Elapsed time: 00h:48m:34s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_c96_p8_hera.intel.log b/tests/OpnReqTests_cpld_control_c96_p8_hera.intel.log index abf55b9d0e..1af0f1274e 100644 --- a/tests/OpnReqTests_cpld_control_c96_p8_hera.intel.log +++ b/tests/OpnReqTests_cpld_control_c96_p8_hera.intel.log @@ -1,11 +1,9 @@ -Fri Jan 21 20:09:38 UTC 2022 +Fri Mar 25 15:41:51 UTC 2022 Start Operation Requirement Test -Compile dbg elapsed time 207 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile std elapsed time 422 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_267597/cpld_control_c96_p8_dbg_base Checking test dbg_base cpld_control_c96_p8 results .... Moving baseline dbg_base cpld_control_c96_p8 files .... Moving sfcf006.tile1.nc .........OK @@ -20,6 +18,7 @@ Moving baseline dbg_base cpld_control_c96_p8 files .... Moving atmf006.tile4.nc .........OK Moving atmf006.tile5.nc .........OK Moving atmf006.tile6.nc .........OK + Moving gocart.inst_aod.20210322_1200z.nc4 .........OK Moving RESTART/coupler.res .........OK Moving RESTART/fv_core.res.nc .........OK Moving RESTART/fv_core.res.tile1.nc .........OK @@ -56,83 +55,14 @@ Moving baseline dbg_base cpld_control_c96_p8 files .... Moving RESTART/iced.2021-03-22-43200.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 604.646137 - 0: The maximum resident set size (KB) = 678920 + 0: The total amount of wall time = 1036.583318 + 0: The maximum resident set size (KB) = 1188280 Test dbg_base cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_dcp -Checking test dcp cpld_control_c96_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 213.370759 - 0: The maximum resident set size (KB) = 610616 - -Test dcp cpld_control_c96_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_fhz +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_267597/cpld_control_c96_p8_fhz Checking test fhz cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -146,6 +76,7 @@ Checking test fhz cpld_control_c96_p8 results .... Comparing atmf021.tile4.nc .........OK Comparing atmf021.tile5.nc .........OK Comparing atmf021.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -182,14 +113,14 @@ Checking test fhz cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 199.007794 - 0: The maximum resident set size (KB) = 616200 + 0: The total amount of wall time = 322.567196 + 0: The maximum resident set size (KB) = 1121180 Test fhz cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_267597/cpld_control_c96_p8_rst Checking test rst cpld_control_c96_p8 results .... Comparing atmf024.tile1.nc .........OK Comparing atmf024.tile2.nc .........OK @@ -197,6 +128,7 @@ Checking test rst cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -239,14 +171,14 @@ Checking test rst cpld_control_c96_p8 results .... Comparing sfcf024.tile5.nc .........OK Comparing sfcf024.tile6.nc .........OK - 0: The total amount of wall time = 106.597575 - 0: The maximum resident set size (KB) = 376192 + 0: The total amount of wall time = 183.790868 + 0: The maximum resident set size (KB) = 1087144 Test rst cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_267597/cpld_control_c96_p8_std_base Checking test std_base cpld_control_c96_p8 results .... Moving baseline std_base cpld_control_c96_p8 files .... Moving sfcf021.tile1.nc .........OK @@ -273,6 +205,7 @@ Moving baseline std_base cpld_control_c96_p8 files .... Moving atmf024.tile4.nc .........OK Moving atmf024.tile5.nc .........OK Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK Moving RESTART/coupler.res .........OK Moving RESTART/fv_core.res.nc .........OK Moving RESTART/fv_core.res.tile1.nc .........OK @@ -309,14 +242,14 @@ Moving baseline std_base cpld_control_c96_p8 files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 199.095277 - 0: The maximum resident set size (KB) = 619248 + 0: The total amount of wall time = 331.473929 + 0: The maximum resident set size (KB) = 1121956 Test std_base cpld_control_c96_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_29460/cpld_control_c96_p8_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_267597/cpld_control_c96_p8_thr Checking test thr cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -342,6 +275,7 @@ Checking test thr cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -378,11 +312,11 @@ Checking test thr cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 232.469343 - 0: The maximum resident set size (KB) = 683036 + 0: The total amount of wall time = 421.311949 + 0: The maximum resident set size (KB) = 1680756 Test thr cpld_control_c96_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 21 20:43:28 UTC 2022 -Elapsed time: 00h:33m:51s. Have a nice day! +Fri Mar 25 16:45:38 UTC 2022 +Elapsed time: 01h:03m:48s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index e9926d2eb9..f2a70e72b2 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,15 +1,16 @@ -Thu Feb 24 16:12:27 MST 2022 +Sat May 7 18:55:23 MDT 2022 Start Regression test -Compile 001 elapsed time 396 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 754 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 487 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 267 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 762 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 278 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 292 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -56,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 283.993261 -0:The maximum resident set size (KB) = 432932 +0:The total amount of wall time = 275.084690 +0:The maximum resident set size (KB) = 433100 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -102,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.135796 -0:The maximum resident set size (KB) = 182392 +0:The total amount of wall time = 136.738929 +0:The maximum resident set size (KB) = 182884 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -148,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 815.523159 -0:The maximum resident set size (KB) = 669128 +0:The total amount of wall time = 818.270648 +0:The maximum resident set size (KB) = 669972 Test 003 control_c48 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -166,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.364618 -0:The maximum resident set size (KB) = 427164 +0:The total amount of wall time = 174.583384 +0:The maximum resident set size (KB) = 427240 Test 004 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,15 +185,15 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 337.203166 -0:The maximum resident set size (KB) = 485660 +0:The total amount of wall time = 336.712262 +0:The maximum resident set size (KB) = 485688 Test 005 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_rrtmgp -Checking test 006 control_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson +Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -202,15 +203,15 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 339.976547 -0:The maximum resident set size (KB) = 529704 +0:The total amount of wall time = 374.475126 +0:The maximum resident set size (KB) = 795540 -Test 006 control_rrtmgp PASS +Test 006 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson -Checking test 007 control_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_no_aero +Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -220,15 +221,15 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 362.944906 -0:The maximum resident set size (KB) = 794912 +0:The total amount of wall time = 355.372321 +0:The maximum resident set size (KB) = 789380 -Test 007 control_thompson PASS +Test 007 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson_no_aero -Checking test 008 control_thompson_no_aero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_ras +Checking test 008 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -238,33 +239,15 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 339.422504 -0:The maximum resident set size (KB) = 788764 +0:The total amount of wall time = 289.117543 +0:The maximum resident set size (KB) = 446172 -Test 008 control_thompson_no_aero PASS +Test 008 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_ras -Checking test 009 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 289.380691 -0:The maximum resident set size (KB) = 445680 - -Test 009 control_ras PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_p8 -Checking test 010 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_p8 +Checking test 009 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -310,15 +293,15 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 277.488346 -0:The maximum resident set size (KB) = 490508 +0:The total amount of wall time = 318.275785 +0:The maximum resident set size (KB) = 817976 -Test 010 control_p8 PASS +Test 009 control_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_control -Checking test 011 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_control +Checking test 010 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -364,15 +347,15 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.246707 -0:The maximum resident set size (KB) = 773224 +0:The total amount of wall time = 702.942240 +0:The maximum resident set size (KB) = 773920 -Test 011 rap_control PASS +Test 010 rap_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_2threads -Checking test 012 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_2threads +Checking test 011 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -418,15 +401,15 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1196.269811 -0:The maximum resident set size (KB) = 839776 +0:The total amount of wall time = 1235.750264 +0:The maximum resident set size (KB) = 840896 -Test 012 rap_2threads PASS +Test 011 rap_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_restart -Checking test 013 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_restart +Checking test 012 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -464,15 +447,15 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 343.293181 -0:The maximum resident set size (KB) = 520636 +0:The total amount of wall time = 350.114940 +0:The maximum resident set size (KB) = 521064 -Test 013 rap_restart PASS +Test 012 rap_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_sfcdiff -Checking test 014 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_sfcdiff +Checking test 013 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -518,15 +501,15 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.798287 -0:The maximum resident set size (KB) = 773064 +0:The total amount of wall time = 704.204408 +0:The maximum resident set size (KB) = 773744 -Test 014 rap_sfcdiff PASS +Test 013 rap_sfcdiff PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_sfcdiff_restart -Checking test 015 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_sfcdiff_restart +Checking test 014 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -564,15 +547,15 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 341.502222 -0:The maximum resident set size (KB) = 520632 +0:The total amount of wall time = 349.049893 +0:The maximum resident set size (KB) = 521320 -Test 015 rap_sfcdiff_restart PASS +Test 014 rap_sfcdiff_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/hrrr_control -Checking test 016 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/hrrr_control +Checking test 015 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -618,15 +601,15 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 665.110749 -0:The maximum resident set size (KB) = 771020 +0:The total amount of wall time = 680.737753 +0:The maximum resident set size (KB) = 771432 -Test 016 hrrr_control PASS +Test 015 hrrr_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rrfs_v1beta -Checking test 017 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_v1beta +Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -672,15 +655,15 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 674.215151 -0:The maximum resident set size (KB) = 770624 +0:The total amount of wall time = 694.609953 +0:The maximum resident set size (KB) = 771408 -Test 017 rrfs_v1beta PASS +Test 016 rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rrfs_conus13km_hrrr_warm -Checking test 018 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_conus13km_hrrr_warm +Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -688,15 +671,15 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 316.756899 -0:The maximum resident set size (KB) = 591300 +0:The total amount of wall time = 322.098112 +0:The maximum resident set size (KB) = 592344 -Test 018 rrfs_conus13km_hrrr_warm PASS +Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rrfs_conus13km_radar_tten_warm -Checking test 019 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_conus13km_radar_tten_warm +Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -704,251 +687,237 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 318.562231 -0:The maximum resident set size (KB) = 594008 +0:The total amount of wall time = 324.507478 +0:The maximum resident set size (KB) = 595732 -Test 019 rrfs_conus13km_radar_tten_warm PASS +Test 018 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_debug -Checking test 020 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_debug +Checking test 019 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.714385 -0:The maximum resident set size (KB) = 423600 +0:The total amount of wall time = 79.704079 +0:The maximum resident set size (KB) = 424368 -Test 020 control_debug PASS +Test 019 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_diag_debug -Checking test 021 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_diag_debug +Checking test 020 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 85.593781 -0:The maximum resident set size (KB) = 480980 +0:The total amount of wall time = 85.951171 +0:The maximum resident set size (KB) = 481256 -Test 021 control_diag_debug PASS +Test 020 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/regional_debug -Checking test 022 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/regional_debug +Checking test 021 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 130.792123 -0:The maximum resident set size (KB) = 535200 +0:The total amount of wall time = 131.597428 +0:The maximum resident set size (KB) = 536188 -Test 022 regional_debug PASS +Test 021 regional_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_control_debug -Checking test 023 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_control_debug +Checking test 022 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.327522 -0:The maximum resident set size (KB) = 795412 +0:The total amount of wall time = 145.457329 +0:The maximum resident set size (KB) = 795940 -Test 023 rap_control_debug PASS +Test 022 rap_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_diag_debug -Checking test 024 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_diag_debug +Checking test 023 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.138689 -0:The maximum resident set size (KB) = 878136 +0:The total amount of wall time = 154.099763 +0:The maximum resident set size (KB) = 878496 -Test 024 rap_diag_debug PASS +Test 023 rap_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 024 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 233.670014 -0:The maximum resident set size (KB) = 794060 +0:The total amount of wall time = 234.638443 +0:The maximum resident set size (KB) = 794932 -Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 024 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rap_progcld_thompson_debug -Checking test 026 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_progcld_thompson_debug +Checking test 025 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.833996 -0:The maximum resident set size (KB) = 795516 +0:The total amount of wall time = 146.050966 +0:The maximum resident set size (KB) = 796348 -Test 026 rap_progcld_thompson_debug PASS +Test 025 rap_progcld_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/rrfs_v1beta_debug -Checking test 027 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_v1beta_debug +Checking test 026 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 143.371806 -0:The maximum resident set size (KB) = 790332 +0:The total amount of wall time = 145.239082 +0:The maximum resident set size (KB) = 790820 -Test 027 rrfs_v1beta_debug PASS +Test 026 rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson_debug -Checking test 028 control_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_debug +Checking test 027 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.145760 -0:The maximum resident set size (KB) = 781468 +0:The total amount of wall time = 94.611345 +0:The maximum resident set size (KB) = 781992 -Test 028 control_thompson_debug PASS +Test 027 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson_no_aero_debug -Checking test 029 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_no_aero_debug +Checking test 028 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.514879 -0:The maximum resident set size (KB) = 776876 +0:The total amount of wall time = 91.737487 +0:The maximum resident set size (KB) = 777364 -Test 029 control_thompson_no_aero_debug PASS +Test 028 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson_extdiag_debug -Checking test 030 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_extdiag_debug +Checking test 029 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 100.746351 -0:The maximum resident set size (KB) = 823100 +0:The total amount of wall time = 101.377439 +0:The maximum resident set size (KB) = 823308 -Test 030 control_thompson_extdiag_debug PASS +Test 029 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_thompson_progcld_thompson_debug -Checking test 031 control_thompson_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_progcld_thompson_debug +Checking test 030 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.011239 -0:The maximum resident set size (KB) = 781476 +0:The total amount of wall time = 94.857181 +0:The maximum resident set size (KB) = 782000 -Test 031 control_thompson_progcld_thompson_debug PASS +Test 030 control_thompson_progcld_thompson_debug PASS Tries: 2 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_rrtmgp_debug -Checking test 032 control_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_ras_debug +Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.122261 -0:The maximum resident set size (KB) = 518956 +0:The total amount of wall time = 82.780938 +0:The maximum resident set size (KB) = 433912 -Test 032 control_rrtmgp_debug PASS +Test 031 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_ras_debug -Checking test 033 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_stochy_debug +Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.366439 -0:The maximum resident set size (KB) = 433456 +0:The total amount of wall time = 90.307943 +0:The maximum resident set size (KB) = 428164 -Test 033 control_ras_debug PASS +Test 032 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_stochy_debug -Checking test 034 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_debug_p8 +Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.076002 -0:The maximum resident set size (KB) = 427612 +0:The total amount of wall time = 93.697940 +0:The maximum resident set size (KB) = 807712 -Test 034 control_stochy_debug PASS +Test 033 control_debug_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_debug_p8 -Checking test 035 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 87.202013 -0:The maximum resident set size (KB) = 483920 - -Test 035 control_debug_p8 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/control_wam_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/control_wam_debug -Checking test 036 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_wam_debug +Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 151.953159 -0:The maximum resident set size (KB) = 170064 +0:The total amount of wall time = 142.964610 +0:The maximum resident set size (KB) = 170916 -Test 036 control_wam_debug PASS +Test 034 control_wam_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/cpld_control_c96_p8 -Checking test 037 cpld_control_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/cpld_control_c96_noaero_p8 +Checking test 035 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1009,15 +978,15 @@ Checking test 037 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 359.855865 -0:The maximum resident set size (KB) = 518568 +0:The total amount of wall time = 400.301794 +0:The maximum resident set size (KB) = 841068 -Test 037 cpld_control_c96_p8 PASS +Test 035 cpld_control_c96_noaero_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/GNU/cpld_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_14166/cpld_debug_p8 -Checking test 038 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/cpld_debug_noaero_p8 +Checking test 036 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1066,12 +1035,25 @@ Checking test 038 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 336.324842 -0:The maximum resident set size (KB) = 536652 +0:The total amount of wall time = 347.445910 +0:The maximum resident set size (KB) = 859380 + +Test 036 cpld_debug_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/datm_cdeps_control_cfsr +Checking test 037 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 173.061536 +0:The maximum resident set size (KB) = 640272 -Test 038 cpld_debug_p8 PASS +Test 037 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 16:42:00 MST 2022 -Elapsed time: 00h:29m:34s. Have a nice day! +Sat May 7 19:26:04 MDT 2022 +Elapsed time: 00h:30m:41s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 2257137f08..670396f99e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,23 +1,25 @@ -Thu Feb 24 17:15:31 MST 2022 +Mon May 16 10:44:05 MDT 2022 Start Regression test -Compile 001 elapsed time 996 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 400 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 809 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 595 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 377 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 359 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 739 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 738 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 448 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 225 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 613 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_control_p8 +Compile 001 elapsed time 1237 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 449 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 385 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 321 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 336 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 944 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 963 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 468 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 249 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 807 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 657 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -78,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 251.499394 -0:The maximum resident set size (KB) = 535812 +0:The total amount of wall time = 428.791707 +0:The maximum resident set size (KB) = 2764704 Test 001 cpld_control_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -138,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 477.452022 -0:The maximum resident set size (KB) = 630696 +0:The total amount of wall time = 829.754843 +0:The maximum resident set size (KB) = 3091144 Test 002 cpld_2threads_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -198,18 +202,19 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 248.030057 -0:The maximum resident set size (KB) = 531736 +0:The total amount of wall time = 421.075017 +0:The maximum resident set size (KB) = 2756016 Test 003 cpld_decomp_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -258,133 +263,23 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 216.827858 -0:The maximum resident set size (KB) = 506000 +0:The total amount of wall time = 360.490883 +0:The maximum resident set size (KB) = 2676272 Test 004 cpld_mpi_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -0:The total amount of wall time = 318.354392 -0:The maximum resident set size (KB) = 631164 - -Test 005 cpld_control_p7_rrtmgp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 962.781874 -0:The maximum resident set size (KB) = 1206232 - -Test 006 cpld_bmark_p7 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK @@ -426,67 +321,15 @@ Checking test 007 cpld_bmark_p8 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 = 984.013794 -0:The maximum resident set size (KB) = 1206644 +0:The total amount of wall time = 1176.241812 +0:The maximum resident set size (KB) = 3644644 -Test 007 cpld_bmark_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 949.411157 -0:The maximum resident set size (KB) = 1207152 - -Test 008 cpld_bmark_mpi_p8 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -511,6 +354,7 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -547,15 +391,15 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 244.814067 -0:The maximum resident set size (KB) = 523108 +0:The total amount of wall time = 424.567032 +0:The maximum resident set size (KB) = 2760140 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -568,6 +412,7 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -604,15 +449,15 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 131.179849 -0:The maximum resident set size (KB) = 313636 +0:The total amount of wall time = 228.001637 +0:The maximum resident set size (KB) = 2722576 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -625,6 +470,7 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -661,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1033.374066 -0:The maximum resident set size (KB) = 692972 +0:The total amount of wall time = 1364.213540 +0:The maximum resident set size (KB) = 2801548 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -682,6 +528,7 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -718,17 +565,18 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 622.721985 -0:The maximum resident set size (KB) = 754652 +0:The total amount of wall time = 896.340419 +0:The maximum resident set size (KB) = 2770576 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -768,17 +616,18 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1091.774416 -0:The maximum resident set size (KB) = 1231244 +0:The total amount of wall time = 1301.983960 +0:The maximum resident set size (KB) = 3646032 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -818,15 +667,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 582.240636 -0:The maximum resident set size (KB) = 1180048 +0:The total amount of wall time = 734.798753 +0:The maximum resident set size (KB) = 3609812 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -839,6 +688,7 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -875,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 649.097463 -0:The maximum resident set size (KB) = 584672 +0:The total amount of wall time = 1073.250505 +0:The maximum resident set size (KB) = 2831088 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control -Checking test 016 control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -929,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 146.277893 -0:The maximum resident set size (KB) = 445416 +0:The total amount of wall time = 153.682210 +0:The maximum resident set size (KB) = 445328 -Test 016 control PASS +Test 013 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -979,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 150.891663 -0:The maximum resident set size (KB) = 443580 +0:The total amount of wall time = 155.637351 +0:The maximum resident set size (KB) = 444700 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 140.496152 -0:The maximum resident set size (KB) = 445960 +0:The total amount of wall time = 145.211612 +0:The maximum resident set size (KB) = 446052 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1043,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 319.285401 -0:The maximum resident set size (KB) = 491984 +0:The total amount of wall time = 323.141973 +0:The maximum resident set size (KB) = 500248 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_restart -Checking test 020 control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1089,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 76.028597 -0:The maximum resident set size (KB) = 188960 +0:The total amount of wall time = 77.803249 +0:The maximum resident set size (KB) = 195656 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1139,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.546707 -0:The maximum resident set size (KB) = 445452 +0:The total amount of wall time = 147.141241 +0:The maximum resident set size (KB) = 445684 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 143.134074 -0:The maximum resident set size (KB) = 445700 +0:The total amount of wall time = 150.338313 +0:The maximum resident set size (KB) = 445220 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_latlon -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,15 +1041,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 145.076069 -0:The maximum resident set size (KB) = 445560 +0:The total amount of wall time = 148.444753 +0:The maximum resident set size (KB) = 445816 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1209,15 +1059,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.306273 -0:The maximum resident set size (KB) = 445364 +0:The total amount of wall time = 152.823417 +0:The maximum resident set size (KB) = 445604 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 420.596852 -0:The maximum resident set size (KB) = 629044 +0:The total amount of wall time = 431.027758 +0:The maximum resident set size (KB) = 636076 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 587.423270 -0:The maximum resident set size (KB) = 540240 +0:The total amount of wall time = 605.801274 +0:The maximum resident set size (KB) = 548316 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1044.622345 -0:The maximum resident set size (KB) = 795996 +0:The total amount of wall time = 1217.065893 +0:The maximum resident set size (KB) = 814056 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 900.046212 -0:The maximum resident set size (KB) = 948108 +0:The total amount of wall time = 1228.174618 +0:The maximum resident set size (KB) = 976892 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 95.832244 -0:The maximum resident set size (KB) = 442596 +0:The total amount of wall time = 98.726007 +0:The maximum resident set size (KB) = 448764 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 50.502517 -0:The maximum resident set size (KB) = 221492 +0:The total amount of wall time = 52.571931 +0:The maximum resident set size (KB) = 230396 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 86.692474 -0:The maximum resident set size (KB) = 450172 +0:The total amount of wall time = 90.547928 +0:The maximum resident set size (KB) = 448728 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr4 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.315277 -0:The maximum resident set size (KB) = 445308 +0:The total amount of wall time = 151.570140 +0:The maximum resident set size (KB) = 445768 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr5 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.917916 -0:The maximum resident set size (KB) = 445484 +0:The total amount of wall time = 154.666801 +0:The maximum resident set size (KB) = 445712 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1339,41 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 163.588117 -0:The maximum resident set size (KB) = 485072 +0:The total amount of wall time = 197.276349 +0:The maximum resident set size (KB) = 842808 + +Test 031 control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8_lndp +Checking test 032 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +0:The total amount of wall time = 365.187521 +0:The maximum resident set size (KB) = 843424 -Test 034 control_p8 PASS +Test 032 control_p8_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1411,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 86.983657 -0:The maximum resident set size (KB) = 291060 +0:The total amount of wall time = 102.186237 +0:The maximum resident set size (KB) = 579692 -Test 035 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1585,15 +1461,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 165.823152 -0:The maximum resident set size (KB) = 479512 +0:The total amount of wall time = 197.539206 +0:The maximum resident set size (KB) = 837928 -Test 036 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1635,15 +1511,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.048921 -0:The maximum resident set size (KB) = 569280 +0:The total amount of wall time = 459.314592 +0:The maximum resident set size (KB) = 922056 -Test 037 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1689,15 +1565,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 230.734292 -0:The maximum resident set size (KB) = 583180 +0:The total amount of wall time = 261.519315 +0:The maximum resident set size (KB) = 959188 -Test 038 control_p7_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_control -Checking test 039 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1707,58 +1583,58 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 348.445003 -0:The maximum resident set size (KB) = 568092 +0:The total amount of wall time = 376.970475 +0:The maximum resident set size (KB) = 573932 -Test 039 regional_control PASS +Test 037 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 192.075521 -0:The maximum resident set size (KB) = 558704 +0:The total amount of wall time = 203.628504 +0:The maximum resident set size (KB) = 564540 -Test 040 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_control_2dwrtdecomp -Checking test 041 regional_control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 346.769065 -0:The maximum resident set size (KB) = 568584 +0:The total amount of wall time = 374.686077 +0:The maximum resident set size (KB) = 573116 -Test 041 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_noquilt +Checking test 040 regional_noquilt 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.137439 -0:The maximum resident set size (KB) = 575408 +0:The total amount of wall time = 396.615409 +0:The maximum resident set size (KB) = 581376 -Test 042 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1768,63 +1644,47 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 923.168780 -0:The maximum resident set size (KB) = 555112 +0:The total amount of wall time = 952.822378 +0:The maximum resident set size (KB) = 560936 -Test 043 regional_2threads PASS +Test 041 regional_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_hafs -Checking test 044 regional_hafs results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - -0:The total amount of wall time = 347.914485 -0:The maximum resident set size (KB) = 557400 - -Test 044 regional_hafs PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 349.660352 -0:The maximum resident set size (KB) = 558064 +0:The total amount of wall time = 370.448787 +0:The maximum resident set size (KB) = 563932 -Test 045 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_RRTMGP -Checking test 046 regional_RRTMGP results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 503.271018 -0:The maximum resident set size (KB) = 681852 +0:The total amount of wall time = 320.942374 +0:The maximum resident set size (KB) = 598576 -Test 046 regional_RRTMGP PASS +Test 043 regional_3km PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_control -Checking test 047 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,15 +1730,69 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 408.457926 -0:The maximum resident set size (KB) = 808532 +0:The total amount of wall time = 479.480782 +0:The maximum resident set size (KB) = 815568 -Test 047 rap_control PASS +Test 044 rap_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 = 547.409930 +0:The maximum resident set size (KB) = 941740 + +Test 045 rap_rrtmgp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1888,15 +1802,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 634.916244 -0:The maximum resident set size (KB) = 940088 +0:The total amount of wall time = 664.485989 +0:The maximum resident set size (KB) = 949764 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1942,15 +1856,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 875.933022 -0:The maximum resident set size (KB) = 873408 +0:The total amount of wall time = 1001.211580 +0:The maximum resident set size (KB) = 881244 -Test 049 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1988,15 +1902,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.096741 -0:The maximum resident set size (KB) = 562216 +0:The total amount of wall time = 243.606692 +0:The maximum resident set size (KB) = 567792 -Test 050 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,15 +1956,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 411.991761 -0:The maximum resident set size (KB) = 808356 +0:The total amount of wall time = 480.704564 +0:The maximum resident set size (KB) = 815164 -Test 051 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2088,15 +2002,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.123424 -0:The maximum resident set size (KB) = 562828 +0:The total amount of wall time = 243.190206 +0:The maximum resident set size (KB) = 567896 -Test 052 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2142,15 +2056,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 401.309549 -0:The maximum resident set size (KB) = 806664 +0:The total amount of wall time = 460.096277 +0:The maximum resident set size (KB) = 812644 -Test 053 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2196,14 +2110,58 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 402.992292 -0:The maximum resident set size (KB) = 805484 +0:The total amount of wall time = 469.752466 +0:The maximum resident set size (KB) = 810848 + +Test 052 rrfs_v1beta PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 579.355194 +0:The maximum resident set size (KB) = 500276 + +Test 053 rrfs_v1nssl PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +0:The total amount of wall time = 557.952203 +0:The maximum resident set size (KB) = 495264 -Test 054 rrfs_v1beta PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2212,14 +2170,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 183.515019 -0:The maximum resident set size (KB) = 638420 +0:The total amount of wall time = 199.326526 +0:The maximum resident set size (KB) = 643856 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2228,51 +2186,31 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 185.697574 -0:The maximum resident set size (KB) = 640640 +0:The total amount of wall time = 201.971975 +0:The maximum resident set size (KB) = 647664 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_rrtmgp -Checking test 057 control_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 260.390822 -0:The maximum resident set size (KB) = 577440 - -Test 057 control_rrtmgp PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_rrtmgp_c192 -Checking test 058 control_rrtmgp_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 696.565051 -0:The maximum resident set size (KB) = 781272 +0:The total amount of wall time = 220.924170 +0:The maximum resident set size (KB) = 659660 -Test 058 control_rrtmgp_c192 PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_csawmg -Checking test 059 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2282,15 +2220,15 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 402.748157 -0:The maximum resident set size (KB) = 518476 +0:The total amount of wall time = 396.526090 +0:The maximum resident set size (KB) = 524860 -Test 059 control_csawmg PASS +Test 058 control_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_csawmgt -Checking test 060 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2300,15 +2238,15 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.465971 -0:The maximum resident set size (KB) = 519288 +0:The total amount of wall time = 405.960319 +0:The maximum resident set size (KB) = 524784 -Test 060 control_csawmgt PASS +Test 059 control_csawmgt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_flake -Checking test 061 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2318,15 +2256,15 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 264.057568 -0:The maximum resident set size (KB) = 515308 +0:The total amount of wall time = 269.765068 +0:The maximum resident set size (KB) = 519100 -Test 061 control_flake PASS +Test 060 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_ras -Checking test 062 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2336,15 +2274,15 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 199.033491 -0:The maximum resident set size (KB) = 476952 +0:The total amount of wall time = 214.234897 +0:The maximum resident set size (KB) = 482100 -Test 062 control_ras PASS +Test 061 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson -Checking test 063 control_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2354,15 +2292,15 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.105917 -0:The maximum resident set size (KB) = 826144 +0:The total amount of wall time = 284.600658 +0:The maximum resident set size (KB) = 833712 -Test 063 control_thompson PASS +Test 062 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson_no_aero -Checking test 064 control_thompson_no_aero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2372,55 +2310,55 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 248.493364 -0:The maximum resident set size (KB) = 821364 +0:The total amount of wall time = 271.013156 +0:The maximum resident set size (KB) = 824536 -Test 064 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_repro -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_wam_repro -Checking test 065 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 137.869246 -0:The maximum resident set size (KB) = 201044 +0:The total amount of wall time = 132.672975 +0:The maximum resident set size (KB) = 205948 -Test 065 control_wam PASS +Test 064 control_wam PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_debug -Checking test 066 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.751375 -0:The maximum resident set size (KB) = 507620 +0:The total amount of wall time = 156.974341 +0:The maximum resident set size (KB) = 612868 -Test 066 control_debug PASS +Test 065 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_2threads_debug -Checking test 067 control_2threads_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 272.890901 -0:The maximum resident set size (KB) = 556860 +0:The total amount of wall time = 279.305684 +0:The maximum resident set size (KB) = 666420 -Test 067 control_2threads_debug PASS +Test 066 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_CubedSphereGrid_debug -Checking test 068 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2446,429 +2384,416 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 168.943975 -0:The maximum resident set size (KB) = 507540 +0:The total amount of wall time = 170.554837 +0:The maximum resident set size (KB) = 613072 -Test 068 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_wrtGauss_netcdf_parallel_debug -Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.321676 -0:The maximum resident set size (KB) = 507708 +0:The total amount of wall time = 160.562126 +0:The maximum resident set size (KB) = 612784 -Test 069 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_stochy_debug -Checking test 070 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 180.456617 -0:The maximum resident set size (KB) = 509516 +0:The total amount of wall time = 179.276104 +0:The maximum resident set size (KB) = 618572 -Test 070 control_stochy_debug PASS +Test 069 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_lndp_debug -Checking test 071 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.535253 -0:The maximum resident set size (KB) = 519920 +0:The total amount of wall time = 161.463102 +0:The maximum resident set size (KB) = 617376 -Test 071 control_lndp_debug PASS +Test 070 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_rrtmgp_debug -Checking test 072 control_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 173.646553 -0:The maximum resident set size (KB) = 616268 +0:The total amount of wall time = 253.067974 +0:The maximum resident set size (KB) = 664968 -Test 072 control_rrtmgp_debug PASS +Test 071 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_csawmg_debug -Checking test 073 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 250.274926 -0:The maximum resident set size (KB) = 553984 +0:The total amount of wall time = 248.446349 +0:The maximum resident set size (KB) = 662968 -Test 073 control_csawmg_debug PASS +Test 072 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_csawmgt_debug -Checking test 074 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 246.298513 -0:The maximum resident set size (KB) = 553612 +0:The total amount of wall time = 164.025768 +0:The maximum resident set size (KB) = 625856 -Test 074 control_csawmgt_debug PASS +Test 073 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_ras_debug -Checking test 075 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.143895 -0:The maximum resident set size (KB) = 517044 +0:The total amount of wall time = 167.715913 +0:The maximum resident set size (KB) = 669376 -Test 075 control_ras_debug PASS +Test 074 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_diag_debug -Checking test 076 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.196751 -0:The maximum resident set size (KB) = 562052 +0:The total amount of wall time = 178.456132 +0:The maximum resident set size (KB) = 1010508 -Test 076 control_diag_debug PASS +Test 075 control_debug_p8 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_debug_p8 -Checking test 077 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_debug +Checking test 076 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 168.690010 -0:The maximum resident set size (KB) = 547988 +0:The total amount of wall time = 185.201351 +0:The maximum resident set size (KB) = 973476 -Test 077 control_debug_p8 PASS +Test 076 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson_debug -Checking test 078 control_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.457177 -0:The maximum resident set size (KB) = 864288 +0:The total amount of wall time = 178.916584 +0:The maximum resident set size (KB) = 970120 -Test 078 control_thompson_debug PASS +Test 077 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson_no_aero_debug -Checking test 079 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.713314 -0:The maximum resident set size (KB) = 860672 +0:The total amount of wall time = 195.221544 +0:The maximum resident set size (KB) = 1002316 -Test 079 control_thompson_no_aero_debug PASS +Test 078 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson_extdiag_debug -Checking test 080 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 191.198463 -0:The maximum resident set size (KB) = 895248 +0:The total amount of wall time = 185.996696 +0:The maximum resident set size (KB) = 973284 -Test 080 control_thompson_extdiag_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_thompson_progcld_thompson_debug -Checking test 081 control_thompson_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -0:The total amount of wall time = 182.314430 -0:The maximum resident set size (KB) = 864332 - -Test 081 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 259.070518 -0:The maximum resident set size (KB) = 591180 +0:The total amount of wall time = 259.715592 +0:The maximum resident set size (KB) = 597388 -Test 082 regional_debug PASS +Test 080 regional_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.115716 -0:The maximum resident set size (KB) = 871272 +0:The total amount of wall time = 287.234243 +0:The maximum resident set size (KB) = 981140 -Test 083 rap_control_debug PASS +Test 081 rap_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_unified_drag_suite_debug -Checking test 084 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.326009 -0:The maximum resident set size (KB) = 871188 +0:The total amount of wall time = 287.215585 +0:The maximum resident set size (KB) = 980636 -Test 084 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_diag_debug -Checking test 085 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.320156 -0:The maximum resident set size (KB) = 966136 +0:The total amount of wall time = 301.386202 +0:The maximum resident set size (KB) = 1064348 -Test 085 rap_diag_debug PASS +Test 083 rap_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_cires_ugwp_debug -Checking test 086 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.857327 -0:The maximum resident set size (KB) = 876180 +0:The total amount of wall time = 293.313403 +0:The maximum resident set size (KB) = 980008 -Test 086 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_unified_ugwp_debug -Checking test 087 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.923224 -0:The maximum resident set size (KB) = 871536 +0:The total amount of wall time = 293.535338 +0:The maximum resident set size (KB) = 981212 -Test 087 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_noah_debug -Checking test 088 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 278.941338 -0:The maximum resident set size (KB) = 871128 +0:The total amount of wall time = 289.238026 +0:The maximum resident set size (KB) = 981644 -Test 088 rap_noah_debug PASS +Test 086 rap_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 482.186677 -0:The maximum resident set size (KB) = 986812 +0:The total amount of wall time = 287.152351 +0:The maximum resident set size (KB) = 981216 -Test 089 rap_rrtmgp_debug PASS +Test 087 rap_flake_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.608545 -0:The maximum resident set size (KB) = 871876 +0:The total amount of wall time = 287.659760 +0:The maximum resident set size (KB) = 980996 -Test 090 rap_lndp_debug PASS +Test 088 rap_progcld_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.805330 -0:The maximum resident set size (KB) = 871108 +0:The total amount of wall time = 283.366482 +0:The maximum resident set size (KB) = 979536 -Test 091 rap_sfcdiff_debug PASS +Test 089 rap_noah_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_flake_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_flake_debug -Checking test 092 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.301081 -0:The maximum resident set size (KB) = 871052 +0:The total amount of wall time = 483.441759 +0:The maximum resident set size (KB) = 1110728 -Test 092 rap_flake_debug PASS +Test 090 rap_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 469.529603 -0:The maximum resident set size (KB) = 870336 +0:The total amount of wall time = 287.513614 +0:The maximum resident set size (KB) = 981044 -Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 091 rap_sfcdiff_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.661779 -0:The maximum resident set size (KB) = 871696 +0:The total amount of wall time = 473.840461 +0:The maximum resident set size (KB) = 979404 -Test 094 rap_progcld_thompson_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.442767 -0:The maximum resident set size (KB) = 869096 +0:The total amount of wall time = 284.027722 +0:The maximum resident set size (KB) = 977356 -Test 095 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 295.927817 -0:The maximum resident set size (KB) = 232628 +0:The total amount of wall time = 296.739725 +0:The maximum resident set size (KB) = 237740 -Test 096 control_wam_debug PASS +Test 094 control_wam_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_atm -Checking test 097 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 508.064212 -0:The maximum resident set size (KB) = 670580 +0:The total amount of wall time = 548.712900 +0:The maximum resident set size (KB) = 675716 -Test 097 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_atm_thompson_gfdlsf -Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 584.576316 -0:The maximum resident set size (KB) = 1026772 +0:The total amount of wall time = 619.861753 +0:The maximum resident set size (KB) = 1044764 -Test 098 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_atm_ocn -Checking test 099 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2876,29 +2801,29 @@ Checking test 099 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 382.194586 -0:The maximum resident set size (KB) = 686324 +0:The total amount of wall time = 407.733966 +0:The maximum resident set size (KB) = 716288 -Test 099 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_atm_wav -Checking test 100 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 959.187075 -0:The maximum resident set size (KB) = 684700 +0:The total amount of wall time = 954.896414 +0:The maximum resident set size (KB) = 709688 -Test 100 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_atm_ocn_wav -Checking test 101 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2906,59 +2831,59 @@ Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1041.807580 -0:The maximum resident set size (KB) = 685808 +0:The total amount of wall time = 998.080680 +0:The maximum resident set size (KB) = 726796 -Test 101 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_1nest_atm -Checking test 102 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_1nest_atm +Checking test 100 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1024.626818 -0:The maximum resident set size (KB) = 270460 +0:The total amount of wall time = 1078.965979 +0:The maximum resident set size (KB) = 273704 -Test 102 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_telescopic_2nests_atm -Checking test 103 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1062.195567 -0:The maximum resident set size (KB) = 280260 +0:The total amount of wall time = 1149.447783 +0:The maximum resident set size (KB) = 283264 -Test 103 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_global_1nest_atm -Checking test 104 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_1nest_atm +Checking test 102 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -0:The total amount of wall time = 668.972115 -0:The maximum resident set size (KB) = 167204 +0:The total amount of wall time = 685.406881 +0:The maximum resident set size (KB) = 174988 -Test 104 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_global_multiple_4nests_atm -Checking test 105 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK @@ -2970,136 +2895,225 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -0:The total amount of wall time = 1236.381192 -0:The maximum resident set size (KB) = 235720 +0:The total amount of wall time = 1301.025977 +0:The maximum resident set size (KB) = 241072 -Test 105 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_docn -Checking test 106 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_specified_moving_1nest_atm +Checking test 104 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +0:The total amount of wall time = 603.594801 +0:The maximum resident set size (KB) = 284992 + +Test 104 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm +Checking test 105 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +0:The total amount of wall time = 591.032065 +0:The maximum resident set size (KB) = 284808 + +Test 105 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + +0:The total amount of wall time = 605.120340 +0:The maximum resident set size (KB) = 314240 + +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + +0:The total amount of wall time = 1250.730181 +0:The maximum resident set size (KB) = 329708 + +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_storm_following_1nest_atm +Checking test 108 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +0:The total amount of wall time = 346.204993 +0:The maximum resident set size (KB) = 190796 + +Test 108 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_docn +Checking test 109 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 353.852397 -0:The maximum resident set size (KB) = 687580 +0:The total amount of wall time = 372.550554 +0:The maximum resident set size (KB) = 732616 -Test 106 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_docn_oisst -Checking test 107 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_docn_oisst +Checking test 110 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 345.087894 -0:The maximum resident set size (KB) = 687444 +0:The total amount of wall time = 377.230558 +0:The maximum resident set size (KB) = 712856 -Test 107 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/hafs_regional_datm_cdeps -Checking test 108 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_datm_cdeps +Checking test 111 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1175.081322 -0:The maximum resident set size (KB) = 868300 +0:The total amount of wall time = 1289.714723 +0:The maximum resident set size (KB) = 872056 -Test 108 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_control_cfsr -Checking test 109 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_control_cfsr +Checking test 112 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.934106 -0:The maximum resident set size (KB) = 702580 +0:The total amount of wall time = 165.478910 +0:The maximum resident set size (KB) = 696292 -Test 109 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_restart_cfsr -Checking test 110 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_restart_cfsr +Checking test 113 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.900488 -0:The maximum resident set size (KB) = 691952 +0:The total amount of wall time = 101.764274 +0:The maximum resident set size (KB) = 696504 + +Test 113 datm_cdeps_restart_cfsr PASS + -Test 110 datm_cdeps_restart_cfsr PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK +0:The total amount of wall time = 159.878082 +0:The maximum resident set size (KB) = 594132 -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_control_gefs -Checking test 111 datm_cdeps_control_gefs results .... +Test 114 datm_cdeps_control_gefs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.819165 -0:The maximum resident set size (KB) = 589948 +0:The total amount of wall time = 155.685177 +0:The maximum resident set size (KB) = 593832 -Test 111 datm_cdeps_control_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_stochy_gefs -Checking test 112 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_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 = 161.332609 -0:The maximum resident set size (KB) = 589924 +0:The total amount of wall time = 155.715473 +0:The maximum resident set size (KB) = 594436 -Test 112 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_bulk_cfsr -Checking test 113 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_bulk_cfsr +Checking test 117 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.521052 -0:The maximum resident set size (KB) = 691248 +0:The total amount of wall time = 168.091501 +0:The maximum resident set size (KB) = 696684 -Test 113 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_bulk_gefs -Checking test 114 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.730539 -0:The maximum resident set size (KB) = 589020 +0:The total amount of wall time = 159.644766 +0:The maximum resident set size (KB) = 594132 -Test 114 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_mx025_cfsr -Checking test 115 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_mx025_cfsr +Checking test 119 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3107,15 +3121,15 @@ Checking test 115 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 335.144928 -0:The maximum resident set size (KB) = 514076 +0:The total amount of wall time = 336.251126 +0:The maximum resident set size (KB) = 513664 -Test 115 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_mx025_gefs -Checking test 116 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_mx025_gefs +Checking test 120 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3123,52 +3137,65 @@ Checking test 116 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 333.563583 -0:The maximum resident set size (KB) = 491224 +0:The total amount of wall time = 344.165627 +0:The maximum resident set size (KB) = 493276 -Test 116 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_multiple_files_cfsr -Checking test 117 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_multiple_files_cfsr +Checking test 121 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.851225 -0:The maximum resident set size (KB) = 691748 +0:The total amount of wall time = 159.554203 +0:The maximum resident set size (KB) = 696300 -Test 117 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_3072x1536_cfsr -Checking test 118 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_3072x1536_cfsr +Checking test 122 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 265.894048 -0:The maximum resident set size (KB) = 1843632 +0:The total amount of wall time = 264.253536 +0:The maximum resident set size (KB) = 1847716 -Test 118 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/datm_cdeps_debug_cfsr -Checking test 119 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_gfs +Checking test 123 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + +0:The total amount of wall time = 253.211034 +0:The maximum resident set size (KB) = 1845492 + +Test 123 datm_cdeps_gfs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_debug_cfsr +Checking test 124 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 453.853635 -0:The maximum resident set size (KB) = 700216 +0:The total amount of wall time = 456.277901 +0:The maximum resident set size (KB) = 704712 -Test 119 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220224/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44329/control_atmwav -Checking test 120 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3211,12 +3238,66 @@ Checking test 120 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 133.348001 -0:The maximum resident set size (KB) = 462860 +0:The total amount of wall time = 94.400725 +0:The maximum resident set size (KB) = 468360 + +Test 125 control_atmwav PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atm_aerosols +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_atm_aerosols +Checking test 126 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 365.533278 +0:The maximum resident set size (KB) = 1779736 -Test 120 control_atmwav PASS +Test 126 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 18:23:22 MST 2022 -Elapsed time: 01h:07m:51s. Have a nice day! +Mon May 16 14:05:45 MDT 2022 +Elapsed time: 03h:21m:40s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index f57bc802e3..7431039f2b 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,23 +1,25 @@ -Thu Feb 24 19:09:04 EST 2022 +Tue May 10 22:01:19 EDT 2022 Start Regression test -Compile 001 elapsed time 607 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 243 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 526 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 497 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 503 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 298 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 457 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_control_p8 +Compile 001 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 248 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 212 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 191 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 204 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 560 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 252 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 121 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 551 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 390 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -78,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 244.894843 - 0: The maximum resident set size (KB) = 490696 + 0: The total amount of wall time = 385.786682 + 0: The maximum resident set size (KB) = 1053276 Test 001 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -138,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 300.853657 - 0: The maximum resident set size (KB) = 610564 + 0: The total amount of wall time = 551.306437 + 0: The maximum resident set size (KB) = 1485856 Test 002 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -198,18 +202,19 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 247.100486 - 0: The maximum resident set size (KB) = 506904 + 0: The total amount of wall time = 418.914003 + 0: The maximum resident set size (KB) = 1204220 Test 003 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -258,185 +263,23 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 220.894076 - 0: The maximum resident set size (KB) = 472900 + 0: The total amount of wall time = 326.861996 + 0: The maximum resident set size (KB) = 942872 Test 004 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 293.321313 - 0: The maximum resident set size (KB) = 587800 - -Test 005 cpld_control_p7_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1005.699782 - 0: The maximum resident set size (KB) = 1161368 - -Test 006 cpld_bmark_p7 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1000.727651 - 0: The maximum resident set size (KB) = 1158680 - -Test 007 cpld_bmark_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK @@ -478,15 +321,15 @@ Checking test 008 cpld_bmark_mpi_p8 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 = 954.079672 - 0: The maximum resident set size (KB) = 1160180 + 0: The total amount of wall time = 1255.488895 + 0: The maximum resident set size (KB) = 2711940 -Test 008 cpld_bmark_mpi_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -511,6 +354,7 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -547,15 +391,15 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 227.557226 - 0: The maximum resident set size (KB) = 515812 + 0: The total amount of wall time = 411.873955 + 0: The maximum resident set size (KB) = 1070676 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -568,6 +412,7 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -604,15 +449,15 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 155.004318 - 0: The maximum resident set size (KB) = 305532 + 0: The total amount of wall time = 207.412038 + 0: The maximum resident set size (KB) = 1018084 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -625,6 +470,7 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -661,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1002.271823 - 0: The maximum resident set size (KB) = 684960 + 0: The total amount of wall time = 1285.135300 + 0: The maximum resident set size (KB) = 1180516 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -682,6 +528,7 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -718,17 +565,18 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 641.557771 - 0: The maximum resident set size (KB) = 757128 + 0: The total amount of wall time = 832.806663 + 0: The maximum resident set size (KB) = 1402752 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -768,17 +616,18 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1098.236827 - 0: The maximum resident set size (KB) = 1187276 + 0: The total amount of wall time = 1403.845752 + 0: The maximum resident set size (KB) = 2740408 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -818,15 +667,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 669.680343 - 0: The maximum resident set size (KB) = 1147120 + 0: The total amount of wall time = 2305.356713 + 0: The maximum resident set size (KB) = 2716484 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -839,6 +688,7 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -875,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 641.569397 - 0: The maximum resident set size (KB) = 574984 + 0: The total amount of wall time = 974.592669 + 0: The maximum resident set size (KB) = 1199496 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control -Checking test 016 control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -929,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.671057 - 0: The maximum resident set size (KB) = 436604 + 0: The total amount of wall time = 158.197366 + 0: The maximum resident set size (KB) = 435156 -Test 016 control PASS +Test 013 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -979,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.761620 - 0: The maximum resident set size (KB) = 435912 + 0: The total amount of wall time = 137.488835 + 0: The maximum resident set size (KB) = 434400 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 130.451828 - 0: The maximum resident set size (KB) = 436844 + 0: The total amount of wall time = 125.564784 + 0: The maximum resident set size (KB) = 435184 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1043,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.245571 - 0: The maximum resident set size (KB) = 489608 + 0: The total amount of wall time = 170.035313 + 0: The maximum resident set size (KB) = 488060 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_restart -Checking test 020 control_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1089,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 71.085151 - 0: The maximum resident set size (KB) = 172560 + 0: The total amount of wall time = 97.660485 + 0: The maximum resident set size (KB) = 171292 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1139,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.363324 - 0: The maximum resident set size (KB) = 436756 + 0: The total amount of wall time = 152.997481 + 0: The maximum resident set size (KB) = 435212 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.425930 - 0: The maximum resident set size (KB) = 436792 + 0: The total amount of wall time = 126.932349 + 0: The maximum resident set size (KB) = 435756 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,15 +1041,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.732037 - 0: The maximum resident set size (KB) = 436616 + 0: The total amount of wall time = 149.906430 + 0: The maximum resident set size (KB) = 435208 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1209,15 +1059,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.589869 - 0: The maximum resident set size (KB) = 437408 + 0: The total amount of wall time = 164.877374 + 0: The maximum resident set size (KB) = 435180 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 352.368565 -0: The maximum resident set size (KB) = 632268 +0: The total amount of wall time = 357.776901 +0: The maximum resident set size (KB) = 623584 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 537.055678 - 0: The maximum resident set size (KB) = 540348 + 0: The total amount of wall time = 560.441425 + 0: The maximum resident set size (KB) = 534476 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 928.185583 - 0: The maximum resident set size (KB) = 802688 + 0: The total amount of wall time = 766.392527 + 0: The maximum resident set size (KB) = 801556 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 848.672916 - 0: The maximum resident set size (KB) = 937948 + 0: The total amount of wall time = 725.023184 + 0: The maximum resident set size (KB) = 951048 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.388717 - 0: The maximum resident set size (KB) = 439920 + 0: The total amount of wall time = 117.744239 + 0: The maximum resident set size (KB) = 437328 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.630475 - 0: The maximum resident set size (KB) = 190656 + 0: The total amount of wall time = 73.366940 + 0: The maximum resident set size (KB) = 188024 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.139021 - 0: The maximum resident set size (KB) = 443196 + 0: The total amount of wall time = 109.379107 + 0: The maximum resident set size (KB) = 437404 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.056302 - 0: The maximum resident set size (KB) = 436856 + 0: The total amount of wall time = 163.298087 + 0: The maximum resident set size (KB) = 435084 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 141.048748 - 0: The maximum resident set size (KB) = 436704 + 0: The total amount of wall time = 160.955525 + 0: The maximum resident set size (KB) = 435200 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1339,41 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.003284 - 0: The maximum resident set size (KB) = 469172 + 0: The total amount of wall time = 198.837032 + 0: The maximum resident set size (KB) = 821668 -Test 034 control_p8 PASS +Test 031 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8_lndp +Checking test 032 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 352.805977 + 0: The maximum resident set size (KB) = 826100 + +Test 032 control_p8_lndp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1411,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.374259 - 0: The maximum resident set size (KB) = 278196 + 0: The total amount of wall time = 114.595793 + 0: The maximum resident set size (KB) = 558536 -Test 035 control_restart_p8 PASS +Test 033 control_restart_p8 PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1585,15 +1461,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 167.106732 - 0: The maximum resident set size (KB) = 462360 + 0: The total amount of wall time = 195.653804 + 0: The maximum resident set size (KB) = 816260 -Test 036 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1635,15 +1511,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.724205 - 0: The maximum resident set size (KB) = 547004 + 0: The total amount of wall time = 250.480267 + 0: The maximum resident set size (KB) = 894568 -Test 037 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1689,15 +1565,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.172022 - 0: The maximum resident set size (KB) = 567600 + 0: The total amount of wall time = 261.619525 + 0: The maximum resident set size (KB) = 938028 -Test 038 control_p7_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_control -Checking test 039 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1707,58 +1583,58 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 369.326292 - 0: The maximum resident set size (KB) = 540852 + 0: The total amount of wall time = 349.842914 + 0: The maximum resident set size (KB) = 541496 -Test 039 regional_control PASS +Test 037 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 183.895483 - 0: The maximum resident set size (KB) = 538572 + 0: The total amount of wall time = 220.264300 + 0: The maximum resident set size (KB) = 539096 -Test 040 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_control_2dwrtdecomp -Checking test 041 regional_control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 330.894347 - 0: The maximum resident set size (KB) = 540916 + 0: The total amount of wall time = 349.043135 + 0: The maximum resident set size (KB) = 541544 -Test 041 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_noquilt +Checking test 040 regional_noquilt 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 = 376.719382 - 0: The maximum resident set size (KB) = 548180 + 0: The total amount of wall time = 370.779820 + 0: The maximum resident set size (KB) = 548240 -Test 042 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1768,63 +1644,101 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 264.979947 - 0: The maximum resident set size (KB) = 543104 + 0: The total amount of wall time = 274.846152 + 0: The maximum resident set size (KB) = 543240 -Test 043 regional_2threads PASS +Test 041 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_hafs -Checking test 044 regional_hafs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 329.771782 - 0: The maximum resident set size (KB) = 540396 + 0: The total amount of wall time = 380.860303 + 0: The maximum resident set size (KB) = 539276 -Test 044 regional_hafs PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 332.772510 - 0: The maximum resident set size (KB) = 539176 + 0: The total amount of wall time = 291.866902 + 0: The maximum resident set size (KB) = 570904 -Test 045 regional_netcdf_parallel PASS +Test 043 regional_3km PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_RRTMGP -Checking test 046 regional_RRTMGP results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_control +Checking test 044 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 = 448.497988 - 0: The maximum resident set size (KB) = 666400 + 0: The total amount of wall time = 445.521590 + 0: The maximum resident set size (KB) = 804888 -Test 046 regional_RRTMGP PASS +Test 044 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_control -Checking test 047 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,15 +1784,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 371.117962 - 0: The maximum resident set size (KB) = 805308 + 0: The total amount of wall time = 510.824080 + 0: The maximum resident set size (KB) = 921236 -Test 047 rap_control PASS +Test 045 rap_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1888,15 +1802,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 344.452087 - 0: The maximum resident set size (KB) = 873620 + 0: The total amount of wall time = 346.204155 + 0: The maximum resident set size (KB) = 873492 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1942,15 +1856,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.409562 - 0: The maximum resident set size (KB) = 867312 + 0: The total amount of wall time = 552.111188 + 0: The maximum resident set size (KB) = 866188 -Test 049 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1988,15 +1902,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.578420 - 0: The maximum resident set size (KB) = 543440 + 0: The total amount of wall time = 250.061593 + 0: The maximum resident set size (KB) = 544196 -Test 050 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,15 +1956,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 380.164750 - 0: The maximum resident set size (KB) = 805004 + 0: The total amount of wall time = 441.157064 + 0: The maximum resident set size (KB) = 804872 -Test 051 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2088,15 +2002,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.497936 - 0: The maximum resident set size (KB) = 543336 + 0: The total amount of wall time = 250.060678 + 0: The maximum resident set size (KB) = 543756 -Test 052 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2142,15 +2056,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.065551 - 0: The maximum resident set size (KB) = 802740 + 0: The total amount of wall time = 450.122535 + 0: The maximum resident set size (KB) = 802372 -Test 053 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2196,83 +2110,91 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 393.754243 - 0: The maximum resident set size (KB) = 801940 + 0: The total amount of wall time = 457.101638 + 0: The maximum resident set size (KB) = 797592 -Test 054 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 192.740920 - 0: The maximum resident set size (KB) = 613528 - -Test 055 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.625789 - 0: The maximum resident set size (KB) = 615740 + 0: The total amount of wall time = 497.619928 + 0: The maximum resident set size (KB) = 489736 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_rrtmgp -Checking test 057 control_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.214634 - 0: The maximum resident set size (KB) = 562740 + 0: The total amount of wall time = 524.329426 + 0: The maximum resident set size (KB) = 481192 -Test 057 control_rrtmgp PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_rrtmgp_c192 -Checking test 058 control_rrtmgp_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 594.082493 - 0: The maximum resident set size (KB) = 774836 + 0: The total amount of wall time = 207.536342 + 0: The maximum resident set size (KB) = 614096 -Test 058 control_rrtmgp_c192 PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_csawmgt -Checking test 059 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 206.436491 + 0: The maximum resident set size (KB) = 616900 + +Test 056 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmgt +Checking test 057 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2282,15 +2204,15 @@ Checking test 059 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 370.415332 - 0: The maximum resident set size (KB) = 504016 + 0: The total amount of wall time = 388.588180 + 0: The maximum resident set size (KB) = 501268 -Test 059 control_csawmgt PASS +Test 057 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_flake -Checking test 060 control_flake results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_flake +Checking test 058 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2300,15 +2222,15 @@ Checking test 060 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 257.615690 - 0: The maximum resident set size (KB) = 508436 + 0: The total amount of wall time = 242.462668 + 0: The maximum resident set size (KB) = 505784 -Test 060 control_flake PASS +Test 058 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_ras -Checking test 061 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_ras +Checking test 059 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2318,15 +2240,15 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.441440 - 0: The maximum resident set size (KB) = 471420 + 0: The total amount of wall time = 184.168659 + 0: The maximum resident set size (KB) = 469992 -Test 061 control_ras PASS +Test 059 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson -Checking test 062 control_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson +Checking test 060 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2336,15 +2258,15 @@ Checking test 062 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.915125 - 0: The maximum resident set size (KB) = 820596 + 0: The total amount of wall time = 247.626618 + 0: The maximum resident set size (KB) = 818080 -Test 062 control_thompson PASS +Test 060 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson_no_aero -Checking test 063 control_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_no_aero +Checking test 061 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2354,55 +2276,55 @@ Checking test 063 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.791990 - 0: The maximum resident set size (KB) = 815108 + 0: The total amount of wall time = 258.901593 + 0: The maximum resident set size (KB) = 813376 -Test 063 control_thompson_no_aero PASS +Test 061 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_wam_repro -Checking test 064 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wam +Checking test 062 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.107728 - 0: The maximum resident set size (KB) = 181592 + 0: The total amount of wall time = 111.490633 + 0: The maximum resident set size (KB) = 182200 -Test 064 control_wam PASS +Test 062 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_debug -Checking test 065 control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_debug +Checking test 063 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.784218 - 0: The maximum resident set size (KB) = 503316 + 0: The total amount of wall time = 148.764233 + 0: The maximum resident set size (KB) = 598996 -Test 065 control_debug PASS +Test 063 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_2threads_debug -Checking test 066 control_2threads_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads_debug +Checking test 064 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.659225 - 0: The maximum resident set size (KB) = 554312 + 0: The total amount of wall time = 255.871969 + 0: The maximum resident set size (KB) = 648152 -Test 066 control_2threads_debug PASS +Test 064 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_CubedSphereGrid_debug +Checking test 065 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2428,429 +2350,403 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.415343 - 0: The maximum resident set size (KB) = 503568 - -Test 067 control_CubedSphereGrid_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 153.083047 - 0: The maximum resident set size (KB) = 503116 + 0: The total amount of wall time = 159.297153 + 0: The maximum resident set size (KB) = 599156 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 065 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_stochy_debug -Checking test 069 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wrtGauss_netcdf_parallel_debug +Checking test 066 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.312520 - 0: The maximum resident set size (KB) = 508712 + 0: The total amount of wall time = 181.745315 + 0: The maximum resident set size (KB) = 598932 -Test 069 control_stochy_debug PASS +Test 066 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_lndp_debug -Checking test 070 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy_debug +Checking test 067 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.566837 - 0: The maximum resident set size (KB) = 509744 + 0: The total amount of wall time = 170.859715 + 0: The maximum resident set size (KB) = 603284 -Test 070 control_lndp_debug PASS +Test 067 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_rrtmgp_debug -Checking test 071 control_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_lndp_debug +Checking test 068 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.378185 - 0: The maximum resident set size (KB) = 609156 + 0: The total amount of wall time = 153.106711 + 0: The maximum resident set size (KB) = 603020 -Test 071 control_rrtmgp_debug PASS +Test 068 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_csawmg_debug -Checking test 072 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmg_debug +Checking test 069 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.826426 - 0: The maximum resident set size (KB) = 545440 + 0: The total amount of wall time = 243.410900 + 0: The maximum resident set size (KB) = 641264 -Test 072 control_csawmg_debug PASS +Test 069 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_csawmgt_debug -Checking test 073 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmgt_debug +Checking test 070 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 247.442482 - 0: The maximum resident set size (KB) = 545448 + 0: The total amount of wall time = 238.902801 + 0: The maximum resident set size (KB) = 639888 -Test 073 control_csawmgt_debug PASS +Test 070 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_ras_debug -Checking test 074 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_ras_debug +Checking test 071 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.166364 - 0: The maximum resident set size (KB) = 516012 + 0: The total amount of wall time = 154.852063 + 0: The maximum resident set size (KB) = 610544 -Test 074 control_ras_debug PASS +Test 071 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_diag_debug -Checking test 075 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_diag_debug +Checking test 072 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.547320 - 0: The maximum resident set size (KB) = 561420 + 0: The total amount of wall time = 157.534084 + 0: The maximum resident set size (KB) = 657184 -Test 075 control_diag_debug PASS +Test 072 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_debug_p8 -Checking test 076 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_debug_p8 +Checking test 073 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.660622 - 0: The maximum resident set size (KB) = 530012 + 0: The total amount of wall time = 168.333417 + 0: The maximum resident set size (KB) = 985780 -Test 076 control_debug_p8 PASS +Test 073 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson_debug -Checking test 077 control_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_debug +Checking test 074 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.213083 - 0: The maximum resident set size (KB) = 864240 + 0: The total amount of wall time = 177.501883 + 0: The maximum resident set size (KB) = 960072 -Test 077 control_thompson_debug PASS +Test 074 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson_no_aero_debug -Checking test 078 control_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_no_aero_debug +Checking test 075 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.632064 - 0: The maximum resident set size (KB) = 859756 + 0: The total amount of wall time = 171.074274 + 0: The maximum resident set size (KB) = 954780 -Test 078 control_thompson_no_aero_debug PASS +Test 075 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson_extdiag_debug -Checking test 079 control_thompson_extdiag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_extdiag_debug +Checking test 076 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.686493 - 0: The maximum resident set size (KB) = 892844 + 0: The total amount of wall time = 184.987665 + 0: The maximum resident set size (KB) = 988580 -Test 079 control_thompson_extdiag_debug PASS +Test 076 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_thompson_progcld_thompson_debug -Checking test 080 control_thompson_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_progcld_thompson_debug +Checking test 077 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.271746 - 0: The maximum resident set size (KB) = 864764 + 0: The total amount of wall time = 177.531237 + 0: The maximum resident set size (KB) = 959884 -Test 080 control_thompson_progcld_thompson_debug PASS +Test 077 control_thompson_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/regional_debug -Checking test 081 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_debug +Checking test 078 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 259.339007 - 0: The maximum resident set size (KB) = 566964 + 0: The total amount of wall time = 257.522443 + 0: The maximum resident set size (KB) = 566048 -Test 081 regional_debug PASS +Test 078 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_control_debug -Checking test 082 rap_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_control_debug +Checking test 079 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.556035 - 0: The maximum resident set size (KB) = 871924 + 0: The total amount of wall time = 278.227247 + 0: The maximum resident set size (KB) = 965524 -Test 082 rap_control_debug PASS +Test 079 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_unified_drag_suite_debug -Checking test 083 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_unified_drag_suite_debug +Checking test 080 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.182072 - 0: The maximum resident set size (KB) = 871700 + 0: The total amount of wall time = 278.229321 + 0: The maximum resident set size (KB) = 965708 -Test 083 rap_unified_drag_suite_debug PASS +Test 080 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_diag_debug -Checking test 084 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_diag_debug +Checking test 081 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.778681 - 0: The maximum resident set size (KB) = 954628 + 0: The total amount of wall time = 293.429614 + 0: The maximum resident set size (KB) = 1048156 -Test 084 rap_diag_debug PASS +Test 081 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_cires_ugwp_debug -Checking test 085 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_cires_ugwp_debug +Checking test 082 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.318014 - 0: The maximum resident set size (KB) = 874580 + 0: The total amount of wall time = 284.246328 + 0: The maximum resident set size (KB) = 963896 -Test 085 rap_cires_ugwp_debug PASS +Test 082 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_unified_ugwp_debug -Checking test 086 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_unified_ugwp_debug +Checking test 083 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.171984 - 0: The maximum resident set size (KB) = 871864 + 0: The total amount of wall time = 284.195613 + 0: The maximum resident set size (KB) = 965352 -Test 086 rap_unified_ugwp_debug PASS +Test 083 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_noah_debug -Checking test 087 rap_noah_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_lndp_debug +Checking test 084 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.881327 - 0: The maximum resident set size (KB) = 870676 + 0: The total amount of wall time = 281.231977 + 0: The maximum resident set size (KB) = 966120 -Test 087 rap_noah_debug PASS +Test 084 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_rrtmgp_debug -Checking test 088 rap_rrtmgp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_flake_debug +Checking test 085 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 472.848092 - 0: The maximum resident set size (KB) = 977960 + 0: The total amount of wall time = 278.312735 + 0: The maximum resident set size (KB) = 965744 -Test 088 rap_rrtmgp_debug PASS +Test 085 rap_flake_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_progcld_thompson_debug +Checking test 086 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.141823 - 0: The maximum resident set size (KB) = 872520 + 0: The total amount of wall time = 278.459210 + 0: The maximum resident set size (KB) = 964960 -Test 089 rap_lndp_debug PASS +Test 086 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_noah_debug +Checking test 087 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.508643 - 0: The maximum resident set size (KB) = 871516 + 0: The total amount of wall time = 274.051045 + 0: The maximum resident set size (KB) = 963564 -Test 090 rap_sfcdiff_debug PASS +Test 087 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_flake_debug -Checking test 091 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_rrtmgp_debug +Checking test 088 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.941979 - 0: The maximum resident set size (KB) = 871712 + 0: The total amount of wall time = 476.119525 + 0: The maximum resident set size (KB) = 1086480 -Test 091 rap_flake_debug PASS +Test 088 rap_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff_debug +Checking test 089 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 461.582265 - 0: The maximum resident set size (KB) = 870448 + 0: The total amount of wall time = 278.405712 + 0: The maximum resident set size (KB) = 965196 -Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 089 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.371771 - 0: The maximum resident set size (KB) = 871860 + 0: The total amount of wall time = 464.647319 + 0: The maximum resident set size (KB) = 963600 -Test 093 rap_progcld_thompson_debug PASS +Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/rrfs_v1beta_debug -Checking test 094 rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1beta_debug +Checking test 091 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.794846 - 0: The maximum resident set size (KB) = 869264 + 0: The total amount of wall time = 276.298483 + 0: The maximum resident set size (KB) = 964352 -Test 094 rrfs_v1beta_debug PASS +Test 091 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_wam_debug -Checking test 095 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wam_debug +Checking test 092 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.965572 - 0: The maximum resident set size (KB) = 212140 + 0: The total amount of wall time = 290.412302 + 0: The maximum resident set size (KB) = 212688 -Test 095 control_wam_debug PASS +Test 092 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_atm -Checking test 096 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_thompson_gfdlsf +Checking test 094 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 297.859319 - 0: The maximum resident set size (KB) = 657372 + 0: The total amount of wall time = 1814.978487 + 0: The maximum resident set size (KB) = 1019792 -Test 096 hafs_regional_atm PASS +Test 094 hafs_regional_atm_thompson_gfdlsf PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_atm_thompson_gfdlsf -Checking test 097 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 366.508002 - 0: The maximum resident set size (KB) = 1018828 - -Test 097 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_atm_ocn -Checking test 098 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_ocn +Checking test 095 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2858,29 +2754,29 @@ Checking test 098 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 419.397077 - 0: The maximum resident set size (KB) = 662088 + 0: The total amount of wall time = 426.976011 + 0: The maximum resident set size (KB) = 688608 -Test 098 hafs_regional_atm_ocn PASS +Test 095 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_atm_wav -Checking test 099 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_wav +Checking test 096 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 882.793152 - 0: The maximum resident set size (KB) = 665712 + 0: The total amount of wall time = 874.702633 + 0: The maximum resident set size (KB) = 679232 -Test 099 hafs_regional_atm_wav PASS +Test 096 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_atm_ocn_wav -Checking test 100 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_ocn_wav +Checking test 097 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2888,29 +2784,29 @@ Checking test 100 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 975.653939 - 0: The maximum resident set size (KB) = 667112 + 0: The total amount of wall time = 2408.897592 + 0: The maximum resident set size (KB) = 697888 -Test 100 hafs_regional_atm_ocn_wav PASS +Test 097 hafs_regional_atm_ocn_wav PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_1nest_atm -Checking test 101 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_1nest_atm +Checking test 098 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 521.884132 - 0: The maximum resident set size (KB) = 261108 + 0: The total amount of wall time = 545.442823 + 0: The maximum resident set size (KB) = 262972 -Test 101 hafs_regional_1nest_atm PASS +Test 098 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_telescopic_2nests_atm -Checking test 102 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_telescopic_2nests_atm +Checking test 099 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2918,29 +2814,29 @@ Checking test 102 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 531.421722 - 0: The maximum resident set size (KB) = 263792 + 0: The total amount of wall time = 565.384459 + 0: The maximum resident set size (KB) = 260996 -Test 102 hafs_regional_telescopic_2nests_atm PASS +Test 099 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_global_1nest_atm -Checking test 103 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_1nest_atm +Checking test 100 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 235.791514 - 0: The maximum resident set size (KB) = 162528 + 0: The total amount of wall time = 1721.653168 + 0: The maximum resident set size (KB) = 164212 -Test 103 hafs_global_1nest_atm PASS +Test 100 hafs_global_1nest_atm PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_global_multiple_4nests_atm -Checking test 104 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_multiple_4nests_atm +Checking test 101 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2952,136 +2848,225 @@ Checking test 104 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 668.449323 - 0: The maximum resident set size (KB) = 218808 + 0: The total amount of wall time = 2131.130821 + 0: The maximum resident set size (KB) = 232776 + +Test 101 hafs_global_multiple_4nests_atm PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_specified_moving_1nest_atm +Checking test 102 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 322.146905 + 0: The maximum resident set size (KB) = 268452 + +Test 102 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm +Checking test 103 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 320.882289 + 0: The maximum resident set size (KB) = 268052 + +Test 103 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm_ocn +Checking test 104 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 1810.696660 + 0: The maximum resident set size (KB) = 295404 -Test 104 hafs_global_multiple_4nests_atm PASS +Test 104 hafs_regional_storm_following_1nest_atm_ocn PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_docn -Checking test 105 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 105 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + + 0: The total amount of wall time = 2275.453674 + 0: The maximum resident set size (KB) = 312464 + +Test 105 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_storm_following_1nest_atm +Checking test 106 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 129.688659 + 0: The maximum resident set size (KB) = 183100 + +Test 106 hafs_global_storm_following_1nest_atm PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_docn +Checking test 107 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 348.617805 - 0: The maximum resident set size (KB) = 661984 + 0: The total amount of wall time = 383.351690 + 0: The maximum resident set size (KB) = 693652 -Test 105 hafs_regional_docn PASS +Test 107 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_docn_oisst -Checking test 106 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_docn_oisst +Checking test 108 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 361.325713 - 0: The maximum resident set size (KB) = 662056 + 0: The total amount of wall time = 1832.242539 + 0: The maximum resident set size (KB) = 683924 -Test 106 hafs_regional_docn_oisst PASS +Test 108 hafs_regional_docn_oisst PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/hafs_regional_datm_cdeps -Checking test 107 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_datm_cdeps +Checking test 109 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1042.320448 - 0: The maximum resident set size (KB) = 807056 + 0: The total amount of wall time = 2512.468266 + 0: The maximum resident set size (KB) = 807316 -Test 107 hafs_regional_datm_cdeps PASS +Test 109 hafs_regional_datm_cdeps PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_control_cfsr -Checking test 108 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_control_cfsr +Checking test 110 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.863893 - 0: The maximum resident set size (KB) = 683188 + 0: The total amount of wall time = 148.802764 + 0: The maximum resident set size (KB) = 665428 -Test 108 datm_cdeps_control_cfsr PASS +Test 110 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_restart_cfsr -Checking test 109 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_restart_cfsr +Checking test 111 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.264196 - 0: The maximum resident set size (KB) = 683232 + 0: The total amount of wall time = 84.717534 + 0: The maximum resident set size (KB) = 684368 -Test 109 datm_cdeps_restart_cfsr PASS +Test 111 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_control_gefs -Checking test 110 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_control_gefs +Checking test 112 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.291784 - 0: The maximum resident set size (KB) = 565576 + 0: The total amount of wall time = 144.153915 + 0: The maximum resident set size (KB) = 565188 -Test 110 datm_cdeps_control_gefs PASS +Test 112 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_stochy_gefs -Checking test 111 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_iau_gefs +Checking test 113 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.055151 - 0: The maximum resident set size (KB) = 563664 + 0: The total amount of wall time = 148.054538 + 0: The maximum resident set size (KB) = 565036 -Test 111 datm_cdeps_stochy_gefs PASS +Test 113 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_bulk_cfsr -Checking test 112 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_stochy_gefs +Checking test 114 datm_cdeps_stochy_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 = 145.184038 + 0: The maximum resident set size (KB) = 569172 + +Test 114 datm_cdeps_stochy_gefs PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_bulk_cfsr +Checking test 115 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.901094 - 0: The maximum resident set size (KB) = 683156 + 0: The total amount of wall time = 147.358439 + 0: The maximum resident set size (KB) = 684308 -Test 112 datm_cdeps_bulk_cfsr PASS +Test 115 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_bulk_gefs -Checking test 113 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_bulk_gefs +Checking test 116 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.804015 - 0: The maximum resident set size (KB) = 563792 + 0: The total amount of wall time = 143.083778 + 0: The maximum resident set size (KB) = 569356 -Test 113 datm_cdeps_bulk_gefs PASS +Test 116 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_mx025_cfsr -Checking test 114 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_mx025_cfsr +Checking test 117 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3089,15 +3074,15 @@ Checking test 114 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 384.123120 - 0: The maximum resident set size (KB) = 482600 + 0: The total amount of wall time = 1766.864624 + 0: The maximum resident set size (KB) = 481572 -Test 114 datm_cdeps_mx025_cfsr PASS +Test 117 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_mx025_gefs -Checking test 115 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_mx025_gefs +Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3105,52 +3090,65 @@ Checking test 115 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 354.208997 - 0: The maximum resident set size (KB) = 451328 + 0: The total amount of wall time = 1774.511088 + 0: The maximum resident set size (KB) = 449656 -Test 115 datm_cdeps_mx025_gefs PASS +Test 118 datm_cdeps_mx025_gefs PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_multiple_files_cfsr -Checking test 116 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_multiple_files_cfsr +Checking test 119 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.601575 - 0: The maximum resident set size (KB) = 683208 + 0: The total amount of wall time = 147.173625 + 0: The maximum resident set size (KB) = 684504 -Test 116 datm_cdeps_multiple_files_cfsr PASS +Test 119 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_3072x1536_cfsr -Checking test 117 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_3072x1536_cfsr +Checking test 120 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 206.857378 - 0: The maximum resident set size (KB) = 1835656 + 0: The total amount of wall time = 200.369999 + 0: The maximum resident set size (KB) = 1836636 + +Test 120 datm_cdeps_3072x1536_cfsr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_gfs +Checking test 121 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 202.056418 + 0: The maximum resident set size (KB) = 1836644 -Test 117 datm_cdeps_3072x1536_cfsr PASS +Test 121 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/datm_cdeps_debug_cfsr -Checking test 118 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_debug_cfsr +Checking test 122 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 368.067970 - 0: The maximum resident set size (KB) = 669368 + 0: The total amount of wall time = 364.322220 + 0: The maximum resident set size (KB) = 689652 -Test 118 datm_cdeps_debug_cfsr PASS +Test 122 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_atmwav -Checking test 119 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_atmwav +Checking test 123 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3193,15 +3191,15 @@ Checking test 119 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 112.917267 - 0: The maximum resident set size (KB) = 449368 + 0: The total amount of wall time = 119.998621 + 0: The maximum resident set size (KB) = 445192 -Test 119 control_atmwav PASS +Test 123 control_atmwav PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_27128/control_c384gdas_wav -Checking test 120 control_c384gdas_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384gdas_wav +Checking test 124 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3246,12 +3244,90 @@ Checking test 120 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 1524.793994 - 0: The maximum resident set size (KB) = 954948 + 0: The total amount of wall time = 2862.940538 + 0: The maximum resident set size (KB) = 960160 + +Test 124 control_c384gdas_wav PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atm_aerosols +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_atm_aerosols +Checking test 125 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1768.854675 + 0: The maximum resident set size (KB) = 817992 + +Test 125 control_atm_aerosols PASS + +FAILED TESTS: +Test hafs_regional_atm 093 failed in run_test failed + +REGRESSION TEST FAILED +Wed May 11 06:03:43 EDT 2022 +Elapsed time: 08h:02m:25s. Have a nice day! + +Wed May 11 06:32:42 EDT 2022 +Start Regression test + +Compile 001 elapsed time 553 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_ +gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_35565/hafs_regional_atm +Checking test 001 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -Test 120 control_c384gdas_wav PASS + 0: The total amount of wall time = 294.683398 + 0: The maximum resident set size (KB) = 664184 +Test 001 hafs_regional_atm PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 20:48:35 EST 2022 -Elapsed time: 01h:39m:31s. Have a nice day! +Wed May 11 06:52:38 EDT 2022 +Elapsed time: 00h:19m:57s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index db3a6e40fb..0cc7b48441 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,15 +1,16 @@ -Mon Apr 18 17:49:26 UTC 2022 +Tue May 17 23:19:39 UTC 2022 Start Regression test -Compile 001 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 305 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 117 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 288 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 98 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 217 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 114 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 110 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -56,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 772.659361 - 0: The maximum resident set size (KB) = 442520 + 0: The total amount of wall time = 780.576056 + 0: The maximum resident set size (KB) = 477992 Test 001 control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_restart +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -102,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.845605 - 0: The maximum resident set size (KB) = 183528 + 0: The total amount of wall time = 396.340637 + 0: The maximum resident set size (KB) = 183196 Test 002 control_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_c48 +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -148,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 676.846385 -0: The maximum resident set size (KB) = 698660 +0: The total amount of wall time = 679.099744 +0: The maximum resident set size (KB) = 694520 Test 003 control_c48 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_stochy +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -166,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 608.354377 - 0: The maximum resident set size (KB) = 448152 + 0: The total amount of wall time = 614.260895 + 0: The maximum resident set size (KB) = 478400 Test 004 control_stochy PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_flake +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,15 +185,15 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1421.178426 - 0: The maximum resident set size (KB) = 494732 + 0: The total amount of wall time = 1348.466829 + 0: The maximum resident set size (KB) = 529388 Test 005 control_flake PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_rrtmgp -Checking test 006 control_rrtmgp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson +Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -202,15 +203,15 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 849.043404 - 0: The maximum resident set size (KB) = 543068 + 0: The total amount of wall time = 991.266840 + 0: The maximum resident set size (KB) = 844796 -Test 006 control_rrtmgp PASS +Test 006 control_thompson PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson -Checking test 007 control_thompson results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson_no_aero +Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -220,15 +221,15 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1000.520769 - 0: The maximum resident set size (KB) = 804832 + 0: The total amount of wall time = 950.140352 + 0: The maximum resident set size (KB) = 835852 -Test 007 control_thompson PASS +Test 007 control_thompson_no_aero PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson_no_aero -Checking test 008 control_thompson_no_aero results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_ras +Checking test 008 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -238,33 +239,15 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 951.939829 - 0: The maximum resident set size (KB) = 798796 + 0: The total amount of wall time = 800.910954 + 0: The maximum resident set size (KB) = 495188 -Test 008 control_thompson_no_aero PASS +Test 008 control_ras PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_ras -Checking test 009 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 845.916939 - 0: The maximum resident set size (KB) = 449464 - -Test 009 control_ras PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_p8 -Checking test 010 control_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_p8 +Checking test 009 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -310,15 +293,15 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 847.230581 - 0: The maximum resident set size (KB) = 479172 + 0: The total amount of wall time = 855.784241 + 0: The maximum resident set size (KB) = 829948 -Test 010 control_p8 PASS +Test 009 control_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_control -Checking test 011 rap_control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_control +Checking test 010 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -364,15 +347,15 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1470.233829 - 0: The maximum resident set size (KB) = 791004 + 0: The total amount of wall time = 1367.186576 + 0: The maximum resident set size (KB) = 834704 -Test 011 rap_control PASS +Test 010 rap_control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_2threads -Checking test 012 rap_2threads results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_2threads +Checking test 011 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -418,15 +401,15 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1503.586337 - 0: The maximum resident set size (KB) = 854808 + 0: The total amount of wall time = 1458.038621 + 0: The maximum resident set size (KB) = 894092 -Test 012 rap_2threads PASS +Test 011 rap_2threads PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_restart -Checking test 013 rap_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_restart +Checking test 012 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -464,15 +447,15 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 661.580790 - 0: The maximum resident set size (KB) = 535576 + 0: The total amount of wall time = 668.329672 + 0: The maximum resident set size (KB) = 540388 -Test 013 rap_restart PASS +Test 012 rap_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_sfcdiff -Checking test 014 rap_sfcdiff results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_sfcdiff +Checking test 013 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -518,15 +501,15 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1468.154684 - 0: The maximum resident set size (KB) = 791700 + 0: The total amount of wall time = 1377.980933 + 0: The maximum resident set size (KB) = 834696 -Test 014 rap_sfcdiff PASS +Test 013 rap_sfcdiff PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_sfcdiff_restart -Checking test 015 rap_sfcdiff_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_sfcdiff_restart +Checking test 014 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -564,15 +547,15 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 682.644756 - 0: The maximum resident set size (KB) = 535260 + 0: The total amount of wall time = 683.744737 + 0: The maximum resident set size (KB) = 542372 -Test 015 rap_sfcdiff_restart PASS +Test 014 rap_sfcdiff_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/hrrr_control -Checking test 016 hrrr_control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/hrrr_control +Checking test 015 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -618,15 +601,15 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1445.901479 - 0: The maximum resident set size (KB) = 790568 + 0: The total amount of wall time = 1409.563650 + 0: The maximum resident set size (KB) = 835580 -Test 016 hrrr_control PASS +Test 015 hrrr_control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rrfs_v1beta -Checking test 017 rrfs_v1beta results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rrfs_v1beta +Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -672,15 +655,15 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1384.027470 - 0: The maximum resident set size (KB) = 787536 + 0: The total amount of wall time = 1383.406041 + 0: The maximum resident set size (KB) = 831964 -Test 017 rrfs_v1beta PASS +Test 016 rrfs_v1beta PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rrfs_conus13km_hrrr_warm -Checking test 018 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rrfs_conus13km_hrrr_warm +Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -688,15 +671,15 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1500.180349 - 0: The maximum resident set size (KB) = 635792 + 0: The total amount of wall time = 1546.604869 + 0: The maximum resident set size (KB) = 635468 -Test 018 rrfs_conus13km_hrrr_warm PASS +Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rrfs_conus13km_radar_tten_warm -Checking test 019 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rrfs_conus13km_radar_tten_warm +Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -704,15 +687,15 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1517.457305 - 0: The maximum resident set size (KB) = 634920 + 0: The total amount of wall time = 1609.368253 + 0: The maximum resident set size (KB) = 639160 -Test 019 rrfs_conus13km_radar_tten_warm PASS +Test 018 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rrfs_smoke_conus13km_hrrr_warm -Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rrfs_smoke_conus13km_hrrr_warm +Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -720,251 +703,237 @@ Checking test 020 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1529.959882 - 0: The maximum resident set size (KB) = 642888 + 0: The total amount of wall time = 1583.588404 + 0: The maximum resident set size (KB) = 652016 -Test 020 rrfs_smoke_conus13km_hrrr_warm PASS +Test 019 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_debug -Checking test 021 control_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_debug +Checking test 020 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.595903 - 0: The maximum resident set size (KB) = 436268 + 0: The total amount of wall time = 100.398371 + 0: The maximum resident set size (KB) = 476648 -Test 021 control_debug PASS +Test 020 control_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_diag_debug -Checking test 022 control_diag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_diag_debug +Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.468873 - 0: The maximum resident set size (KB) = 497536 + 0: The total amount of wall time = 123.779634 + 0: The maximum resident set size (KB) = 531272 -Test 022 control_diag_debug PASS +Test 021 control_diag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/regional_debug -Checking test 023 regional_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/regional_debug +Checking test 022 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 124.319126 - 0: The maximum resident set size (KB) = 549412 + 0: The total amount of wall time = 126.137789 + 0: The maximum resident set size (KB) = 551908 -Test 023 regional_debug PASS +Test 022 regional_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_control_debug -Checking test 024 rap_control_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_control_debug +Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.646081 - 0: The maximum resident set size (KB) = 810020 + 0: The total amount of wall time = 168.038109 + 0: The maximum resident set size (KB) = 846552 -Test 024 rap_control_debug PASS +Test 023 rap_control_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_diag_debug -Checking test 025 rap_diag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_diag_debug +Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.760514 - 0: The maximum resident set size (KB) = 887852 + 0: The total amount of wall time = 206.209248 + 0: The maximum resident set size (KB) = 928012 -Test 025 rap_diag_debug PASS +Test 024 rap_diag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 263.765199 - 0: The maximum resident set size (KB) = 808276 + 0: The total amount of wall time = 267.043370 + 0: The maximum resident set size (KB) = 848720 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rap_progcld_thompson_debug +Checking test 026 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.331705 - 0: The maximum resident set size (KB) = 804712 + 0: The total amount of wall time = 171.366549 + 0: The maximum resident set size (KB) = 843180 -Test 027 rap_progcld_thompson_debug PASS +Test 026 rap_progcld_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/rrfs_v1beta_debug +Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.237096 - 0: The maximum resident set size (KB) = 807272 + 0: The total amount of wall time = 165.376220 + 0: The maximum resident set size (KB) = 843416 -Test 028 rrfs_v1beta_debug PASS +Test 027 rrfs_v1beta_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson_debug -Checking test 029 control_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson_debug +Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.516522 - 0: The maximum resident set size (KB) = 802236 + 0: The total amount of wall time = 113.189328 + 0: The maximum resident set size (KB) = 839460 -Test 029 control_thompson_debug PASS +Test 028 control_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson_no_aero_debug -Checking test 030 control_thompson_no_aero_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson_no_aero_debug +Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.990403 - 0: The maximum resident set size (KB) = 793224 + 0: The total amount of wall time = 110.126995 + 0: The maximum resident set size (KB) = 831424 -Test 030 control_thompson_no_aero_debug PASS +Test 029 control_thompson_no_aero_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson_extdiag_debug -Checking test 031 control_thompson_extdiag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson_extdiag_debug +Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 132.951777 - 0: The maximum resident set size (KB) = 828344 + 0: The total amount of wall time = 132.309070 + 0: The maximum resident set size (KB) = 872424 -Test 031 control_thompson_extdiag_debug PASS +Test 030 control_thompson_extdiag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_thompson_progcld_thompson_debug -Checking test 032 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_thompson_progcld_thompson_debug +Checking test 031 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.144962 - 0: The maximum resident set size (KB) = 804220 + 0: The total amount of wall time = 110.934331 + 0: The maximum resident set size (KB) = 837664 -Test 032 control_thompson_progcld_thompson_debug PASS +Test 031 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_rrtmgp_debug -Checking test 033 control_rrtmgp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_ras_debug +Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.905626 - 0: The maximum resident set size (KB) = 536844 + 0: The total amount of wall time = 99.026514 + 0: The maximum resident set size (KB) = 486752 -Test 033 control_rrtmgp_debug PASS +Test 032 control_ras_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_ras_debug -Checking test 034 control_ras_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_stochy_debug +Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.382858 - 0: The maximum resident set size (KB) = 447592 + 0: The total amount of wall time = 116.669514 + 0: The maximum resident set size (KB) = 479084 -Test 034 control_ras_debug PASS +Test 033 control_stochy_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_stochy_debug -Checking test 035 control_stochy_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_debug_p8 +Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.758496 - 0: The maximum resident set size (KB) = 445348 + 0: The total amount of wall time = 113.318939 + 0: The maximum resident set size (KB) = 832760 -Test 035 control_stochy_debug PASS +Test 034 control_debug_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_debug_p8 -Checking test 036 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 104.964972 - 0: The maximum resident set size (KB) = 473900 - -Test 036 control_debug_p8 PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/control_wam_debug -Checking test 037 control_wam_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/control_wam_debug +Checking test 035 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 180.288892 - 0: The maximum resident set size (KB) = 190772 + 0: The total amount of wall time = 175.821837 + 0: The maximum resident set size (KB) = 193448 -Test 037 control_wam_debug PASS +Test 035 control_wam_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/cpld_control_c96_p8 -Checking test 038 cpld_control_c96_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/cpld_control_c96_noaero_p8 +Checking test 036 cpld_control_c96_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1025,15 +994,15 @@ Checking test 038 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1091.033017 - 0: The maximum resident set size (KB) = 501340 + 0: The total amount of wall time = 1120.237124 + 0: The maximum resident set size (KB) = 863068 -Test 038 cpld_control_c96_p8 PASS +Test 036 cpld_control_c96_noaero_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_204352/cpld_debug_p8 -Checking test 039 cpld_debug_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/cpld_debug_noaero_p8 +Checking test 037 cpld_debug_noaero_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1082,12 +1051,25 @@ Checking test 039 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 566.558030 - 0: The maximum resident set size (KB) = 520636 + 0: The total amount of wall time = 574.069721 + 0: The maximum resident set size (KB) = 867172 + +Test 037 cpld_debug_noaero_p8 PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_183615/datm_cdeps_control_cfsr +Checking test 038 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 163.298684 + 0: The maximum resident set size (KB) = 626020 -Test 039 cpld_debug_p8 PASS +Test 038 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 18 18:52:44 UTC 2022 -Elapsed time: 01h:03m:19s. Have a nice day! +Wed May 18 00:00:39 UTC 2022 +Elapsed time: 00h:41m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e558fa4b11..f23d3d0eaa 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,24 +1,25 @@ -Mon Apr 18 17:49:55 UTC 2022 +Tue May 17 22:51:53 UTC 2022 Start Regression test -Compile 001 elapsed time 569 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 514 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 893 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 893 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 623 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 948 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 768 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 440 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 437 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 229 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 753 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 382 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 567 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_control_p8 +Compile 001 elapsed time 559 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 760 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 675 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 337 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 742 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 899 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 282 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 761 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 1291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1079 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1059 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 246 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 1116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 632 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 726 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -79,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 211.864268 - 0: The maximum resident set size (KB) = 567828 + 0: The total amount of wall time = 347.563337 + 0: The maximum resident set size (KB) = 1134840 Test 001 cpld_control_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_2threads_p8 +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -139,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 245.395997 - 0: The maximum resident set size (KB) = 648736 + 0: The total amount of wall time = 435.744666 + 0: The maximum resident set size (KB) = 1710312 Test 002 cpld_2threads_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_decomp_p8 +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -199,18 +202,19 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 217.853706 - 0: The maximum resident set size (KB) = 562844 + 0: The total amount of wall time = 347.566446 + 0: The maximum resident set size (KB) = 1130884 Test 003 cpld_decomp_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_mpi_p8 +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -259,185 +263,23 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 186.962234 - 0: The maximum resident set size (KB) = 543536 + 0: The total amount of wall time = 298.524952 + 0: The maximum resident set size (KB) = 1046544 Test 004 cpld_mpi_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 253.738219 - 0: The maximum resident set size (KB) = 662908 - -Test 005 cpld_control_p7_rrtmgp PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 847.059696 - 0: The maximum resident set size (KB) = 1240272 - -Test 006 cpld_bmark_p7 PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 845.791700 - 0: The maximum resident set size (KB) = 1234908 - -Test 007 cpld_bmark_p8 PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK @@ -479,15 +321,15 @@ Checking test 008 cpld_bmark_mpi_p8 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 = 817.140588 - 0: The maximum resident set size (KB) = 1240648 + 0: The total amount of wall time = 1064.087355 + 0: The maximum resident set size (KB) = 2838692 -Test 008 cpld_bmark_mpi_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -512,6 +354,7 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -548,15 +391,15 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 206.013229 - 0: The maximum resident set size (KB) = 558680 + 0: The total amount of wall time = 346.917740 + 0: The maximum resident set size (KB) = 1144844 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -569,6 +412,7 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -605,15 +449,15 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 114.576960 - 0: The maximum resident set size (KB) = 327160 + 0: The total amount of wall time = 191.978224 + 0: The maximum resident set size (KB) = 1107352 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -626,6 +470,7 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -662,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 843.576640 - 0: The maximum resident set size (KB) = 736384 + 0: The total amount of wall time = 1477.225032 + 0: The maximum resident set size (KB) = 1586484 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -683,6 +528,7 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -719,17 +565,18 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 526.099053 - 0: The maximum resident set size (KB) = 837644 + 0: The total amount of wall time = 961.877789 + 0: The maximum resident set size (KB) = 1813848 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -769,17 +616,18 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 996.998872 - 0: The maximum resident set size (KB) = 1253248 + 0: The total amount of wall time = 1178.722063 + 0: The maximum resident set size (KB) = 2822932 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -819,15 +667,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 535.332918 - 0: The maximum resident set size (KB) = 1215656 + 0: The total amount of wall time = 664.174040 + 0: The maximum resident set size (KB) = 2803904 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -840,6 +688,7 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -876,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 594.193708 - 0: The maximum resident set size (KB) = 613336 + 0: The total amount of wall time = 1029.992583 + 0: The maximum resident set size (KB) = 1269048 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control -Checking test 016 control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -930,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.633084 - 0: The maximum resident set size (KB) = 464444 + 0: The total amount of wall time = 131.275528 + 0: The maximum resident set size (KB) = 467488 -Test 016 control PASS +Test 013 control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -980,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 128.236283 - 0: The maximum resident set size (KB) = 467672 + 0: The total amount of wall time = 134.248508 + 0: The maximum resident set size (KB) = 466072 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 119.192216 - 0: The maximum resident set size (KB) = 469516 + 0: The total amount of wall time = 121.658794 + 0: The maximum resident set size (KB) = 465276 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1044,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.034091 - 0: The maximum resident set size (KB) = 518692 + 0: The total amount of wall time = 155.471346 + 0: The maximum resident set size (KB) = 517432 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_restart -Checking test 020 control_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1090,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 64.727177 - 0: The maximum resident set size (KB) = 208368 + 0: The total amount of wall time = 66.219599 + 0: The maximum resident set size (KB) = 209016 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1140,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.635038 - 0: The maximum resident set size (KB) = 465004 + 0: The total amount of wall time = 124.710505 + 0: The maximum resident set size (KB) = 464584 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1174,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 121.450815 - 0: The maximum resident set size (KB) = 468696 + 0: The total amount of wall time = 129.321708 + 0: The maximum resident set size (KB) = 468416 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1192,15 +1041,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.602965 - 0: The maximum resident set size (KB) = 468388 + 0: The total amount of wall time = 131.025907 + 0: The maximum resident set size (KB) = 468832 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1210,15 +1059,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.328635 - 0: The maximum resident set size (KB) = 463660 + 0: The total amount of wall time = 127.147360 + 0: The maximum resident set size (KB) = 470000 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1256,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 307.468618 -0: The maximum resident set size (KB) = 664704 +0: The total amount of wall time = 328.499858 +0: The maximum resident set size (KB) = 660988 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1274,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 470.041971 - 0: The maximum resident set size (KB) = 566480 + 0: The total amount of wall time = 492.766043 + 0: The maximum resident set size (KB) = 565756 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1292,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 744.659676 - 0: The maximum resident set size (KB) = 833536 + 0: The total amount of wall time = 645.929889 + 0: The maximum resident set size (KB) = 837520 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1342,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 674.127687 - 0: The maximum resident set size (KB) = 978596 + 0: The total amount of wall time = 598.571432 + 0: The maximum resident set size (KB) = 994496 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1360,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.695759 - 0: The maximum resident set size (KB) = 472468 + 0: The total amount of wall time = 86.170916 + 0: The maximum resident set size (KB) = 468012 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.085496 - 0: The maximum resident set size (KB) = 251192 + 0: The total amount of wall time = 46.211718 + 0: The maximum resident set size (KB) = 253160 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1392,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.772243 - 0: The maximum resident set size (KB) = 468032 + 0: The total amount of wall time = 76.036278 + 0: The maximum resident set size (KB) = 470384 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.082071 - 0: The maximum resident set size (KB) = 466680 + 0: The total amount of wall time = 127.541475 + 0: The maximum resident set size (KB) = 466460 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1436,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 122.121137 - 0: The maximum resident set size (KB) = 465312 + 0: The total amount of wall time = 132.802037 + 0: The maximum resident set size (KB) = 466992 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1490,15 +1339,41 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.135753 - 0: The maximum resident set size (KB) = 497312 + 0: The total amount of wall time = 171.726725 + 0: The maximum resident set size (KB) = 853172 + +Test 031 control_p8 PASS + -Test 034 control_p8 PASS +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_p8_lndp +Checking test 032 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 325.358185 + 0: The maximum resident set size (KB) = 854160 + +Test 032 control_p8_lndp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1536,15 +1411,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 74.881989 - 0: The maximum resident set size (KB) = 296144 + 0: The total amount of wall time = 93.473210 + 0: The maximum resident set size (KB) = 599996 -Test 035 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1586,15 +1461,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.784165 - 0: The maximum resident set size (KB) = 493732 + 0: The total amount of wall time = 176.114576 + 0: The maximum resident set size (KB) = 848996 -Test 036 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1636,15 +1511,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.655650 - 0: The maximum resident set size (KB) = 570844 + 0: The total amount of wall time = 201.168033 + 0: The maximum resident set size (KB) = 936092 -Test 037 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1690,15 +1565,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.218746 - 0: The maximum resident set size (KB) = 595304 + 0: The total amount of wall time = 204.089367 + 0: The maximum resident set size (KB) = 974268 -Test 038 control_p7_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_control -Checking test 039 regional_control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1708,58 +1583,58 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 296.312840 - 0: The maximum resident set size (KB) = 584336 + 0: The total amount of wall time = 333.191052 + 0: The maximum resident set size (KB) = 582984 -Test 039 regional_control PASS +Test 037 regional_control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 164.974526 - 0: The maximum resident set size (KB) = 578808 + 0: The total amount of wall time = 182.249555 + 0: The maximum resident set size (KB) = 581208 -Test 040 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_control_2dwrtdecomp -Checking test 041 regional_control_2dwrtdecomp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 297.982169 - 0: The maximum resident set size (KB) = 580852 + 0: The total amount of wall time = 330.279490 + 0: The maximum resident set size (KB) = 584712 -Test 041 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_noquilt +Checking test 040 regional_noquilt 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 = 309.954720 - 0: The maximum resident set size (KB) = 592100 + 0: The total amount of wall time = 343.791704 + 0: The maximum resident set size (KB) = 597124 -Test 042 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1769,63 +1644,101 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 230.565261 - 0: The maximum resident set size (KB) = 584376 + 0: The total amount of wall time = 239.935680 + 0: The maximum resident set size (KB) = 584780 -Test 043 regional_2threads PASS +Test 041 regional_2threads PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_hafs -Checking test 044 regional_hafs results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.233885 - 0: The maximum resident set size (KB) = 579712 + 0: The total amount of wall time = 327.058395 + 0: The maximum resident set size (KB) = 587684 -Test 044 regional_hafs PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_3km +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.127960 - 0: The maximum resident set size (KB) = 579684 + 0: The total amount of wall time = 262.373328 + 0: The maximum resident set size (KB) = 621124 -Test 045 regional_netcdf_parallel PASS +Test 043 regional_3km PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_RRTMGP -Checking test 046 regional_RRTMGP results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_control +Checking test 044 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 = 367.488114 - 0: The maximum resident set size (KB) = 701864 + 0: The total amount of wall time = 441.659250 + 0: The maximum resident set size (KB) = 841008 -Test 046 regional_RRTMGP PASS +Test 044 rap_control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_control -Checking test 047 rap_control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1871,15 +1784,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.836956 - 0: The maximum resident set size (KB) = 834340 + 0: The total amount of wall time = 483.324629 + 0: The maximum resident set size (KB) = 958244 -Test 047 rap_control PASS +Test 045 rap_rrtmgp PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1889,15 +1802,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 270.830284 - 0: The maximum resident set size (KB) = 925500 + 0: The total amount of wall time = 289.986171 + 0: The maximum resident set size (KB) = 934508 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1943,15 +1856,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.703976 - 0: The maximum resident set size (KB) = 898800 + 0: The total amount of wall time = 513.273879 + 0: The maximum resident set size (KB) = 904648 -Test 049 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1989,15 +1902,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.700392 - 0: The maximum resident set size (KB) = 582084 + 0: The total amount of wall time = 224.844104 + 0: The maximum resident set size (KB) = 595244 -Test 050 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2043,15 +1956,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 349.985906 - 0: The maximum resident set size (KB) = 836168 + 0: The total amount of wall time = 441.031449 + 0: The maximum resident set size (KB) = 844860 -Test 051 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2089,15 +2002,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.934256 - 0: The maximum resident set size (KB) = 581732 + 0: The total amount of wall time = 226.527776 + 0: The maximum resident set size (KB) = 594012 -Test 052 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2143,15 +2056,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.006316 - 0: The maximum resident set size (KB) = 832804 + 0: The total amount of wall time = 417.833788 + 0: The maximum resident set size (KB) = 837340 -Test 053 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,14 +2110,58 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 354.497025 - 0: The maximum resident set size (KB) = 829872 + 0: The total amount of wall time = 437.788542 + 0: The maximum resident set size (KB) = 838824 + +Test 052 rrfs_v1beta PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 478.396379 + 0: The maximum resident set size (KB) = 524016 + +Test 053 rrfs_v1nssl PASS + -Test 054 rrfs_v1beta PASS +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 469.074135 + 0: The maximum resident set size (KB) = 514304 + +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rrfs_conus13km_hrrr_warm +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2213,14 +2170,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 159.845793 - 0: The maximum resident set size (KB) = 659696 + 0: The total amount of wall time = 180.247079 + 0: The maximum resident set size (KB) = 668068 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2229,14 +2186,14 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 166.033854 - 0: The maximum resident set size (KB) = 663092 + 0: The total amount of wall time = 187.812999 + 0: The maximum resident set size (KB) = 671976 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_smoke_conus13km_hrrr_warm Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2245,15 +2202,15 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 171.216445 - 0: The maximum resident set size (KB) = 678112 + 0: The total amount of wall time = 194.750846 + 0: The maximum resident set size (KB) = 680172 Test 057 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_rrtmgp -Checking test 058 control_rrtmgp results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2263,51 +2220,15 @@ Checking test 058 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.290597 - 0: The maximum resident set size (KB) = 588908 + 0: The total amount of wall time = 322.872790 + 0: The maximum resident set size (KB) = 531476 -Test 058 control_rrtmgp PASS +Test 058 control_csawmg PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_rrtmgp_c192 -Checking test 059 control_rrtmgp_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 507.921350 - 0: The maximum resident set size (KB) = 803568 - -Test 059 control_rrtmgp_c192 PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_csawmg -Checking test 060 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 307.930239 - 0: The maximum resident set size (KB) = 530780 - -Test 060 control_csawmg PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_csawmgt -Checking test 061 control_csawmgt results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2317,15 +2238,15 @@ Checking test 061 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 313.746730 - 0: The maximum resident set size (KB) = 531568 + 0: The total amount of wall time = 327.368507 + 0: The maximum resident set size (KB) = 536568 -Test 061 control_csawmgt PASS +Test 059 control_csawmgt PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_flake -Checking test 062 control_flake results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2335,15 +2256,15 @@ Checking test 062 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.843471 - 0: The maximum resident set size (KB) = 533732 + 0: The total amount of wall time = 236.298149 + 0: The maximum resident set size (KB) = 540076 -Test 062 control_flake PASS +Test 060 control_flake PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_ras -Checking test 063 control_ras results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2353,15 +2274,15 @@ Checking test 063 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.552815 - 0: The maximum resident set size (KB) = 496064 + 0: The total amount of wall time = 176.431610 + 0: The maximum resident set size (KB) = 497060 -Test 063 control_ras PASS +Test 061 control_ras PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson -Checking test 064 control_thompson results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2371,15 +2292,15 @@ Checking test 064 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 209.046426 - 0: The maximum resident set size (KB) = 850308 + 0: The total amount of wall time = 236.815544 + 0: The maximum resident set size (KB) = 851496 -Test 064 control_thompson PASS +Test 062 control_thompson PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson_no_aero -Checking test 065 control_thompson_no_aero results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2389,55 +2310,55 @@ Checking test 065 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.233214 - 0: The maximum resident set size (KB) = 842284 + 0: The total amount of wall time = 220.866759 + 0: The maximum resident set size (KB) = 845664 -Test 065 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_wam_repro -Checking test 066 control_wam results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.689580 - 0: The maximum resident set size (KB) = 228564 + 0: The total amount of wall time = 102.656157 + 0: The maximum resident set size (KB) = 233704 -Test 066 control_wam PASS +Test 064 control_wam PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_debug -Checking test 067 control_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.082835 - 0: The maximum resident set size (KB) = 532444 + 0: The total amount of wall time = 144.837808 + 0: The maximum resident set size (KB) = 630360 -Test 067 control_debug PASS +Test 065 control_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_2threads_debug -Checking test 068 control_2threads_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.624853 - 0: The maximum resident set size (KB) = 582472 + 0: The total amount of wall time = 213.729195 + 0: The maximum resident set size (KB) = 684596 -Test 068 control_2threads_debug PASS +Test 066 control_2threads_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_CubedSphereGrid_debug -Checking test 069 control_CubedSphereGrid_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2463,459 +2384,446 @@ Checking test 069 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.137658 - 0: The maximum resident set size (KB) = 535160 + 0: The total amount of wall time = 156.023519 + 0: The maximum resident set size (KB) = 634256 -Test 069 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_wrtGauss_netcdf_parallel_debug -Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.537840 - 0: The maximum resident set size (KB) = 531504 - -Test 070 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_stochy_debug -Checking test 071 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 159.445022 - 0: The maximum resident set size (KB) = 538704 + 0: The total amount of wall time = 146.735714 + 0: The maximum resident set size (KB) = 633212 -Test 071 control_stochy_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_lndp_debug -Checking test 072 control_lndp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.375021 - 0: The maximum resident set size (KB) = 534604 + 0: The total amount of wall time = 163.061058 + 0: The maximum resident set size (KB) = 635776 -Test 072 control_lndp_debug PASS +Test 069 control_stochy_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_rrtmgp_debug -Checking test 073 control_rrtmgp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.435826 - 0: The maximum resident set size (KB) = 635940 + 0: The total amount of wall time = 146.546914 + 0: The maximum resident set size (KB) = 635828 -Test 073 control_rrtmgp_debug PASS +Test 070 control_lndp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_csawmg_debug -Checking test 074 control_csawmg_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.243901 - 0: The maximum resident set size (KB) = 574768 + 0: The total amount of wall time = 225.401470 + 0: The maximum resident set size (KB) = 676888 -Test 074 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_csawmgt_debug -Checking test 075 control_csawmgt_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.770607 - 0: The maximum resident set size (KB) = 574712 + 0: The total amount of wall time = 223.756975 + 0: The maximum resident set size (KB) = 679000 -Test 075 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_ras_debug -Checking test 076 control_ras_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.726268 - 0: The maximum resident set size (KB) = 544652 + 0: The total amount of wall time = 146.902273 + 0: The maximum resident set size (KB) = 643460 -Test 076 control_ras_debug PASS +Test 073 control_ras_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_diag_debug -Checking test 077 control_diag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.661463 - 0: The maximum resident set size (KB) = 592068 + 0: The total amount of wall time = 156.507825 + 0: The maximum resident set size (KB) = 690928 -Test 077 control_diag_debug PASS +Test 074 control_diag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_debug_p8 -Checking test 078 control_debug_p8 results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.635268 - 0: The maximum resident set size (KB) = 560276 + 0: The total amount of wall time = 159.914541 + 0: The maximum resident set size (KB) = 1024156 -Test 078 control_debug_p8 PASS +Test 075 control_debug_p8 PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson_debug -Checking test 079 control_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson_debug +Checking test 076 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.355833 - 0: The maximum resident set size (KB) = 890968 + 0: The total amount of wall time = 169.136303 + 0: The maximum resident set size (KB) = 996068 -Test 079 control_thompson_debug PASS +Test 076 control_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson_no_aero_debug -Checking test 080 control_thompson_no_aero_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.631851 - 0: The maximum resident set size (KB) = 890804 + 0: The total amount of wall time = 162.936000 + 0: The maximum resident set size (KB) = 986552 -Test 080 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson_extdiag_debug -Checking test 081 control_thompson_extdiag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.232144 - 0: The maximum resident set size (KB) = 923224 + 0: The total amount of wall time = 178.392518 + 0: The maximum resident set size (KB) = 1024840 -Test 081 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_thompson_progcld_thompson_debug -Checking test 082 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.418739 - 0: The maximum resident set size (KB) = 894720 + 0: The total amount of wall time = 167.544262 + 0: The maximum resident set size (KB) = 992776 -Test 082 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/regional_debug -Checking test 083 regional_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 232.350133 - 0: The maximum resident set size (KB) = 606264 + 0: The total amount of wall time = 234.766129 + 0: The maximum resident set size (KB) = 611840 -Test 083 regional_debug PASS +Test 080 regional_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_control_debug -Checking test 084 rap_control_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.494230 - 0: The maximum resident set size (KB) = 900396 + 0: The total amount of wall time = 262.023660 + 0: The maximum resident set size (KB) = 998112 -Test 084 rap_control_debug PASS +Test 081 rap_control_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.932863 - 0: The maximum resident set size (KB) = 900796 + 0: The total amount of wall time = 262.329620 + 0: The maximum resident set size (KB) = 1002328 -Test 085 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_diag_debug -Checking test 086 rap_diag_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.214132 - 0: The maximum resident set size (KB) = 986972 + 0: The total amount of wall time = 277.318631 + 0: The maximum resident set size (KB) = 1083200 -Test 086 rap_diag_debug PASS +Test 083 rap_diag_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.002424 - 0: The maximum resident set size (KB) = 899040 + 0: The total amount of wall time = 269.038003 + 0: The maximum resident set size (KB) = 999204 -Test 087 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.907444 - 0: The maximum resident set size (KB) = 901928 + 0: The total amount of wall time = 269.008966 + 0: The maximum resident set size (KB) = 1001796 -Test 088 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_noah_debug -Checking test 089 rap_noah_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 250.945811 - 0: The maximum resident set size (KB) = 897452 + 0: The total amount of wall time = 273.202581 + 0: The maximum resident set size (KB) = 1000772 -Test 089 rap_noah_debug PASS +Test 086 rap_lndp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_rrtmgp_debug -Checking test 090 rap_rrtmgp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 443.596766 - 0: The maximum resident set size (KB) = 1005676 + 0: The total amount of wall time = 260.028231 + 0: The maximum resident set size (KB) = 1002388 -Test 090 rap_rrtmgp_debug PASS +Test 087 rap_flake_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.799646 - 0: The maximum resident set size (KB) = 900788 + 0: The total amount of wall time = 264.908731 + 0: The maximum resident set size (KB) = 999648 -Test 091 rap_lndp_debug PASS +Test 088 rap_progcld_thompson_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_sfcdiff_debug -Checking test 092 rap_sfcdiff_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.199199 - 0: The maximum resident set size (KB) = 901380 + 0: The total amount of wall time = 260.028563 + 0: The maximum resident set size (KB) = 1005140 -Test 092 rap_sfcdiff_debug PASS +Test 089 rap_noah_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_flake_debug -Checking test 093 rap_flake_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.695550 - 0: The maximum resident set size (KB) = 898676 + 0: The total amount of wall time = 445.097017 + 0: The maximum resident set size (KB) = 1123688 -Test 093 rap_flake_debug PASS +Test 090 rap_rrtmgp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 094 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 433.810647 - 0: The maximum resident set size (KB) = 899240 + 0: The total amount of wall time = 267.841108 + 0: The maximum resident set size (KB) = 1004328 -Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 091 rap_sfcdiff_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rap_progcld_thompson_debug -Checking test 095 rap_progcld_thompson_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.907562 - 0: The maximum resident set size (KB) = 899124 + 0: The total amount of wall time = 437.743572 + 0: The maximum resident set size (KB) = 1007320 -Test 095 rap_progcld_thompson_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/rrfs_v1beta_debug -Checking test 096 rrfs_v1beta_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.052439 - 0: The maximum resident set size (KB) = 895900 + 0: The total amount of wall time = 263.835413 + 0: The maximum resident set size (KB) = 998564 -Test 096 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_wam_debug -Checking test 097 control_wam_debug results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 272.292268 - 0: The maximum resident set size (KB) = 256708 + 0: The total amount of wall time = 274.823807 + 0: The maximum resident set size (KB) = 261720 -Test 097 control_wam_debug PASS +Test 094 control_wam_debug PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_atm -Checking test 098 hafs_regional_atm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 256.503911 - 0: The maximum resident set size (KB) = 703024 + 0: The total amount of wall time = 267.742444 + 0: The maximum resident set size (KB) = 718068 -Test 098 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_atm_thompson_gfdlsf -Checking test 099 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 300.431208 - 0: The maximum resident set size (KB) = 1065476 + 0: The total amount of wall time = 340.421660 + 0: The maximum resident set size (KB) = 1073868 -Test 099 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_atm_ocn -Checking test 100 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 347.788844 - 0: The maximum resident set size (KB) = 718292 + 0: The total amount of wall time = 349.312365 + 0: The maximum resident set size (KB) = 758672 -Test 100 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_atm_wav -Checking test 101 hafs_regional_atm_wav results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 843.677289 - 0: The maximum resident set size (KB) = 720008 + 0: The total amount of wall time = 863.661670 + 0: The maximum resident set size (KB) = 750928 -Test 101 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_atm_ocn_wav -Checking test 102 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2923,59 +2831,59 @@ Checking test 102 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 915.088992 - 0: The maximum resident set size (KB) = 722308 + 0: The total amount of wall time = 930.846563 + 0: The maximum resident set size (KB) = 770220 -Test 102 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_1nest_atm -Checking test 103 hafs_regional_1nest_atm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_1nest_atm +Checking test 100 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 407.591370 - 0: The maximum resident set size (KB) = 312212 + 0: The total amount of wall time = 448.111096 + 0: The maximum resident set size (KB) = 321372 -Test 103 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_telescopic_2nests_atm -Checking test 104 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 425.914986 - 0: The maximum resident set size (KB) = 325484 + 0: The total amount of wall time = 461.456931 + 0: The maximum resident set size (KB) = 324920 -Test 104 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_global_1nest_atm -Checking test 105 hafs_global_1nest_atm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_global_1nest_atm +Checking test 102 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 192.174377 - 0: The maximum resident set size (KB) = 195516 + 0: The total amount of wall time = 208.273616 + 0: The maximum resident set size (KB) = 219296 -Test 105 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_global_multiple_4nests_atm -Checking test 106 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2985,138 +2893,213 @@ Checking test 106 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 524.161256 - 0: The maximum resident set size (KB) = 252524 + 0: The total amount of wall time = 569.490203 + 0: The maximum resident set size (KB) = 256472 -Test 106 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_docn -Checking test 107 hafs_regional_docn results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_specified_moving_1nest_atm +Checking test 104 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 265.485355 + 0: The maximum resident set size (KB) = 324020 + +Test 104 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_storm_following_1nest_atm_ocn +Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 262.952156 + 0: The maximum resident set size (KB) = 354892 + +Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + + 0: The total amount of wall time = 773.003913 + 0: The maximum resident set size (KB) = 371900 + +Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_global_storm_following_1nest_atm +Checking test 107 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 83.877332 + 0: The maximum resident set size (KB) = 225860 + +Test 107 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_docn +Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 322.670442 - 0: The maximum resident set size (KB) = 724112 + 0: The total amount of wall time = 344.661481 + 0: The maximum resident set size (KB) = 778460 -Test 107 hafs_regional_docn PASS +Test 108 hafs_regional_docn PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_docn_oisst -Checking test 108 hafs_regional_docn_oisst results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_docn_oisst +Checking test 109 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 325.795142 - 0: The maximum resident set size (KB) = 721652 + 0: The total amount of wall time = 353.949707 + 0: The maximum resident set size (KB) = 752052 -Test 108 hafs_regional_docn_oisst PASS +Test 109 hafs_regional_docn_oisst PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/hafs_regional_datm_cdeps -Checking test 109 hafs_regional_datm_cdeps results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/hafs_regional_datm_cdeps +Checking test 110 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 941.607984 - 0: The maximum resident set size (KB) = 851464 + 0: The total amount of wall time = 962.236037 + 0: The maximum resident set size (KB) = 852896 -Test 109 hafs_regional_datm_cdeps PASS +Test 110 hafs_regional_datm_cdeps PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_control_cfsr -Checking test 110 datm_cdeps_control_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_control_cfsr +Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.405195 - 0: The maximum resident set size (KB) = 718176 + 0: The total amount of wall time = 144.194439 + 0: The maximum resident set size (KB) = 717968 -Test 110 datm_cdeps_control_cfsr PASS +Test 111 datm_cdeps_control_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_restart_cfsr -Checking test 111 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_restart_cfsr +Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 85.544996 - 0: The maximum resident set size (KB) = 720232 + 0: The total amount of wall time = 81.581566 + 0: The maximum resident set size (KB) = 739704 -Test 111 datm_cdeps_restart_cfsr PASS +Test 112 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_control_gefs -Checking test 112 datm_cdeps_control_gefs results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_control_gefs +Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.168714 - 0: The maximum resident set size (KB) = 618184 + 0: The total amount of wall time = 137.623909 + 0: The maximum resident set size (KB) = 621476 -Test 112 datm_cdeps_control_gefs PASS +Test 113 datm_cdeps_control_gefs PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_stochy_gefs -Checking test 113 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_iau_gefs +Checking test 114 datm_cdeps_iau_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 = 140.678626 - 0: The maximum resident set size (KB) = 620984 + 0: The total amount of wall time = 140.516005 + 0: The maximum resident set size (KB) = 619144 -Test 113 datm_cdeps_stochy_gefs PASS +Test 114 datm_cdeps_iau_gefs PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_bulk_cfsr -Checking test 114 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_stochy_gefs +Checking test 115 datm_cdeps_stochy_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 = 138.140955 + 0: The maximum resident set size (KB) = 621556 + +Test 115 datm_cdeps_stochy_gefs PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_bulk_cfsr +Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.734274 - 0: The maximum resident set size (KB) = 717696 + 0: The total amount of wall time = 141.439429 + 0: The maximum resident set size (KB) = 717404 -Test 114 datm_cdeps_bulk_cfsr PASS +Test 116 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_bulk_gefs -Checking test 115 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_bulk_gefs +Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 136.532759 - 0: The maximum resident set size (KB) = 618656 + 0: The total amount of wall time = 135.869485 + 0: The maximum resident set size (KB) = 622604 -Test 115 datm_cdeps_bulk_gefs PASS +Test 117 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_mx025_cfsr -Checking test 116 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_mx025_cfsr +Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3124,15 +3107,15 @@ Checking test 116 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 305.494218 - 0: The maximum resident set size (KB) = 564688 + 0: The total amount of wall time = 304.574316 + 0: The maximum resident set size (KB) = 563960 -Test 116 datm_cdeps_mx025_cfsr PASS +Test 118 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_mx025_gefs -Checking test 117 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_mx025_gefs +Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3140,52 +3123,65 @@ Checking test 117 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 298.495293 - 0: The maximum resident set size (KB) = 530144 + 0: The total amount of wall time = 302.586810 + 0: The maximum resident set size (KB) = 534320 -Test 117 datm_cdeps_mx025_gefs PASS +Test 119 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_multiple_files_cfsr -Checking test 118 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_multiple_files_cfsr +Checking test 120 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.806897 - 0: The maximum resident set size (KB) = 719016 + 0: The total amount of wall time = 143.018763 + 0: The maximum resident set size (KB) = 719500 -Test 118 datm_cdeps_multiple_files_cfsr PASS +Test 120 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_3072x1536_cfsr -Checking test 119 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_3072x1536_cfsr +Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 197.665854 - 0: The maximum resident set size (KB) = 1832760 + 0: The total amount of wall time = 191.770784 + 0: The maximum resident set size (KB) = 1831920 + +Test 121 datm_cdeps_3072x1536_cfsr PASS + + +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_gfs +Checking test 122 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 191.398148 + 0: The maximum resident set size (KB) = 1829144 -Test 119 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_gfs PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/datm_cdeps_debug_cfsr -Checking test 120 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/datm_cdeps_debug_cfsr +Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 431.506522 - 0: The maximum resident set size (KB) = 744504 + 0: The total amount of wall time = 433.865978 + 0: The maximum resident set size (KB) = 728436 -Test 120 datm_cdeps_debug_cfsr PASS +Test 123 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_atmwav -Checking test 121 control_atmwav results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_atmwav +Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3228,15 +3224,15 @@ Checking test 121 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.535805 - 0: The maximum resident set size (KB) = 491068 + 0: The total amount of wall time = 81.069086 + 0: The maximum resident set size (KB) = 493616 -Test 121 control_atmwav PASS +Test 124 control_atmwav PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_c384gdas_wav -Checking test 122 control_c384gdas_wav results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_c384gdas_wav +Checking test 125 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3281,15 +3277,15 @@ Checking test 122 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 694.557722 - 0: The maximum resident set size (KB) = 1049512 + 0: The total amount of wall time = 697.102968 + 0: The maximum resident set size (KB) = 1052576 -Test 122 control_c384gdas_wav PASS +Test 125 control_c384gdas_wav PASS -baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_206736/control_atm_aerosols -Checking test 123 control_atm_aerosols results .... +baseline dir = /scratch2/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/FV3_RT/rt_21489/control_atm_aerosols +Checking test 126 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3335,12 +3331,12 @@ Checking test 123 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.830364 - 0: The maximum resident set size (KB) = 887640 + 0: The total amount of wall time = 280.864107 + 0: The maximum resident set size (KB) = 910412 -Test 123 control_atm_aerosols PASS +Test 126 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 18 19:08:41 UTC 2022 -Elapsed time: 01h:18m:46s. Have a nice day! +Tue May 17 23:55:50 UTC 2022 +Elapsed time: 01h:03m:58s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 5822fd2470..efbc82e468 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,25 @@ -Wed Apr 20 21:11:03 GMT 2022 +Tue May 17 23:58:11 GMT 2022 Start Regression test -Compile 001 elapsed time 1779 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 341 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1629 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 882 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 413 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 336 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1592 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1594 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 448 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 013 elapsed time 187 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 1523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_control_p8 +Compile 001 elapsed time 2039 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 439 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1309 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 1269 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 280 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 307 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 435 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 455 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1550 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1581 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 213 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1478 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 1315 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -78,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 290.573446 - 0: The maximum resident set size (KB) = 604544 + 0: The total amount of wall time = 473.155027 + 0: The maximum resident set size (KB) = 1162212 Test 001 cpld_control_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_2threads_p8 +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -138,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 890.934219 - 0: The maximum resident set size (KB) = 670688 + 0: The total amount of wall time = 1365.692811 + 0: The maximum resident set size (KB) = 1749736 Test 002 cpld_2threads_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_mpi_p8 +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_mpi_p8 Checking test 003 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -198,477 +202,45 @@ Checking test 003 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 253.536500 - 0: The maximum resident set size (KB) = 599324 + 0: The total amount of wall time = 399.711333 + 0: The maximum resident set size (KB) = 1282012 Test 003 cpld_mpi_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_p7_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_control_p7_rrtmgp -Checking test 004 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 333.943350 - 0: The maximum resident set size (KB) = 704912 - -Test 004 cpld_control_p7_rrtmgp PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_bmark_p7 -Checking test 005 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1188.199945 - 0: The maximum resident set size (KB) = 1369248 - -Test 005 cpld_bmark_p7 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_bmark_p8 -Checking test 006 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1190.262849 - 0: The maximum resident set size (KB) = 1367132 - -Test 006 cpld_bmark_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_bmark_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_bmark_mpi_p8 -Checking test 007 cpld_bmark_mpi_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 1185.149845 - 0: The maximum resident set size (KB) = 1373364 - -Test 007 cpld_bmark_mpi_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_control_c96_p8 -Checking test 008 cpld_control_c96_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 278.293646 - 0: The maximum resident set size (KB) = 595344 - -Test 008 cpld_control_c96_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_restart_c96_p8 -Checking test 009 cpld_restart_c96_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 155.913396 - 0: The maximum resident set size (KB) = 356668 - -Test 009 cpld_restart_c96_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c192_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_control_c192_p8 -Checking test 010 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 1199.450637 - 0: The maximum resident set size (KB) = 790572 - -Test 010 cpld_control_c192_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c192_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_restart_c192_p8 -Checking test 011 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 750.678802 - 0: The maximum resident set size (KB) = 889168 - -Test 011 cpld_restart_c192_p8 PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c384_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_control_c384_p8 -Checking test 012 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_control_c96_p8 +Checking test 004 cpld_control_c96_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -702,23 +274,31 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1348.305080 - 0: The maximum resident set size (KB) = 1349032 + 0: The total amount of wall time = 393.632015 + 0: The maximum resident set size (KB) = 1279104 -Test 012 cpld_control_c384_p8 PASS +Test 004 cpld_control_c96_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_control_c384_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_restart_c384_p8 -Checking test 013 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_control_c96_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_restart_c96_p8 +Checking test 005 cpld_restart_c96_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -752,21 +332,18 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 728.636072 - 0: The maximum resident set size (KB) = 1305584 + 0: The total amount of wall time = 225.407863 + 0: The maximum resident set size (KB) = 1237556 -Test 013 cpld_restart_c384_p8 PASS +Test 005 cpld_restart_c96_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/cpld_debug_p8 -Checking test 014 cpld_debug_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/cpld_debug_p8 +Checking test 006 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -779,6 +356,7 @@ Checking test 014 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -815,15 +393,15 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 816.958027 - 0: The maximum resident set size (KB) = 649708 + 0: The total amount of wall time = 1067.591963 + 0: The maximum resident set size (KB) = 1347956 -Test 014 cpld_debug_p8 PASS +Test 006 cpld_debug_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control -Checking test 015 control results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control +Checking test 007 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -869,15 +447,15 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.826185 - 0: The maximum resident set size (KB) = 483640 + 0: The total amount of wall time = 182.266801 + 0: The maximum resident set size (KB) = 471844 -Test 015 control PASS +Test 007 control PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_decomp -Checking test 016 control_decomp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_decomp +Checking test 008 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -919,29 +497,29 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.164665 - 0: The maximum resident set size (KB) = 483480 + 0: The total amount of wall time = 185.667724 + 0: The maximum resident set size (KB) = 472140 -Test 016 control_decomp PASS +Test 008 control_decomp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_2dwrtdecomp -Checking test 017 control_2dwrtdecomp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_2dwrtdecomp +Checking test 009 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 157.597757 - 0: The maximum resident set size (KB) = 484216 + 0: The total amount of wall time = 175.149662 + 0: The maximum resident set size (KB) = 473884 -Test 017 control_2dwrtdecomp PASS +Test 009 control_2dwrtdecomp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_2threads +Checking test 010 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -983,15 +561,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 740.875608 - 0: The maximum resident set size (KB) = 530872 + 0: The total amount of wall time = 808.090100 + 0: The maximum resident set size (KB) = 528428 -Test 018 control_2threads PASS +Test 010 control_2threads PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_restart -Checking test 019 control_restart results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_restart +Checking test 011 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1029,15 +607,15 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.555424 - 0: The maximum resident set size (KB) = 218748 + 0: The total amount of wall time = 97.705395 + 0: The maximum resident set size (KB) = 213700 -Test 019 control_restart PASS +Test 011 control_restart PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_fhzero +Checking test 012 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1079,15 +657,15 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.544931 - 0: The maximum resident set size (KB) = 480172 + 0: The total amount of wall time = 174.023025 + 0: The maximum resident set size (KB) = 470016 -Test 020 control_fhzero PASS +Test 012 control_fhzero PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_CubedSphereGrid +Checking test 013 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1113,15 +691,15 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 157.197681 - 0: The maximum resident set size (KB) = 477920 + 0: The total amount of wall time = 174.931639 + 0: The maximum resident set size (KB) = 469452 -Test 021 control_CubedSphereGrid PASS +Test 013 control_CubedSphereGrid PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_latlon -Checking test 022 control_latlon results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_latlon +Checking test 014 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1131,15 +709,15 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.365269 - 0: The maximum resident set size (KB) = 478364 + 0: The total amount of wall time = 178.573912 + 0: The maximum resident set size (KB) = 471208 -Test 022 control_latlon PASS +Test 014 control_latlon PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_wrtGauss_netcdf_parallel +Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1149,15 +727,15 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 166.606410 - 0: The maximum resident set size (KB) = 479080 + 0: The total amount of wall time = 185.562603 + 0: The maximum resident set size (KB) = 470812 -Test 023 control_wrtGauss_netcdf_parallel PASS +Test 015 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_c48 -Checking test 024 control_c48 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_c48 +Checking test 016 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1195,15 +773,15 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 533.043828 -0: The maximum resident set size (KB) = 672380 +0: The total amount of wall time = 560.629885 +0: The maximum resident set size (KB) = 665212 -Test 024 control_c48 PASS +Test 016 control_c48 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_c192 +Checking test 017 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1213,15 +791,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 661.345715 - 0: The maximum resident set size (KB) = 588036 + 0: The total amount of wall time = 677.590692 + 0: The maximum resident set size (KB) = 568472 -Test 025 control_c192 PASS +Test 017 control_c192 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_c384 +Checking test 018 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1231,15 +809,15 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 839.031883 - 0: The maximum resident set size (KB) = 748068 + 0: The total amount of wall time = 894.423312 + 0: The maximum resident set size (KB) = 698612 -Test 026 control_c384 PASS +Test 018 control_c384 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_c384gdas +Checking test 019 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1281,15 +859,15 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 808.261447 - 0: The maximum resident set size (KB) = 846736 + 0: The total amount of wall time = 849.446641 + 0: The maximum resident set size (KB) = 786508 -Test 027 control_c384gdas PASS +Test 019 control_c384gdas PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_stochy +Checking test 020 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1299,29 +877,29 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.770514 - 0: The maximum resident set size (KB) = 485404 + 0: The total amount of wall time = 133.190717 + 0: The maximum resident set size (KB) = 476692 -Test 028 control_stochy PASS +Test 020 control_stochy PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_stochy_restart -Checking test 029 control_stochy_restart results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_stochy_restart +Checking test 021 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 61.552102 - 0: The maximum resident set size (KB) = 241792 + 0: The total amount of wall time = 66.616225 + 0: The maximum resident set size (KB) = 238064 -Test 029 control_stochy_restart PASS +Test 021 control_stochy_restart PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_lndp +Checking test 022 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1331,15 +909,15 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.766357 - 0: The maximum resident set size (KB) = 482092 + 0: The total amount of wall time = 115.373868 + 0: The maximum resident set size (KB) = 473936 -Test 030 control_lndp PASS +Test 022 control_lndp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_iovr4 -Checking test 031 control_iovr4 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_iovr4 +Checking test 023 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1353,15 +931,15 @@ Checking test 031 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.321734 - 0: The maximum resident set size (KB) = 482640 + 0: The total amount of wall time = 184.739645 + 0: The maximum resident set size (KB) = 470736 -Test 031 control_iovr4 PASS +Test 023 control_iovr4 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_iovr5 -Checking test 032 control_iovr5 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_iovr5 +Checking test 024 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1375,15 +953,15 @@ Checking test 032 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.350400 - 0: The maximum resident set size (KB) = 481004 + 0: The total amount of wall time = 183.162864 + 0: The maximum resident set size (KB) = 468068 -Test 032 control_iovr5 PASS +Test 024 control_iovr5 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_p8 -Checking test 033 control_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_p8 +Checking test 025 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,15 +1007,41 @@ Checking test 033 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.677273 - 0: The maximum resident set size (KB) = 506836 + 0: The total amount of wall time = 236.757877 + 0: The maximum resident set size (KB) = 857708 + +Test 025 control_p8 PASS + + +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_p8_lndp +Checking test 026 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 454.652241 + 0: The maximum resident set size (KB) = 856852 -Test 033 control_p8 PASS +Test 026 control_p8_lndp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_restart_p8 -Checking test 034 control_restart_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_restart_p8 +Checking test 027 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1475,15 +1079,15 @@ Checking test 034 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.360685 - 0: The maximum resident set size (KB) = 296892 + 0: The total amount of wall time = 126.705630 + 0: The maximum resident set size (KB) = 598968 -Test 034 control_restart_p8 PASS +Test 027 control_restart_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_decomp_p8 -Checking test 035 control_decomp_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_decomp_p8 +Checking test 028 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1525,15 +1129,15 @@ Checking test 035 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.937080 - 0: The maximum resident set size (KB) = 499620 + 0: The total amount of wall time = 240.995700 + 0: The maximum resident set size (KB) = 846316 -Test 035 control_decomp_p8 PASS +Test 028 control_decomp_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_2threads_p8 -Checking test 036 control_2threads_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_2threads_p8 +Checking test 029 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1575,15 +1179,15 @@ Checking test 036 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 829.397046 - 0: The maximum resident set size (KB) = 578616 + 0: The total amount of wall time = 924.252709 + 0: The maximum resident set size (KB) = 939608 -Test 036 control_2threads_p8 PASS +Test 029 control_2threads_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_p7_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_p7_rrtmgp -Checking test 037 control_p7_rrtmgp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_p8_rrtmgp +Checking test 030 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1629,15 +1233,15 @@ Checking test 037 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.143208 - 0: The maximum resident set size (KB) = 603568 + 0: The total amount of wall time = 273.730480 + 0: The maximum resident set size (KB) = 975564 -Test 037 control_p7_rrtmgp PASS +Test 030 control_p8_rrtmgp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_control -Checking test 038 regional_control results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_control +Checking test 031 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1647,106 +1251,144 @@ Checking test 038 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 426.474201 - 0: The maximum resident set size (KB) = 591040 + 0: The total amount of wall time = 476.267897 + 0: The maximum resident set size (KB) = 584156 -Test 038 regional_control PASS +Test 031 regional_control PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_restart -Checking test 039 regional_restart results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_restart +Checking test 032 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 230.375419 - 0: The maximum resident set size (KB) = 589352 + 0: The total amount of wall time = 275.864468 + 0: The maximum resident set size (KB) = 582960 -Test 039 regional_restart PASS +Test 032 regional_restart PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_control_2dwrtdecomp -Checking test 040 regional_control_2dwrtdecomp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_control_2dwrtdecomp +Checking test 033 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 417.119030 - 0: The maximum resident set size (KB) = 595688 + 0: The total amount of wall time = 471.277610 + 0: The maximum resident set size (KB) = 578696 -Test 040 regional_control_2dwrtdecomp PASS +Test 033 regional_control_2dwrtdecomp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_noquilt -Checking test 041 regional_noquilt results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_noquilt +Checking test 034 regional_noquilt 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 = 440.407334 - 0: The maximum resident set size (KB) = 593784 + 0: The total amount of wall time = 497.807911 + 0: The maximum resident set size (KB) = 588124 -Test 041 regional_noquilt PASS +Test 034 regional_noquilt PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_hafs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_hafs -Checking test 042 regional_hafs results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_netcdf_parallel +Checking test 035 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 416.586875 - 0: The maximum resident set size (KB) = 591848 + 0: The total amount of wall time = 474.475171 + 0: The maximum resident set size (KB) = 581260 -Test 042 regional_hafs PASS +Test 035 regional_netcdf_parallel PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_netcdf_parallel -Checking test 043 regional_netcdf_parallel results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_3km +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_3km +Checking test 036 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.097946 - 0: The maximum resident set size (KB) = 588348 + 0: The total amount of wall time = 386.876351 + 0: The maximum resident set size (KB) = 626156 -Test 043 regional_netcdf_parallel PASS +Test 036 regional_3km PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_RRTMGP -Checking test 044 regional_RRTMGP results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_control +Checking test 037 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 = 559.818162 - 0: The maximum resident set size (KB) = 711976 + 0: The total amount of wall time = 588.717092 + 0: The maximum resident set size (KB) = 839608 -Test 044 regional_RRTMGP PASS +Test 037 rap_control PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_control -Checking test 045 rap_control results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_rrtmgp +Checking test 038 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1792,15 +1434,15 @@ Checking test 045 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 471.777152 - 0: The maximum resident set size (KB) = 841792 + 0: The total amount of wall time = 623.494066 + 0: The maximum resident set size (KB) = 954164 -Test 045 rap_control PASS +Test 038 rap_rrtmgp PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_spp_sppt_shum_skeb +Checking test 039 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1810,15 +1452,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1210.679524 - 0: The maximum resident set size (KB) = 959980 + 0: The total amount of wall time = 1358.313959 + 0: The maximum resident set size (KB) = 934728 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 039 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_restart -Checking test 047 rap_restart results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_restart +Checking test 040 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1856,15 +1498,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.503653 - 0: The maximum resident set size (KB) = 595012 + 0: The total amount of wall time = 301.703229 + 0: The maximum resident set size (KB) = 589776 -Test 047 rap_restart PASS +Test 040 rap_restart PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_sfcdiff +Checking test 041 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1910,15 +1552,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 472.984688 - 0: The maximum resident set size (KB) = 848000 + 0: The total amount of wall time = 586.728441 + 0: The maximum resident set size (KB) = 842252 -Test 048 rap_sfcdiff PASS +Test 041 rap_sfcdiff PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_sfcdiff_restart +Checking test 042 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1956,15 +1598,15 @@ Checking test 049 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.861642 - 0: The maximum resident set size (KB) = 588908 + 0: The total amount of wall time = 301.978573 + 0: The maximum resident set size (KB) = 591884 -Test 049 rap_sfcdiff_restart PASS +Test 042 rap_sfcdiff_restart PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hrrr_control -Checking test 050 hrrr_control results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hrrr_control +Checking test 043 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2010,15 +1652,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 480.940190 - 0: The maximum resident set size (KB) = 844208 + 0: The total amount of wall time = 562.966128 + 0: The maximum resident set size (KB) = 840856 -Test 050 hrrr_control PASS +Test 043 hrrr_control PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_v1beta +Checking test 044 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2064,47 +1706,59 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 466.048591 - 0: The maximum resident set size (KB) = 843936 + 0: The total amount of wall time = 578.002853 + 0: The maximum resident set size (KB) = 833948 -Test 051 rrfs_v1beta PASS +Test 044 rrfs_v1beta PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rrfs_conus13km_hrrr_warm -Checking test 052 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_v1nssl +Checking test 045 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.914901 - 0: The maximum resident set size (KB) = 686348 + 0: The total amount of wall time = 640.821612 + 0: The maximum resident set size (KB) = 527352 -Test 052 rrfs_conus13km_hrrr_warm PASS +Test 045 rrfs_v1nssl PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rrfs_conus13km_radar_tten_warm -Checking test 053 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_v1nssl_nohailnoccn +Checking test 046 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.637822 - 0: The maximum resident set size (KB) = 690516 + 0: The total amount of wall time = 629.207110 + 0: The maximum resident set size (KB) = 519120 -Test 053 rrfs_conus13km_radar_tten_warm PASS +Test 046 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rrfs_smoke_conus13km_hrrr_warm -Checking test 054 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_conus13km_hrrr_warm +Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2112,51 +1766,47 @@ Checking test 054 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 263.683171 - 0: The maximum resident set size (KB) = 710584 + 0: The total amount of wall time = 252.108791 + 0: The maximum resident set size (KB) = 661428 -Test 054 rrfs_smoke_conus13km_hrrr_warm PASS +Test 047 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_rrtmgp -Checking test 055 control_rrtmgp results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_conus13km_radar_tten_warm +Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 266.996491 - 0: The maximum resident set size (KB) = 598300 + 0: The total amount of wall time = 252.181187 + 0: The maximum resident set size (KB) = 669120 -Test 055 control_rrtmgp PASS +Test 048 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_rrtmgp_c192 -Checking test 056 control_rrtmgp_c192 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_smoke_conus13km_hrrr_warm +Checking test 049 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 684.731491 - 0: The maximum resident set size (KB) = 810652 + 0: The total amount of wall time = 273.795373 + 0: The maximum resident set size (KB) = 682328 -Test 056 control_rrtmgp_c192 PASS +Test 049 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_csawmg -Checking test 057 control_csawmg results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_csawmg +Checking test 050 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2166,15 +1816,15 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 419.919150 - 0: The maximum resident set size (KB) = 540096 + 0: The total amount of wall time = 448.498815 + 0: The maximum resident set size (KB) = 540628 -Test 057 control_csawmg PASS +Test 050 control_csawmg PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_csawmgt -Checking test 058 control_csawmgt results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_csawmgt +Checking test 051 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2184,15 +1834,15 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 415.431559 - 0: The maximum resident set size (KB) = 539632 + 0: The total amount of wall time = 441.993976 + 0: The maximum resident set size (KB) = 536432 -Test 058 control_csawmgt PASS +Test 051 control_csawmgt PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_flake -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_flake -Checking test 059 control_flake results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_flake +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_flake +Checking test 052 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2202,15 +1852,15 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 277.211795 - 0: The maximum resident set size (KB) = 550696 + 0: The total amount of wall time = 331.290657 + 0: The maximum resident set size (KB) = 542268 -Test 059 control_flake PASS +Test 052 control_flake PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_ras -Checking test 060 control_ras results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_ras +Checking test 053 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2220,15 +1870,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 224.471701 - 0: The maximum resident set size (KB) = 510804 + 0: The total amount of wall time = 241.333018 + 0: The maximum resident set size (KB) = 499904 -Test 060 control_ras PASS +Test 053 control_ras PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson -Checking test 061 control_thompson results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson +Checking test 054 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2238,15 +1888,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 285.231001 - 0: The maximum resident set size (KB) = 860836 + 0: The total amount of wall time = 328.598876 + 0: The maximum resident set size (KB) = 849852 -Test 061 control_thompson PASS +Test 054 control_thompson PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson_no_aero +Checking test 055 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2256,55 +1906,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 266.873755 - 0: The maximum resident set size (KB) = 855008 + 0: The total amount of wall time = 307.055598 + 0: The maximum resident set size (KB) = 850160 -Test 062 control_thompson_no_aero PASS +Test 055 control_thompson_no_aero PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wam_repro -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_wam_repro -Checking test 063 control_wam results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_wam +Checking test 056 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 148.350665 - 0: The maximum resident set size (KB) = 236848 + 0: The total amount of wall time = 146.670657 + 0: The maximum resident set size (KB) = 233912 -Test 063 control_wam PASS +Test 056 control_wam PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_debug -Checking test 064 control_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_debug +Checking test 057 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.834844 - 0: The maximum resident set size (KB) = 547232 + 0: The total amount of wall time = 246.395758 + 0: The maximum resident set size (KB) = 637744 -Test 064 control_debug PASS +Test 057 control_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_2threads_debug -Checking test 065 control_2threads_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_2threads_debug +Checking test 058 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 361.584546 - 0: The maximum resident set size (KB) = 597664 + 0: The total amount of wall time = 368.346562 + 0: The maximum resident set size (KB) = 684032 -Test 065 control_2threads_debug PASS +Test 058 control_2threads_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_CubedSphereGrid_debug +Checking test 059 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2330,429 +1980,416 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 203.734999 - 0: The maximum resident set size (KB) = 540468 + 0: The total amount of wall time = 206.545632 + 0: The maximum resident set size (KB) = 631140 -Test 066 control_CubedSphereGrid_debug PASS +Test 059 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_wrtGauss_netcdf_parallel_debug +Checking test 060 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.497105 - 0: The maximum resident set size (KB) = 544784 - -Test 067 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_stochy_debug -Checking test 068 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 215.106093 - 0: The maximum resident set size (KB) = 547452 + 0: The total amount of wall time = 192.714307 + 0: The maximum resident set size (KB) = 629244 -Test 068 control_stochy_debug PASS +Test 060 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_lndp_debug -Checking test 069 control_lndp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_stochy_debug +Checking test 061 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.452697 - 0: The maximum resident set size (KB) = 544656 + 0: The total amount of wall time = 216.459327 + 0: The maximum resident set size (KB) = 631072 -Test 069 control_lndp_debug PASS +Test 061 control_stochy_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_rrtmgp_debug -Checking test 070 control_rrtmgp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_lndp_debug +Checking test 062 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.277840 - 0: The maximum resident set size (KB) = 644780 + 0: The total amount of wall time = 194.031613 + 0: The maximum resident set size (KB) = 636408 -Test 070 control_rrtmgp_debug PASS +Test 062 control_lndp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_csawmg_debug -Checking test 071 control_csawmg_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_csawmg_debug +Checking test 063 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 303.327294 - 0: The maximum resident set size (KB) = 576344 + 0: The total amount of wall time = 329.055738 + 0: The maximum resident set size (KB) = 671416 -Test 071 control_csawmg_debug PASS +Test 063 control_csawmg_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_csawmgt_debug -Checking test 072 control_csawmgt_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_csawmgt_debug +Checking test 064 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.413172 - 0: The maximum resident set size (KB) = 576072 + 0: The total amount of wall time = 310.952699 + 0: The maximum resident set size (KB) = 671316 -Test 072 control_csawmgt_debug PASS +Test 064 control_csawmgt_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_ras_debug -Checking test 073 control_ras_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_ras_debug +Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.176395 - 0: The maximum resident set size (KB) = 557168 + 0: The total amount of wall time = 196.494733 + 0: The maximum resident set size (KB) = 639780 -Test 073 control_ras_debug PASS +Test 065 control_ras_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_diag_debug -Checking test 074 control_diag_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_diag_debug +Checking test 066 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.210251 - 0: The maximum resident set size (KB) = 597524 + 0: The total amount of wall time = 203.503432 + 0: The maximum resident set size (KB) = 686800 -Test 074 control_diag_debug PASS +Test 066 control_diag_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_debug_p8 -Checking test 075 control_debug_p8 results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_debug_p8 +Checking test 067 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.808239 - 0: The maximum resident set size (KB) = 558472 + 0: The total amount of wall time = 217.877933 + 0: The maximum resident set size (KB) = 1017688 -Test 075 control_debug_p8 PASS +Test 067 control_debug_p8 PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson_debug -Checking test 076 control_thompson_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson_debug +Checking test 068 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 223.601493 - 0: The maximum resident set size (KB) = 903096 + 0: The total amount of wall time = 231.044037 + 0: The maximum resident set size (KB) = 993628 -Test 076 control_thompson_debug PASS +Test 068 control_thompson_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson_no_aero_debug -Checking test 077 control_thompson_no_aero_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson_no_aero_debug +Checking test 069 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.159414 - 0: The maximum resident set size (KB) = 899360 + 0: The total amount of wall time = 219.692961 + 0: The maximum resident set size (KB) = 988440 -Test 077 control_thompson_no_aero_debug PASS +Test 069 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson_extdiag_debug -Checking test 078 control_thompson_extdiag_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson_extdiag_debug +Checking test 070 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.207309 - 0: The maximum resident set size (KB) = 929404 + 0: The total amount of wall time = 235.832448 + 0: The maximum resident set size (KB) = 1019500 -Test 078 control_thompson_extdiag_debug PASS +Test 070 control_thompson_extdiag_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_thompson_progcld_thompson_debug -Checking test 079 control_thompson_progcld_thompson_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_thompson_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_thompson_progcld_thompson_debug +Checking test 071 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.806395 - 0: The maximum resident set size (KB) = 899456 + 0: The total amount of wall time = 222.476003 + 0: The maximum resident set size (KB) = 993668 -Test 079 control_thompson_progcld_thompson_debug PASS +Test 071 control_thompson_progcld_thompson_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/regional_debug -Checking test 080 regional_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/fv3_regional_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/regional_debug +Checking test 072 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 320.376210 - 0: The maximum resident set size (KB) = 610048 + 0: The total amount of wall time = 321.275520 + 0: The maximum resident set size (KB) = 611992 -Test 080 regional_debug PASS +Test 072 regional_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_control_debug -Checking test 081 rap_control_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_control_debug +Checking test 073 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.944669 - 0: The maximum resident set size (KB) = 914904 + 0: The total amount of wall time = 346.724800 + 0: The maximum resident set size (KB) = 997028 -Test 081 rap_control_debug PASS +Test 073 rap_control_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_unified_drag_suite_debug -Checking test 082 rap_unified_drag_suite_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_unified_drag_suite_debug +Checking test 074 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.821915 - 0: The maximum resident set size (KB) = 908648 + 0: The total amount of wall time = 345.514730 + 0: The maximum resident set size (KB) = 999864 -Test 082 rap_unified_drag_suite_debug PASS +Test 074 rap_unified_drag_suite_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_diag_debug -Checking test 083 rap_diag_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_diag_debug +Checking test 075 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 371.666804 - 0: The maximum resident set size (KB) = 994104 + 0: The total amount of wall time = 368.725844 + 0: The maximum resident set size (KB) = 1079628 -Test 083 rap_diag_debug PASS +Test 075 rap_diag_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_cires_ugwp_debug -Checking test 084 rap_cires_ugwp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_cires_ugwp_debug +Checking test 076 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.706454 - 0: The maximum resident set size (KB) = 907800 + 0: The total amount of wall time = 353.334726 + 0: The maximum resident set size (KB) = 997268 -Test 084 rap_cires_ugwp_debug PASS +Test 076 rap_cires_ugwp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_unified_ugwp_debug -Checking test 085 rap_unified_ugwp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_unified_ugwp_debug +Checking test 077 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.288578 - 0: The maximum resident set size (KB) = 908396 + 0: The total amount of wall time = 359.632348 + 0: The maximum resident set size (KB) = 994340 -Test 085 rap_unified_ugwp_debug PASS +Test 077 rap_unified_ugwp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_noah_debug -Checking test 086 rap_noah_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_lndp_debug +Checking test 078 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.187546 - 0: The maximum resident set size (KB) = 906812 + 0: The total amount of wall time = 352.957598 + 0: The maximum resident set size (KB) = 995992 -Test 086 rap_noah_debug PASS +Test 078 rap_lndp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_rrtmgp_debug -Checking test 087 rap_rrtmgp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_flake_debug +Checking test 079 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 590.223694 - 0: The maximum resident set size (KB) = 1008808 + 0: The total amount of wall time = 346.762739 + 0: The maximum resident set size (KB) = 994596 -Test 087 rap_rrtmgp_debug PASS +Test 079 rap_flake_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_lndp_debug -Checking test 088 rap_lndp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_progcld_thompson_debug +Checking test 080 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.981267 - 0: The maximum resident set size (KB) = 911412 + 0: The total amount of wall time = 351.261094 + 0: The maximum resident set size (KB) = 994900 -Test 088 rap_lndp_debug PASS +Test 080 rap_progcld_thompson_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_sfcdiff_debug -Checking test 089 rap_sfcdiff_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_noah_debug +Checking test 081 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.291773 - 0: The maximum resident set size (KB) = 912012 + 0: The total amount of wall time = 342.667677 + 0: The maximum resident set size (KB) = 992868 -Test 089 rap_sfcdiff_debug PASS +Test 081 rap_noah_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_flake_debug -Checking test 090 rap_flake_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_rrtmgp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_rrtmgp_debug +Checking test 082 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.955233 - 0: The maximum resident set size (KB) = 906396 + 0: The total amount of wall time = 586.678171 + 0: The maximum resident set size (KB) = 1118656 -Test 090 rap_flake_debug PASS +Test 082 rap_rrtmgp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_sfcdiff_debug +Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 575.829535 - 0: The maximum resident set size (KB) = 909924 + 0: The total amount of wall time = 348.410083 + 0: The maximum resident set size (KB) = 995448 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 083 rap_sfcdiff_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rap_progcld_thompson_debug -Checking test 092 rap_progcld_thompson_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 084 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.601822 - 0: The maximum resident set size (KB) = 911868 + 0: The total amount of wall time = 584.234948 + 0: The maximum resident set size (KB) = 996892 -Test 092 rap_progcld_thompson_debug PASS +Test 084 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/rrfs_v1beta_debug -Checking test 093 rrfs_v1beta_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/rrfs_v1beta_debug +Checking test 085 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.069769 - 0: The maximum resident set size (KB) = 907796 + 0: The total amount of wall time = 346.970953 + 0: The maximum resident set size (KB) = 997760 -Test 093 rrfs_v1beta_debug PASS +Test 085 rrfs_v1beta_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_wam_debug -Checking test 094 control_wam_debug results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_wam_debug +Checking test 086 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 369.887405 - 0: The maximum resident set size (KB) = 266460 + 0: The total amount of wall time = 364.408711 + 0: The maximum resident set size (KB) = 255716 -Test 094 control_wam_debug PASS +Test 086 control_wam_debug PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_atm -Checking test 095 hafs_regional_atm results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_atm +Checking test 087 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1093.301168 - 0: The maximum resident set size (KB) = 794340 + 0: The total amount of wall time = 1174.198229 + 0: The maximum resident set size (KB) = 711652 -Test 095 hafs_regional_atm PASS +Test 087 hafs_regional_atm PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_atm_thompson_gfdlsf -Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_atm_thompson_gfdlsf +Checking test 088 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1184.776663 - 0: The maximum resident set size (KB) = 1153896 + 0: The total amount of wall time = 1314.354966 + 0: The maximum resident set size (KB) = 1069456 -Test 096 hafs_regional_atm_thompson_gfdlsf PASS +Test 088 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_atm_ocn -Checking test 097 hafs_regional_atm_ocn results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_atm_ocn +Checking test 089 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2760,29 +2397,29 @@ Checking test 097 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 446.691364 - 0: The maximum resident set size (KB) = 815332 + 0: The total amount of wall time = 466.793815 + 0: The maximum resident set size (KB) = 749808 -Test 097 hafs_regional_atm_ocn PASS +Test 089 hafs_regional_atm_ocn PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_atm_wav -Checking test 098 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_atm_wav +Checking test 090 hafs_regional_atm_wav results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 926.469524 - 0: The maximum resident set size (KB) = 817564 + 0: The total amount of wall time = 1150.423708 + 0: The maximum resident set size (KB) = 738480 -Test 098 hafs_regional_atm_wav PASS +Test 090 hafs_regional_atm_wav PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_atm_ocn_wav -Checking test 099 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_atm_ocn_wav +Checking test 091 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2790,136 +2427,149 @@ Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1010.396403 - 0: The maximum resident set size (KB) = 819288 + 0: The total amount of wall time = 1259.973835 + 0: The maximum resident set size (KB) = 758872 -Test 099 hafs_regional_atm_ocn_wav PASS +Test 091 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_docn -Checking test 100 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_docn +Checking test 092 hafs_regional_docn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 446.996116 - 0: The maximum resident set size (KB) = 825104 + 0: The total amount of wall time = 457.511536 + 0: The maximum resident set size (KB) = 763232 -Test 100 hafs_regional_docn PASS +Test 092 hafs_regional_docn PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_docn_oisst -Checking test 101 hafs_regional_docn_oisst results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_docn_oisst +Checking test 093 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 434.399067 - 0: The maximum resident set size (KB) = 820600 + 0: The total amount of wall time = 462.436149 + 0: The maximum resident set size (KB) = 742860 -Test 101 hafs_regional_docn_oisst PASS +Test 093 hafs_regional_docn_oisst PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/hafs_regional_datm_cdeps -Checking test 102 hafs_regional_datm_cdeps results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/hafs_regional_datm_cdeps +Checking test 094 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1219.556149 - 0: The maximum resident set size (KB) = 856436 + 0: The total amount of wall time = 1247.049091 + 0: The maximum resident set size (KB) = 845356 -Test 102 hafs_regional_datm_cdeps PASS +Test 094 hafs_regional_datm_cdeps PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_control_cfsr -Checking test 103 datm_cdeps_control_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_control_cfsr +Checking test 095 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 194.089465 - 0: The maximum resident set size (KB) = 726004 + 0: The total amount of wall time = 193.883511 + 0: The maximum resident set size (KB) = 727100 -Test 103 datm_cdeps_control_cfsr PASS +Test 095 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_restart_cfsr -Checking test 104 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_restart_cfsr +Checking test 096 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 115.811605 - 0: The maximum resident set size (KB) = 726452 + 0: The total amount of wall time = 121.439849 + 0: The maximum resident set size (KB) = 726248 + +Test 096 datm_cdeps_restart_cfsr PASS -Test 104 datm_cdeps_restart_cfsr PASS +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_control_gefs +Checking test 097 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + + 0: The total amount of wall time = 190.632149 + 0: The maximum resident set size (KB) = 625048 -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_control_gefs -Checking test 105 datm_cdeps_control_gefs results .... +Test 097 datm_cdeps_control_gefs PASS + + +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_iau_gefs +Checking test 098 datm_cdeps_iau_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 = 189.054732 - 0: The maximum resident set size (KB) = 621980 + 0: The total amount of wall time = 192.788287 + 0: The maximum resident set size (KB) = 627576 -Test 105 datm_cdeps_control_gefs PASS +Test 098 datm_cdeps_iau_gefs PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_stochy_gefs -Checking test 106 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_stochy_gefs +Checking test 099 datm_cdeps_stochy_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 = 193.158574 - 0: The maximum resident set size (KB) = 623252 + 0: The total amount of wall time = 192.675823 + 0: The maximum resident set size (KB) = 624364 -Test 106 datm_cdeps_stochy_gefs PASS +Test 099 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_bulk_cfsr -Checking test 107 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_bulk_cfsr +Checking test 100 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 207.086263 - 0: The maximum resident set size (KB) = 727080 + 0: The total amount of wall time = 196.372597 + 0: The maximum resident set size (KB) = 723372 -Test 107 datm_cdeps_bulk_cfsr PASS +Test 100 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_bulk_gefs -Checking test 108 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_bulk_gefs +Checking test 101 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 189.401610 - 0: The maximum resident set size (KB) = 623316 + 0: The total amount of wall time = 190.804951 + 0: The maximum resident set size (KB) = 625916 -Test 108 datm_cdeps_bulk_gefs PASS +Test 101 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_mx025_cfsr -Checking test 109 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_mx025_cfsr +Checking test 102 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2927,15 +2577,15 @@ Checking test 109 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 412.071897 - 0: The maximum resident set size (KB) = 595032 + 0: The total amount of wall time = 466.475331 + 0: The maximum resident set size (KB) = 559204 -Test 109 datm_cdeps_mx025_cfsr PASS +Test 102 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_mx025_gefs -Checking test 110 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_mx025_gefs +Checking test 103 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2943,52 +2593,65 @@ Checking test 110 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 405.066255 - 0: The maximum resident set size (KB) = 564484 + 0: The total amount of wall time = 437.081721 + 0: The maximum resident set size (KB) = 527460 -Test 110 datm_cdeps_mx025_gefs PASS +Test 103 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_multiple_files_cfsr -Checking test 111 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_multiple_files_cfsr +Checking test 104 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 193.696743 - 0: The maximum resident set size (KB) = 724540 + 0: The total amount of wall time = 193.300915 + 0: The maximum resident set size (KB) = 727000 -Test 111 datm_cdeps_multiple_files_cfsr PASS +Test 104 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_3072x1536_cfsr -Checking test 112 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_3072x1536_cfsr +Checking test 105 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 265.744325 - 0: The maximum resident set size (KB) = 1838596 + 0: The total amount of wall time = 281.102104 + 0: The maximum resident set size (KB) = 1835892 + +Test 105 datm_cdeps_3072x1536_cfsr PASS + -Test 112 datm_cdeps_3072x1536_cfsr PASS +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_gfs +Checking test 106 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 268.580324 + 0: The maximum resident set size (KB) = 1837156 + +Test 106 datm_cdeps_gfs PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/datm_cdeps_debug_cfsr -Checking test 113 datm_cdeps_debug_cfsr results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/datm_cdeps_debug_cfsr +Checking test 107 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 579.620498 - 0: The maximum resident set size (KB) = 734332 + 0: The total amount of wall time = 640.179011 + 0: The maximum resident set size (KB) = 735772 -Test 113 datm_cdeps_debug_cfsr PASS +Test 107 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220325/INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_234659/control_atmwav -Checking test 114 control_atmwav results .... +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_atmwav +Checking test 108 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3031,12 +2694,66 @@ Checking test 114 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 110.395186 - 0: The maximum resident set size (KB) = 522236 + 0: The total amount of wall time = 116.658627 + 0: The maximum resident set size (KB) = 489988 + +Test 108 control_atmwav PASS + + +baseline dir = /lfs4/BMC/wrfruc/RT/NEMSfv3gfs/gsl-develop-20220516/INTEL/control_atm_aerosols +working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_175345/control_atm_aerosols +Checking test 109 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 416.528163 + 0: The maximum resident set size (KB) = 917060 -Test 114 control_atmwav PASS +Test 109 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 21 00:25:13 GMT 2022 -Elapsed time: 03h:14m:11s. Have a nice day! +Wed May 18 01:31:26 GMT 2022 +Elapsed time: 01h:33m:16s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 564dc2dbf8..1309336f27 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,23 +1,25 @@ -Thu Feb 24 18:36:43 CST 2022 +Tue May 10 21:01:50 CDT 2022 Start Regression test -Compile 001 elapsed time 523 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 180 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 431 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 411 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 181 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 180 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 159 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 454 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 459 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 196 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 96 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 422 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_control_p8 +Compile 001 elapsed time 605 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 203 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 339 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 215 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 188 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 525 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 553 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 586 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 336 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -78,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 219.156121 - 0: The maximum resident set size (KB) = 646720 + 0: The total amount of wall time = 360.112453 + 0: The maximum resident set size (KB) = 1139264 Test 001 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -138,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 242.879439 - 0: The maximum resident set size (KB) = 696988 + 0: The total amount of wall time = 449.436515 + 0: The maximum resident set size (KB) = 1713636 Test 002 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -198,18 +202,19 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 216.293392 - 0: The maximum resident set size (KB) = 642916 + 0: The total amount of wall time = 358.694551 + 0: The maximum resident set size (KB) = 1129696 Test 003 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -258,81 +263,23 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 187.336787 - 0: The maximum resident set size (KB) = 651852 + 0: The total amount of wall time = 309.180497 + 0: The maximum resident set size (KB) = 1049340 Test 004 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 252.220280 - 0: The maximum resident set size (KB) = 746204 - -Test 005 cpld_control_p7_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK @@ -374,119 +321,15 @@ Checking test 006 cpld_bmark_p7 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 = 890.487720 - 0: The maximum resident set size (KB) = 1473560 - -Test 006 cpld_bmark_p7 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + 0: The total amount of wall time = 1155.271417 + 0: The maximum resident set size (KB) = 2838220 - 0: The total amount of wall time = 880.105265 - 0: The maximum resident set size (KB) = 1472196 +Test 005 cpld_bmark_p8 PASS -Test 007 cpld_bmark_p8 PASS - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - - 0: The total amount of wall time = 890.120899 - 0: The maximum resident set size (KB) = 1494584 - -Test 008 cpld_bmark_mpi_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -511,6 +354,7 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -547,15 +391,15 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 206.362705 - 0: The maximum resident set size (KB) = 630708 + 0: The total amount of wall time = 354.381095 + 0: The maximum resident set size (KB) = 1150512 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -568,6 +412,7 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -604,15 +449,15 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 114.976703 - 0: The maximum resident set size (KB) = 390584 + 0: The total amount of wall time = 210.307403 + 0: The maximum resident set size (KB) = 1110604 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -625,6 +470,7 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -661,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 873.572575 - 0: The maximum resident set size (KB) = 847492 + 0: The total amount of wall time = 1144.165904 + 0: The maximum resident set size (KB) = 1298640 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -682,6 +528,7 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -718,17 +565,18 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 617.362403 - 0: The maximum resident set size (KB) = 918980 + 0: The total amount of wall time = 933.924983 + 0: The maximum resident set size (KB) = 1461264 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -768,17 +616,18 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1015.173130 - 0: The maximum resident set size (KB) = 1442220 + 0: The total amount of wall time = 1285.734906 + 0: The maximum resident set size (KB) = 2828564 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -818,15 +667,15 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 545.024539 - 0: The maximum resident set size (KB) = 1400620 + 0: The total amount of wall time = 710.340404 + 0: The maximum resident set size (KB) = 2806748 -Test 014 cpld_restart_c384_p8 PASS +Test 011 cpld_restart_c384_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -839,6 +688,7 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -875,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 635.461948 - 0: The maximum resident set size (KB) = 692520 + 0: The total amount of wall time = 1084.604331 + 0: The maximum resident set size (KB) = 1269556 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control -Checking test 016 control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -929,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.842043 - 0: The maximum resident set size (KB) = 484196 + 0: The total amount of wall time = 128.371628 + 0: The maximum resident set size (KB) = 468024 -Test 016 control PASS +Test 013 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -979,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.856508 - 0: The maximum resident set size (KB) = 483016 + 0: The total amount of wall time = 143.444291 + 0: The maximum resident set size (KB) = 465808 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.020436 - 0: The maximum resident set size (KB) = 484784 + 0: The total amount of wall time = 127.973972 + 0: The maximum resident set size (KB) = 465776 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1043,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 145.675218 - 0: The maximum resident set size (KB) = 528804 + 0: The total amount of wall time = 155.367036 + 0: The maximum resident set size (KB) = 516040 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_restart -Checking test 020 control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1089,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 65.710976 - 0: The maximum resident set size (KB) = 227128 + 0: The total amount of wall time = 71.893709 + 0: The maximum resident set size (KB) = 210344 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1139,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.335030 - 0: The maximum resident set size (KB) = 482208 + 0: The total amount of wall time = 129.306671 + 0: The maximum resident set size (KB) = 466616 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 116.630464 - 0: The maximum resident set size (KB) = 473972 + 0: The total amount of wall time = 126.659075 + 0: The maximum resident set size (KB) = 467832 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,17 +1041,17 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.214368 - 0: The maximum resident set size (KB) = 481320 + 0: The total amount of wall time = 128.272318 + 0: The maximum resident set size (KB) = 465812 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1209,15 +1059,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.720294 - 0: The maximum resident set size (KB) = 485320 + 0: The total amount of wall time = 133.581351 + 0: The maximum resident set size (KB) = 466996 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 306.725763 -0: The maximum resident set size (KB) = 653172 +0: The total amount of wall time = 326.553068 +0: The maximum resident set size (KB) = 654612 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 485.226572 - 0: The maximum resident set size (KB) = 584680 + 0: The total amount of wall time = 490.798587 + 0: The maximum resident set size (KB) = 566044 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 801.266641 - 0: The maximum resident set size (KB) = 879396 + 0: The total amount of wall time = 673.234538 + 0: The maximum resident set size (KB) = 830508 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 702.391162 - 0: The maximum resident set size (KB) = 1000100 + 0: The total amount of wall time = 596.996503 + 0: The maximum resident set size (KB) = 955980 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.758042 - 0: The maximum resident set size (KB) = 479316 + 0: The total amount of wall time = 89.671075 + 0: The maximum resident set size (KB) = 468848 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 45.492269 - 0: The maximum resident set size (KB) = 263884 + 0: The total amount of wall time = 48.575694 + 0: The maximum resident set size (KB) = 255852 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 74.618855 - 0: The maximum resident set size (KB) = 486204 + 0: The total amount of wall time = 77.288944 + 0: The maximum resident set size (KB) = 468716 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 120.926622 - 0: The maximum resident set size (KB) = 484564 + 0: The total amount of wall time = 130.064004 + 0: The maximum resident set size (KB) = 466200 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 120.044488 - 0: The maximum resident set size (KB) = 484880 + 0: The total amount of wall time = 133.610044 + 0: The maximum resident set size (KB) = 466180 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1339,41 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.205610 - 0: The maximum resident set size (KB) = 509300 + 0: The total amount of wall time = 174.829954 + 0: The maximum resident set size (KB) = 862992 + +Test 031 control_p8 PASS -Test 034 control_p8 PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8_lndp +Checking test 032 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 331.792939 + 0: The maximum resident set size (KB) = 859148 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_restart_p8 -Checking test 035 control_restart_p8 results .... +Test 032 control_p8_lndp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1411,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 76.976663 - 0: The maximum resident set size (KB) = 288904 + 0: The total amount of wall time = 95.304982 + 0: The maximum resident set size (KB) = 606044 -Test 035 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1585,15 +1461,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.746242 - 0: The maximum resident set size (KB) = 507836 + 0: The total amount of wall time = 180.293360 + 0: The maximum resident set size (KB) = 850424 -Test 036 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1635,15 +1511,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.408443 - 0: The maximum resident set size (KB) = 577080 + 0: The total amount of wall time = 198.099094 + 0: The maximum resident set size (KB) = 931796 -Test 037 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1689,15 +1565,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.357510 - 0: The maximum resident set size (KB) = 607484 + 0: The total amount of wall time = 202.557452 + 0: The maximum resident set size (KB) = 975752 -Test 038 control_p7_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_control -Checking test 039 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1707,58 +1583,58 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 325.254610 - 0: The maximum resident set size (KB) = 593704 + 0: The total amount of wall time = 338.909489 + 0: The maximum resident set size (KB) = 587300 -Test 039 regional_control PASS +Test 037 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 171.421215 - 0: The maximum resident set size (KB) = 593768 + 0: The total amount of wall time = 190.447831 + 0: The maximum resident set size (KB) = 585644 -Test 040 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_control_2dwrtdecomp -Checking test 041 regional_control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 300.677333 - 0: The maximum resident set size (KB) = 587868 + 0: The total amount of wall time = 336.902336 + 0: The maximum resident set size (KB) = 580596 -Test 041 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_noquilt +Checking test 040 regional_noquilt 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 = 314.345081 - 0: The maximum resident set size (KB) = 606732 + 0: The total amount of wall time = 339.717079 + 0: The maximum resident set size (KB) = 599996 -Test 042 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1768,63 +1644,101 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 238.718735 - 0: The maximum resident set size (KB) = 612044 + 0: The total amount of wall time = 249.972664 + 0: The maximum resident set size (KB) = 583536 -Test 043 regional_2threads PASS +Test 041 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_hafs -Checking test 044 regional_hafs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 326.805659 - 0: The maximum resident set size (KB) = 593920 + 0: The total amount of wall time = 336.403156 + 0: The maximum resident set size (KB) = 581420 -Test 044 regional_hafs PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 318.813777 - 0: The maximum resident set size (KB) = 591680 + 0: The total amount of wall time = 257.090796 + 0: The maximum resident set size (KB) = 625120 -Test 045 regional_netcdf_parallel PASS +Test 043 regional_3km PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_RRTMGP -Checking test 046 regional_RRTMGP results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_control +Checking test 044 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 = 411.520505 - 0: The maximum resident set size (KB) = 715472 + 0: The total amount of wall time = 450.038643 + 0: The maximum resident set size (KB) = 846724 -Test 046 regional_RRTMGP PASS +Test 044 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_control -Checking test 047 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,15 +1784,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.715963 - 0: The maximum resident set size (KB) = 850916 + 0: The total amount of wall time = 488.643964 + 0: The maximum resident set size (KB) = 962316 -Test 047 rap_control PASS +Test 045 rap_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1888,15 +1802,15 @@ Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 279.381548 - 0: The maximum resident set size (KB) = 1013272 + 0: The total amount of wall time = 314.919147 + 0: The maximum resident set size (KB) = 938140 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1942,15 +1856,15 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 409.777780 - 0: The maximum resident set size (KB) = 912996 + 0: The total amount of wall time = 499.209852 + 0: The maximum resident set size (KB) = 906480 -Test 049 rap_2threads PASS +Test 047 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1988,15 +1902,15 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.962522 - 0: The maximum resident set size (KB) = 604540 + 0: The total amount of wall time = 247.358883 + 0: The maximum resident set size (KB) = 598200 -Test 050 rap_restart PASS +Test 048 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,15 +1956,15 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 366.401652 - 0: The maximum resident set size (KB) = 853452 + 0: The total amount of wall time = 449.924145 + 0: The maximum resident set size (KB) = 842200 -Test 051 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2088,15 +2002,15 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.807765 - 0: The maximum resident set size (KB) = 604328 + 0: The total amount of wall time = 325.864923 + 0: The maximum resident set size (KB) = 593860 -Test 052 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2142,15 +2056,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.892384 - 0: The maximum resident set size (KB) = 846716 + 0: The total amount of wall time = 435.847779 + 0: The maximum resident set size (KB) = 844960 -Test 053 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2196,83 +2110,91 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 364.816905 - 0: The maximum resident set size (KB) = 851092 + 0: The total amount of wall time = 444.193082 + 0: The maximum resident set size (KB) = 841524 -Test 054 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 176.266162 - 0: The maximum resident set size (KB) = 712176 - -Test 055 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 169.427050 - 0: The maximum resident set size (KB) = 718740 + 0: The total amount of wall time = 482.338658 + 0: The maximum resident set size (KB) = 530512 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 053 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_rrtmgp -Checking test 057 control_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.908233 - 0: The maximum resident set size (KB) = 601568 + 0: The total amount of wall time = 464.738569 + 0: The maximum resident set size (KB) = 518976 -Test 057 control_rrtmgp PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_rrtmgp_c192 -Checking test 058 control_rrtmgp_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 506.046540 - 0: The maximum resident set size (KB) = 805852 + 0: The total amount of wall time = 199.258013 + 0: The maximum resident set size (KB) = 673936 -Test 058 control_rrtmgp_c192 PASS +Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_csawmg -Checking test 059 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + + 0: The total amount of wall time = 200.607273 + 0: The maximum resident set size (KB) = 676772 + +Test 056 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmg +Checking test 057 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2282,15 +2204,15 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.007557 - 0: The maximum resident set size (KB) = 544692 + 0: The total amount of wall time = 333.096668 + 0: The maximum resident set size (KB) = 538156 -Test 059 control_csawmg PASS +Test 057 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_csawmgt -Checking test 060 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmgt +Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2300,15 +2222,15 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 310.346845 - 0: The maximum resident set size (KB) = 535788 + 0: The total amount of wall time = 327.372439 + 0: The maximum resident set size (KB) = 537252 -Test 060 control_csawmgt PASS +Test 058 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_flake -Checking test 061 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_flake +Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2318,15 +2240,15 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.933827 - 0: The maximum resident set size (KB) = 554664 + 0: The total amount of wall time = 236.250088 + 0: The maximum resident set size (KB) = 537516 -Test 061 control_flake PASS +Test 059 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_ras -Checking test 062 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_ras +Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2336,15 +2258,15 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.589166 - 0: The maximum resident set size (KB) = 515336 + 0: The total amount of wall time = 179.379852 + 0: The maximum resident set size (KB) = 496260 -Test 062 control_ras PASS +Test 060 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson -Checking test 063 control_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson +Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2354,15 +2276,15 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 209.506436 - 0: The maximum resident set size (KB) = 866300 + 0: The total amount of wall time = 237.525011 + 0: The maximum resident set size (KB) = 855656 -Test 063 control_thompson PASS +Test 061 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson_no_aero -Checking test 064 control_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_no_aero +Checking test 062 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2372,55 +2294,55 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.766042 - 0: The maximum resident set size (KB) = 861080 + 0: The total amount of wall time = 227.511699 + 0: The maximum resident set size (KB) = 848236 -Test 064 control_thompson_no_aero PASS +Test 062 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_wam_repro -Checking test 065 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wam +Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 113.579531 - 0: The maximum resident set size (KB) = 248728 + 0: The total amount of wall time = 110.198119 + 0: The maximum resident set size (KB) = 233700 -Test 065 control_wam PASS +Test 063 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_debug -Checking test 066 control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_debug +Checking test 064 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.075693 - 0: The maximum resident set size (KB) = 545136 + 0: The total amount of wall time = 154.954920 + 0: The maximum resident set size (KB) = 633212 -Test 066 control_debug PASS +Test 064 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_2threads_debug -Checking test 067 control_2threads_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads_debug +Checking test 065 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.012305 - 0: The maximum resident set size (KB) = 591228 + 0: The total amount of wall time = 231.231953 + 0: The maximum resident set size (KB) = 680880 -Test 067 control_2threads_debug PASS +Test 065 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_CubedSphereGrid_debug -Checking test 068 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_CubedSphereGrid_debug +Checking test 066 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2446,429 +2368,416 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 171.418087 - 0: The maximum resident set size (KB) = 543600 + 0: The total amount of wall time = 173.539777 + 0: The maximum resident set size (KB) = 631784 -Test 068 control_CubedSphereGrid_debug PASS +Test 066 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_wrtGauss_netcdf_parallel_debug -Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wrtGauss_netcdf_parallel_debug +Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.733228 - 0: The maximum resident set size (KB) = 544900 - -Test 069 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_stochy_debug -Checking test 070 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 170.078799 - 0: The maximum resident set size (KB) = 546796 + 0: The total amount of wall time = 153.444081 + 0: The maximum resident set size (KB) = 631096 -Test 070 control_stochy_debug PASS +Test 067 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_lndp_debug -Checking test 071 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy_debug +Checking test 068 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.827943 - 0: The maximum resident set size (KB) = 558224 + 0: The total amount of wall time = 176.591707 + 0: The maximum resident set size (KB) = 638312 -Test 071 control_lndp_debug PASS +Test 068 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_rrtmgp_debug -Checking test 072 control_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_lndp_debug +Checking test 069 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.530497 - 0: The maximum resident set size (KB) = 639008 + 0: The total amount of wall time = 157.893091 + 0: The maximum resident set size (KB) = 635068 -Test 072 control_rrtmgp_debug PASS +Test 069 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_csawmg_debug -Checking test 073 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmg_debug +Checking test 070 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.692975 - 0: The maximum resident set size (KB) = 574652 + 0: The total amount of wall time = 238.443906 + 0: The maximum resident set size (KB) = 677896 -Test 073 control_csawmg_debug PASS +Test 070 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_csawmgt_debug -Checking test 074 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmgt_debug +Checking test 071 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.324938 - 0: The maximum resident set size (KB) = 574952 + 0: The total amount of wall time = 240.290950 + 0: The maximum resident set size (KB) = 677960 -Test 074 control_csawmgt_debug PASS +Test 071 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_ras_debug -Checking test 075 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_ras_debug +Checking test 072 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.392769 - 0: The maximum resident set size (KB) = 555864 + 0: The total amount of wall time = 164.717237 + 0: The maximum resident set size (KB) = 639696 -Test 075 control_ras_debug PASS +Test 072 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_diag_debug -Checking test 076 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_diag_debug +Checking test 073 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.631719 - 0: The maximum resident set size (KB) = 604952 + 0: The total amount of wall time = 167.533841 + 0: The maximum resident set size (KB) = 689080 -Test 076 control_diag_debug PASS +Test 073 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_debug_p8 -Checking test 077 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_debug_p8 +Checking test 074 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.527066 - 0: The maximum resident set size (KB) = 571012 + 0: The total amount of wall time = 171.336653 + 0: The maximum resident set size (KB) = 1021364 -Test 077 control_debug_p8 PASS +Test 074 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson_debug -Checking test 078 control_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_debug +Checking test 075 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.996509 - 0: The maximum resident set size (KB) = 907380 + 0: The total amount of wall time = 228.309151 + 0: The maximum resident set size (KB) = 993304 -Test 078 control_thompson_debug PASS +Test 075 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson_no_aero_debug -Checking test 079 control_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_no_aero_debug +Checking test 076 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 171.582177 - 0: The maximum resident set size (KB) = 903108 + 0: The total amount of wall time = 173.842917 + 0: The maximum resident set size (KB) = 991056 -Test 079 control_thompson_no_aero_debug PASS +Test 076 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson_extdiag_debug -Checking test 080 control_thompson_extdiag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_extdiag_debug +Checking test 077 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.170365 - 0: The maximum resident set size (KB) = 935508 + 0: The total amount of wall time = 191.831766 + 0: The maximum resident set size (KB) = 1029948 -Test 080 control_thompson_extdiag_debug PASS +Test 077 control_thompson_extdiag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_thompson_progcld_thompson_debug -Checking test 081 control_thompson_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_progcld_thompson_debug +Checking test 078 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.668909 - 0: The maximum resident set size (KB) = 907116 + 0: The total amount of wall time = 182.433168 + 0: The maximum resident set size (KB) = 997840 -Test 081 control_thompson_progcld_thompson_debug PASS +Test 078 control_thompson_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_debug +Checking test 079 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 247.429192 - 0: The maximum resident set size (KB) = 614748 + 0: The total amount of wall time = 250.881601 + 0: The maximum resident set size (KB) = 605364 -Test 082 regional_debug PASS +Test 079 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_control_debug +Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.221142 - 0: The maximum resident set size (KB) = 910584 + 0: The total amount of wall time = 271.852214 + 0: The maximum resident set size (KB) = 1004572 -Test 083 rap_control_debug PASS +Test 080 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_unified_drag_suite_debug -Checking test 084 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_unified_drag_suite_debug +Checking test 081 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.730322 - 0: The maximum resident set size (KB) = 909732 + 0: The total amount of wall time = 276.983048 + 0: The maximum resident set size (KB) = 1004776 -Test 084 rap_unified_drag_suite_debug PASS +Test 081 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_diag_debug -Checking test 085 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_diag_debug +Checking test 082 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 289.608970 - 0: The maximum resident set size (KB) = 1006260 + 0: The total amount of wall time = 296.137880 + 0: The maximum resident set size (KB) = 1087552 -Test 085 rap_diag_debug PASS +Test 082 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_cires_ugwp_debug -Checking test 086 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_cires_ugwp_debug +Checking test 083 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.674205 - 0: The maximum resident set size (KB) = 916184 + 0: The total amount of wall time = 273.831737 + 0: The maximum resident set size (KB) = 1009468 -Test 086 rap_cires_ugwp_debug PASS +Test 083 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_unified_ugwp_debug -Checking test 087 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_unified_ugwp_debug +Checking test 084 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.679635 - 0: The maximum resident set size (KB) = 913316 + 0: The total amount of wall time = 286.664499 + 0: The maximum resident set size (KB) = 1004820 -Test 087 rap_unified_ugwp_debug PASS +Test 084 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_noah_debug -Checking test 088 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_lndp_debug +Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.703405 - 0: The maximum resident set size (KB) = 904880 + 0: The total amount of wall time = 273.817660 + 0: The maximum resident set size (KB) = 1006836 -Test 088 rap_noah_debug PASS +Test 085 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_flake_debug +Checking test 086 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 462.186083 - 0: The maximum resident set size (KB) = 1011696 + 0: The total amount of wall time = 277.632921 + 0: The maximum resident set size (KB) = 1007912 -Test 089 rap_rrtmgp_debug PASS +Test 086 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_progcld_thompson_debug +Checking test 087 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.763244 - 0: The maximum resident set size (KB) = 908404 + 0: The total amount of wall time = 273.710721 + 0: The maximum resident set size (KB) = 1006076 -Test 090 rap_lndp_debug PASS +Test 087 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_noah_debug +Checking test 088 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.998779 - 0: The maximum resident set size (KB) = 909756 + 0: The total amount of wall time = 275.880506 + 0: The maximum resident set size (KB) = 1001316 -Test 091 rap_sfcdiff_debug PASS +Test 088 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_flake_debug -Checking test 092 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_rrtmgp_debug +Checking test 089 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.849523 - 0: The maximum resident set size (KB) = 908004 + 0: The total amount of wall time = 470.288151 + 0: The maximum resident set size (KB) = 1126348 -Test 092 rap_flake_debug PASS +Test 089 rap_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff_debug +Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 443.149764 - 0: The maximum resident set size (KB) = 907960 + 0: The total amount of wall time = 275.831021 + 0: The maximum resident set size (KB) = 1006640 -Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 090 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.525024 - 0: The maximum resident set size (KB) = 908588 + 0: The total amount of wall time = 461.527798 + 0: The maximum resident set size (KB) = 998464 -Test 094 rap_progcld_thompson_debug PASS +Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1beta_debug +Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.656257 - 0: The maximum resident set size (KB) = 907608 + 0: The total amount of wall time = 288.867847 + 0: The maximum resident set size (KB) = 999148 -Test 095 rrfs_v1beta_debug PASS +Test 092 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wam_debug +Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 287.556546 - 0: The maximum resident set size (KB) = 272784 + 0: The total amount of wall time = 299.984173 + 0: The maximum resident set size (KB) = 259724 -Test 096 control_wam_debug PASS +Test 093 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_atm -Checking test 097 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm +Checking test 094 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 258.756030 - 0: The maximum resident set size (KB) = 846616 + 0: The total amount of wall time = 270.556202 + 0: The maximum resident set size (KB) = 711980 -Test 097 hafs_regional_atm PASS +Test 094 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_atm_thompson_gfdlsf -Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_thompson_gfdlsf +Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 310.632750 - 0: The maximum resident set size (KB) = 1202624 + 0: The total amount of wall time = 369.193039 + 0: The maximum resident set size (KB) = 1074196 -Test 098 hafs_regional_atm_thompson_gfdlsf PASS +Test 095 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_atm_ocn -Checking test 099 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_ocn +Checking test 096 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2876,59 +2785,59 @@ Checking test 099 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 352.983791 - 0: The maximum resident set size (KB) = 886684 + 0: The total amount of wall time = 358.192749 + 0: The maximum resident set size (KB) = 759516 -Test 099 hafs_regional_atm_ocn PASS +Test 096 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_atm_wav -Checking test 100 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_wav +Checking test 097 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 757.675895 - 0: The maximum resident set size (KB) = 886764 + 0: The total amount of wall time = 851.579853 + 0: The maximum resident set size (KB) = 748256 -Test 100 hafs_regional_atm_wav PASS +Test 097 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_atm_ocn_wav -Checking test 101 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_ocn_wav +Checking test 098 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 848.335609 - 0: The maximum resident set size (KB) = 888992 + 0: The total amount of wall time = 935.752512 + 0: The maximum resident set size (KB) = 767192 -Test 101 hafs_regional_atm_ocn_wav PASS +Test 098 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_1nest_atm -Checking test 102 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_1nest_atm +Checking test 099 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 1257.643810 - 0: The maximum resident set size (KB) = 384620 + 0: The total amount of wall time = 435.563979 + 0: The maximum resident set size (KB) = 314312 -Test 102 hafs_regional_1nest_atm PASS +Test 099 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_telescopic_2nests_atm -Checking test 103 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_telescopic_2nests_atm +Checking test 100 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK @@ -2936,29 +2845,29 @@ Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 414.633575 - 0: The maximum resident set size (KB) = 427764 + 0: The total amount of wall time = 462.494053 + 0: The maximum resident set size (KB) = 332768 -Test 103 hafs_regional_telescopic_2nests_atm PASS Tries: 2 +Test 100 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_global_1nest_atm -Checking test 104 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_1nest_atm +Checking test 101 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 183.897837 - 0: The maximum resident set size (KB) = 272672 + 0: The total amount of wall time = 212.072966 + 0: The maximum resident set size (KB) = 207392 -Test 104 hafs_global_1nest_atm PASS +Test 101 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_global_multiple_4nests_atm -Checking test 105 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_multiple_4nests_atm +Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2968,138 +2877,227 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 557.125097 + 0: The maximum resident set size (KB) = 264020 - 0: The total amount of wall time = 524.309223 - 0: The maximum resident set size (KB) = 456996 +Test 102 hafs_global_multiple_4nests_atm PASS -Test 105 hafs_global_multiple_4nests_atm PASS + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_specified_moving_1nest_atm +Checking test 103 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 262.550170 + 0: The maximum resident set size (KB) = 321456 + +Test 103 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_docn -Checking test 106 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm +Checking test 104 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 250.256713 + 0: The maximum resident set size (KB) = 318356 + +Test 104 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm_ocn +Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 258.501133 + 0: The maximum resident set size (KB) = 360436 + +Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + + 0: The total amount of wall time = 743.062835 + 0: The maximum resident set size (KB) = 378148 + +Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_storm_following_1nest_atm +Checking test 107 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 82.705738 + 0: The maximum resident set size (KB) = 223496 + +Test 107 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_docn +Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 335.783870 - 0: The maximum resident set size (KB) = 888900 + 0: The total amount of wall time = 355.504277 + 0: The maximum resident set size (KB) = 778336 -Test 106 hafs_regional_docn PASS +Test 108 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_docn_oisst -Checking test 107 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_docn_oisst +Checking test 109 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 334.848140 - 0: The maximum resident set size (KB) = 888984 + 0: The total amount of wall time = 360.160780 + 0: The maximum resident set size (KB) = 759976 -Test 107 hafs_regional_docn_oisst PASS +Test 109 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/hafs_regional_datm_cdeps -Checking test 108 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_datm_cdeps +Checking test 110 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 923.563594 - 0: The maximum resident set size (KB) = 870608 + 0: The total amount of wall time = 924.620416 + 0: The maximum resident set size (KB) = 854480 -Test 108 hafs_regional_datm_cdeps PASS +Test 110 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_control_cfsr -Checking test 109 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_control_cfsr +Checking test 111 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.586521 - 0: The maximum resident set size (KB) = 736800 + 0: The total amount of wall time = 142.032939 + 0: The maximum resident set size (KB) = 741368 -Test 109 datm_cdeps_control_cfsr PASS +Test 111 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_restart_cfsr -Checking test 110 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_restart_cfsr +Checking test 112 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.223692 - 0: The maximum resident set size (KB) = 718776 + 0: The total amount of wall time = 147.634471 + 0: The maximum resident set size (KB) = 721796 + +Test 112 datm_cdeps_restart_cfsr PASS + -Test 110 datm_cdeps_restart_cfsr PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_control_gefs +Checking test 113 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 0: The total amount of wall time = 139.673196 + 0: The maximum resident set size (KB) = 620100 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_control_gefs -Checking test 111 datm_cdeps_control_gefs results .... +Test 113 datm_cdeps_control_gefs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_iau_gefs +Checking test 114 datm_cdeps_iau_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 = 138.291395 - 0: The maximum resident set size (KB) = 623328 + 0: The total amount of wall time = 138.623284 + 0: The maximum resident set size (KB) = 618952 -Test 111 datm_cdeps_control_gefs PASS +Test 114 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_stochy_gefs -Checking test 112 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_stochy_gefs +Checking test 115 datm_cdeps_stochy_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 = 140.374816 - 0: The maximum resident set size (KB) = 619876 + 0: The total amount of wall time = 142.092186 + 0: The maximum resident set size (KB) = 618824 -Test 112 datm_cdeps_stochy_gefs PASS +Test 115 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_bulk_cfsr -Checking test 113 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_bulk_cfsr +Checking test 116 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.114860 - 0: The maximum resident set size (KB) = 716724 + 0: The total amount of wall time = 141.346370 + 0: The maximum resident set size (KB) = 720356 -Test 113 datm_cdeps_bulk_cfsr PASS +Test 116 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_bulk_gefs -Checking test 114 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_bulk_gefs +Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.919893 - 0: The maximum resident set size (KB) = 623044 + 0: The total amount of wall time = 137.248110 + 0: The maximum resident set size (KB) = 621020 -Test 114 datm_cdeps_bulk_gefs PASS +Test 117 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_mx025_cfsr -Checking test 115 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_mx025_cfsr +Checking test 118 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3107,15 +3105,15 @@ Checking test 115 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 298.616716 - 0: The maximum resident set size (KB) = 633444 + 0: The total amount of wall time = 373.610785 + 0: The maximum resident set size (KB) = 565072 -Test 115 datm_cdeps_mx025_cfsr PASS +Test 118 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_mx025_gefs -Checking test 116 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_mx025_gefs +Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3123,52 +3121,65 @@ Checking test 116 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 296.890073 - 0: The maximum resident set size (KB) = 593700 + 0: The total amount of wall time = 292.157032 + 0: The maximum resident set size (KB) = 531548 -Test 116 datm_cdeps_mx025_gefs PASS +Test 119 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_multiple_files_cfsr -Checking test 117 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_multiple_files_cfsr +Checking test 120 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.484435 - 0: The maximum resident set size (KB) = 721092 + 0: The total amount of wall time = 141.336338 + 0: The maximum resident set size (KB) = 722756 -Test 117 datm_cdeps_multiple_files_cfsr PASS +Test 120 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_3072x1536_cfsr -Checking test 118 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_3072x1536_cfsr +Checking test 121 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 190.886386 - 0: The maximum resident set size (KB) = 1830520 + 0: The total amount of wall time = 188.207654 + 0: The maximum resident set size (KB) = 1894788 + +Test 121 datm_cdeps_3072x1536_cfsr PASS -Test 118 datm_cdeps_3072x1536_cfsr PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_gfs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_gfs +Checking test 122 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 189.519605 + 0: The maximum resident set size (KB) = 1835172 + +Test 122 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/datm_cdeps_debug_cfsr -Checking test 119 datm_cdeps_debug_cfsr results .... + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_debug_cfsr +Checking test 123 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 450.180252 - 0: The maximum resident set size (KB) = 729956 + 0: The total amount of wall time = 451.564065 + 0: The maximum resident set size (KB) = 729084 -Test 119 datm_cdeps_debug_cfsr PASS +Test 123 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_atmwav -Checking test 120 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_atmwav +Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3211,15 +3222,15 @@ Checking test 120 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.638319 - 0: The maximum resident set size (KB) = 567052 + 0: The total amount of wall time = 84.303327 + 0: The maximum resident set size (KB) = 494592 -Test 120 control_atmwav PASS +Test 124 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_176078/control_c384gdas_wav -Checking test 121 control_c384gdas_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384gdas_wav +Checking test 125 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3264,12 +3275,66 @@ Checking test 121 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 676.387456 - 0: The maximum resident set size (KB) = 1224640 + 0: The total amount of wall time = 693.592469 + 0: The maximum resident set size (KB) = 1027636 + +Test 125 control_c384gdas_wav PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atm_aerosols +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_atm_aerosols +Checking test 126 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 289.788701 + 0: The maximum resident set size (KB) = 915420 -Test 121 control_c384gdas_wav PASS +Test 126 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 19:44:53 CST 2022 -Elapsed time: 01h:08m:11s. Have a nice day! +Tue May 10 22:08:18 CDT 2022 +Elapsed time: 01h:06m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index d4caa4b779..d0d3ab4e7b 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,17 +1,19 @@ -Thu Feb 24 20:52:43 UTC 2022 +Mon May 16 14:33:05 UTC 2022 Start Regression test -Compile 001 elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 741 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 787 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 740 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 005 elapsed time 538 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 517 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 483 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 811 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control +Test 006 compile FAIL + +Compile 001 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 541 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 511 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 915 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -58,14 +60,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.608133 -The maximum resident set size (KB) = 422720 +The total amount of wall time = 146.681261 +The maximum resident set size (KB) = 420256 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -108,28 +110,28 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 144.854621 -The maximum resident set size (KB) = 421996 +The total amount of wall time = 149.481345 +The maximum resident set size (KB) = 420676 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_2dwrtdecomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_2dwrtdecomp Checking test 003 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 131.580521 -The maximum resident set size (KB) = 422820 +The total amount of wall time = 138.493654 +The maximum resident set size (KB) = 420660 Test 003 control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_restart Checking test 004 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -168,14 +170,14 @@ Checking test 004 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 76.263082 -The maximum resident set size (KB) = 156856 +The total amount of wall time = 78.751904 +The maximum resident set size (KB) = 156864 Test 004 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_fhzero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_fhzero Checking test 005 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -218,14 +220,14 @@ Checking test 005 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 131.183176 -The maximum resident set size (KB) = 422856 +The total amount of wall time = 136.082222 +The maximum resident set size (KB) = 420272 Test 005 control_fhzero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_CubedSphereGrid Checking test 006 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -252,14 +254,14 @@ Checking test 006 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 133.132860 -The maximum resident set size (KB) = 422904 +The total amount of wall time = 138.592309 +The maximum resident set size (KB) = 420380 Test 006 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_latlon -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_latlon +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_latlon +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_latlon Checking test 007 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -270,14 +272,14 @@ Checking test 007 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.152314 -The maximum resident set size (KB) = 422812 +The total amount of wall time = 142.950353 +The maximum resident set size (KB) = 420316 Test 007 control_latlon PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wrtGauss_netcdf_parallel Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -288,14 +290,14 @@ Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.556653 -The maximum resident set size (KB) = 422880 +The total amount of wall time = 144.553837 +The maximum resident set size (KB) = 420188 Test 008 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c48 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_c48 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c48 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_c48 Checking test 009 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -334,14 +336,14 @@ Checking test 009 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 429.766148 -The maximum resident set size (KB) = 630520 +The total amount of wall time = 453.874702 +The maximum resident set size (KB) = 629292 Test 009 control_c48 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c192 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_c192 Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -352,14 +354,14 @@ Checking test 010 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 532.174859 -The maximum resident set size (KB) = 522684 +The total amount of wall time = 551.507553 +The maximum resident set size (KB) = 521272 Test 010 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy Checking test 011 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -370,28 +372,28 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.141877 -The maximum resident set size (KB) = 426576 +The total amount of wall time = 97.134279 +The maximum resident set size (KB) = 426288 Test 011 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_stochy_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy_restart Checking test 012 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 53.282892 -The maximum resident set size (KB) = 173744 +The total amount of wall time = 56.757127 +The maximum resident set size (KB) = 175364 Test 012 control_stochy_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_lndp Checking test 013 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -402,14 +404,14 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.482063 -The maximum resident set size (KB) = 427244 +The total amount of wall time = 88.803005 +The maximum resident set size (KB) = 424652 Test 013 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_iovr4 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_iovr4 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr4 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_iovr4 Checking test 014 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -424,14 +426,14 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.279724 -The maximum resident set size (KB) = 422672 +The total amount of wall time = 147.707361 +The maximum resident set size (KB) = 420296 Test 014 control_iovr4 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_iovr5 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_iovr5 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr5 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_iovr5 Checking test 015 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -446,14 +448,14 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 139.822716 -The maximum resident set size (KB) = 422680 +The total amount of wall time = 146.858200 +The maximum resident set size (KB) = 420272 Test 015 control_iovr5 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_p8 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8 Checking test 016 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -500,15 +502,41 @@ Checking test 016 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.068871 -The maximum resident set size (KB) = 455724 +The total amount of wall time = 191.481955 +The maximum resident set size (KB) = 812572 Test 016 control_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_restart_p8 -Checking test 017 control_restart_p8 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_lndp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8_lndp +Checking test 017 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +The total amount of wall time = 359.396468 +The maximum resident set size (KB) = 810732 + +Test 017 control_p8_lndp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_restart_p8 +Checking test 018 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -546,15 +574,15 @@ Checking test 017 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.226493 -The maximum resident set size (KB) = 264456 +The total amount of wall time = 107.213394 +The maximum resident set size (KB) = 546156 -Test 017 control_restart_p8 PASS +Test 018 control_restart_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_decomp_p8 -Checking test 018 control_decomp_p8 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_decomp_p8 +Checking test 019 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -596,15 +624,15 @@ Checking test 018 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.636552 -The maximum resident set size (KB) = 448872 +The total amount of wall time = 199.532403 +The maximum resident set size (KB) = 802300 -Test 018 control_decomp_p8 PASS +Test 019 control_decomp_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p7_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_p7_rrtmgp -Checking test 019 control_p7_rrtmgp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_rrtmgp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8_rrtmgp +Checking test 020 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -650,15 +678,15 @@ Checking test 019 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.526782 -The maximum resident set size (KB) = 549800 +The total amount of wall time = 236.859703 +The maximum resident set size (KB) = 923400 -Test 019 control_p7_rrtmgp PASS +Test 020 control_p8_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_control -Checking test 020 regional_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_control +Checking test 021 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -668,105 +696,89 @@ Checking test 020 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 340.152010 -The maximum resident set size (KB) = 531912 +The total amount of wall time = 363.441941 +The maximum resident set size (KB) = 533956 -Test 020 regional_control PASS +Test 021 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_restart -Checking test 021 regional_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_restart +Checking test 022 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 207.540965 -The maximum resident set size (KB) = 526768 +The total amount of wall time = 222.316651 +The maximum resident set size (KB) = 530520 -Test 021 regional_restart PASS +Test 022 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_control_2dwrtdecomp -Checking test 022 regional_control_2dwrtdecomp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_control_2dwrtdecomp +Checking test 023 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 341.861943 -The maximum resident set size (KB) = 531904 +The total amount of wall time = 367.188830 +The maximum resident set size (KB) = 533984 -Test 022 regional_control_2dwrtdecomp PASS +Test 023 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_noquilt -Checking test 023 regional_noquilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_noquilt +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_noquilt +Checking test 024 regional_noquilt 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 = 371.313270 -The maximum resident set size (KB) = 534880 +The total amount of wall time = 397.337825 +The maximum resident set size (KB) = 536628 -Test 023 regional_noquilt PASS +Test 024 regional_noquilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_hafs -Checking test 024 regional_hafs results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - -The total amount of wall time = 336.653411 -The maximum resident set size (KB) = 527412 - -Test 024 regional_hafs PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_netcdf_parallel Checking test 025 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 335.438062 -The maximum resident set size (KB) = 526548 +The total amount of wall time = 362.780547 +The maximum resident set size (KB) = 527596 Test 025 regional_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_RRTMGP -Checking test 026 regional_RRTMGP results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_3km +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_3km +Checking test 026 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 427.974797 -The maximum resident set size (KB) = 654068 +The total amount of wall time = 299.488502 +The maximum resident set size (KB) = 559964 -Test 026 regional_RRTMGP PASS +Test 026 regional_3km PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_control Checking test 027 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -813,15 +825,69 @@ Checking test 027 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 381.670234 -The maximum resident set size (KB) = 789624 +The total amount of wall time = 457.734855 +The maximum resident set size (KB) = 787604 Test 027 rap_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_spp_sppt_shum_skeb -Checking test 028 regional_spp_sppt_shum_skeb results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_rrtmgp +Checking test 028 rap_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +The total amount of wall time = 492.554824 +The maximum resident set size (KB) = 910408 + +Test 028 rap_rrtmgp PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_spp_sppt_shum_skeb +Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -831,15 +897,15 @@ Checking test 028 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 319.888947 -The maximum resident set size (KB) = 853996 +The total amount of wall time = 339.374911 +The maximum resident set size (KB) = 861180 -Test 028 regional_spp_sppt_shum_skeb PASS +Test 029 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_restart -Checking test 029 rap_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_restart +Checking test 030 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -877,15 +943,15 @@ Checking test 029 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.152378 -The maximum resident set size (KB) = 529220 +The total amount of wall time = 239.345341 +The maximum resident set size (KB) = 532276 -Test 029 rap_restart PASS +Test 030 rap_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_sfcdiff -Checking test 030 rap_sfcdiff results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff +Checking test 031 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -931,15 +997,15 @@ Checking test 030 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 379.792644 -The maximum resident set size (KB) = 789600 +The total amount of wall time = 457.192357 +The maximum resident set size (KB) = 787428 -Test 030 rap_sfcdiff PASS +Test 031 rap_sfcdiff PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_sfcdiff_restart -Checking test 031 rap_sfcdiff_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff_restart +Checking test 032 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -977,15 +1043,15 @@ Checking test 031 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 204.904830 -The maximum resident set size (KB) = 529000 +The total amount of wall time = 238.607031 +The maximum resident set size (KB) = 532792 -Test 031 rap_sfcdiff_restart PASS +Test 032 rap_sfcdiff_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hrrr_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hrrr_control -Checking test 032 hrrr_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hrrr_control +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hrrr_control +Checking test 033 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1031,15 +1097,15 @@ Checking test 032 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 368.644909 -The maximum resident set size (KB) = 787372 +The total amount of wall time = 436.063652 +The maximum resident set size (KB) = 784612 -Test 032 hrrr_control PASS +Test 033 hrrr_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rrfs_v1beta -Checking test 033 rrfs_v1beta results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1beta +Checking test 034 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1085,31 +1151,59 @@ Checking test 033 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 374.924916 -The maximum resident set size (KB) = 787548 +The total amount of wall time = 444.055763 +The maximum resident set size (KB) = 784380 -Test 033 rrfs_v1beta PASS +Test 034 rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rrfs_conus13km_hrrr_warm -Checking test 034 rrfs_conus13km_hrrr_warm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1nssl +Checking test 035 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.469414 -The maximum resident set size (KB) = 597944 +The total amount of wall time = 500.237605 +The maximum resident set size (KB) = 474132 -Test 034 rrfs_conus13km_hrrr_warm PASS +Test 035 rrfs_v1nssl PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rrfs_conus13km_radar_tten_warm -Checking test 035 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1nssl_nohailnoccn +Checking test 036 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 486.460714 +The maximum resident set size (KB) = 469356 + +Test 036 rrfs_v1nssl_nohailnoccn PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_conus13km_hrrr_warm +Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1117,51 +1211,47 @@ Checking test 035 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 247.878483 -The maximum resident set size (KB) = 599972 +The total amount of wall time = 264.794685 +The maximum resident set size (KB) = 600572 -Test 035 rrfs_conus13km_radar_tten_warm PASS +Test 037 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_rrtmgp -Checking test 036 control_rrtmgp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_conus13km_radar_tten_warm +Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 214.306399 -The maximum resident set size (KB) = 548692 +The total amount of wall time = 267.502458 +The maximum resident set size (KB) = 602532 -Test 036 control_rrtmgp PASS +Test 038 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_rrtmgp_c192 -Checking test 037 control_rrtmgp_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_smoke_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_smoke_conus13km_hrrr_warm +Checking test 039 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -The total amount of wall time = 586.578636 -The maximum resident set size (KB) = 760672 +The total amount of wall time = 273.050335 +The maximum resident set size (KB) = 614860 -Test 037 control_rrtmgp_c192 PASS +Test 039 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_csawmg -Checking test 038 control_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmg +Checking test 040 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1171,15 +1261,15 @@ Checking test 038 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.785856 -The maximum resident set size (KB) = 490572 +The total amount of wall time = 360.656291 +The maximum resident set size (KB) = 488084 -Test 038 control_csawmg PASS +Test 040 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_csawmgt -Checking test 039 control_csawmgt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmgt +Checking test 041 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1189,15 +1279,15 @@ Checking test 039 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.062084 -The maximum resident set size (KB) = 491060 +The total amount of wall time = 357.941135 +The maximum resident set size (KB) = 488144 -Test 039 control_csawmgt PASS +Test 041 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_flake -Checking test 040 control_flake results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_flake +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_flake +Checking test 042 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1207,15 +1297,15 @@ Checking test 040 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 229.624876 -The maximum resident set size (KB) = 492020 +The total amount of wall time = 233.356116 +The maximum resident set size (KB) = 492964 -Test 040 control_flake PASS +Test 042 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_ras -Checking test 041 control_ras results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_ras +Checking test 043 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1225,41 +1315,41 @@ Checking test 041 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 187.835116 -The maximum resident set size (KB) = 456344 +The total amount of wall time = 192.996704 +The maximum resident set size (KB) = 455688 -Test 041 control_ras PASS +Test 043 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wam_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_wam_repro -Checking test 042 control_wam results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wam +Checking test 044 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.781700 -The maximum resident set size (KB) = 167860 +The total amount of wall time = 113.497439 +The maximum resident set size (KB) = 169236 -Test 042 control_wam PASS +Test 044 control_wam PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_debug -Checking test 043 control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_debug +Checking test 045 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.188453 -The maximum resident set size (KB) = 489004 +The total amount of wall time = 147.363535 +The maximum resident set size (KB) = 583780 -Test 043 control_debug PASS +Test 045 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_CubedSphereGrid_debug -Checking test 044 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_CubedSphereGrid_debug +Checking test 046 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1285,516 +1375,589 @@ Checking test 044 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.371120 -The maximum resident set size (KB) = 489244 - -Test 044 control_CubedSphereGrid_debug PASS +The total amount of wall time = 153.937654 +The maximum resident set size (KB) = 584508 +Test 046 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_wrtGauss_netcdf_parallel_debug -Checking test 045 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 147.282503 -The maximum resident set size (KB) = 488912 -Test 045 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_stochy_debug -Checking test 046 control_stochy_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wrtGauss_netcdf_parallel_debug +Checking test 047 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 167.452675 -The maximum resident set size (KB) = 494308 +The total amount of wall time = 145.709885 +The maximum resident set size (KB) = 583792 -Test 046 control_stochy_debug PASS +Test 047 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_lndp_debug -Checking test 047 control_lndp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy_debug +Checking test 048 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.434736 -The maximum resident set size (KB) = 494240 +The total amount of wall time = 165.133661 +The maximum resident set size (KB) = 589172 -Test 047 control_lndp_debug PASS +Test 048 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_rrtmgp_debug -Checking test 048 control_rrtmgp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_lndp_debug +Checking test 049 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.602347 -The maximum resident set size (KB) = 594820 +The total amount of wall time = 149.551801 +The maximum resident set size (KB) = 589296 -Test 048 control_rrtmgp_debug PASS +Test 049 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_csawmg_debug -Checking test 049 control_csawmg_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmg_debug +Checking test 050 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 230.521714 -The maximum resident set size (KB) = 531268 +The total amount of wall time = 237.993285 +The maximum resident set size (KB) = 628060 -Test 049 control_csawmg_debug PASS +Test 050 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_csawmgt_debug -Checking test 050 control_csawmgt_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmgt_debug +Checking test 051 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 226.622986 -The maximum resident set size (KB) = 531092 +The total amount of wall time = 230.567835 +The maximum resident set size (KB) = 628012 -Test 050 control_csawmgt_debug PASS +Test 051 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_ras_debug -Checking test 051 control_ras_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_ras_debug +Checking test 052 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.804391 -The maximum resident set size (KB) = 502004 +The total amount of wall time = 150.073789 +The maximum resident set size (KB) = 598112 -Test 051 control_ras_debug PASS +Test 052 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_diag_debug -Checking test 052 control_diag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_diag_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_diag_debug +Checking test 053 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 153.166505 -The maximum resident set size (KB) = 546512 +The total amount of wall time = 155.818787 +The maximum resident set size (KB) = 643188 -Test 052 control_diag_debug PASS +Test 053 control_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_debug_p8 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_debug_p8 -Checking test 053 control_debug_p8 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug_p8 +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_debug_p8 +Checking test 054 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.992142 -The maximum resident set size (KB) = 515160 +The total amount of wall time = 164.190438 +The maximum resident set size (KB) = 972592 -Test 053 control_debug_p8 PASS +Test 054 control_debug_p8 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_thompson_debug -Checking test 054 control_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_debug +Checking test 055 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 173.243343 -The maximum resident set size (KB) = 850608 +The total amount of wall time = 175.753784 +The maximum resident set size (KB) = 943836 -Test 054 control_thompson_debug PASS +Test 055 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_thompson_no_aero_debug -Checking test 055 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_no_aero_debug +Checking test 056 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.267520 -The maximum resident set size (KB) = 844592 +The total amount of wall time = 165.077399 +The maximum resident set size (KB) = 941476 -Test 055 control_thompson_no_aero_debug PASS +Test 056 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_thompson_extdiag_debug -Checking test 056 control_thompson_extdiag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_extdiag_debug +Checking test 057 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.174184 -The maximum resident set size (KB) = 878636 +The total amount of wall time = 182.424154 +The maximum resident set size (KB) = 973916 -Test 056 control_thompson_extdiag_debug PASS +Test 057 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_thompson_progcld_thompson_debug -Checking test 057 control_thompson_progcld_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_progcld_thompson_debug +Checking test 058 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 172.728796 -The maximum resident set size (KB) = 850652 +The total amount of wall time = 176.567668 +The maximum resident set size (KB) = 946212 -Test 057 control_thompson_progcld_thompson_debug PASS +Test 058 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/regional_debug -Checking test 058 regional_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_debug +Checking test 059 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 248.694231 -The maximum resident set size (KB) = 553540 - -Test 058 regional_debug PASS - +The total amount of wall time = 250.629397 +The maximum resident set size (KB) = 554212 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_control_debug -Checking test 059 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 266.872414 -The maximum resident set size (KB) = 857304 +Test 059 regional_debug PASS -Test 059 rap_control_debug PASS - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_unified_drag_suite_debug -Checking test 060 rap_unified_drag_suite_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_noah_debug +Checking test 068 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.960651 -The maximum resident set size (KB) = 857064 +The total amount of wall time = 267.860660 +The maximum resident set size (KB) = 949628 -Test 060 rap_unified_drag_suite_debug PASS +Test 068 rap_noah_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_diag_debug -Checking test 061 rap_diag_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_rrtmgp_debug +Checking test 069 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 283.521020 -The maximum resident set size (KB) = 939220 +The total amount of wall time = 450.363214 +The maximum resident set size (KB) = 1073028 -Test 061 rap_diag_debug PASS +Test 069 rap_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_cires_ugwp_debug -Checking test 062 rap_cires_ugwp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff_debug +Checking test 070 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.146017 -The maximum resident set size (KB) = 857944 +The total amount of wall time = 272.453398 +The maximum resident set size (KB) = 950556 -Test 062 rap_cires_ugwp_debug PASS +Test 070 rap_sfcdiff_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_unified_ugwp_debug -Checking test 063 rap_unified_ugwp_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 071 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.299915 -The maximum resident set size (KB) = 857148 +The total amount of wall time = 441.073283 +The maximum resident set size (KB) = 952716 -Test 063 rap_unified_ugwp_debug PASS +Test 071 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_noah_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_noah_debug -Checking test 064 rap_noah_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1beta_debug +Checking test 072 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.042386 -The maximum resident set size (KB) = 855744 +The total amount of wall time = 268.369492 +The maximum resident set size (KB) = 951204 -Test 064 rap_noah_debug PASS +Test 072 rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_rrtmgp_debug -Checking test 065 rap_rrtmgp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wam_debug +Checking test 073 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -The total amount of wall time = 446.745452 -The maximum resident set size (KB) = 963656 +The total amount of wall time = 273.936041 +The maximum resident set size (KB) = 199164 -Test 065 rap_rrtmgp_debug PASS +Test 073 control_wam_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_lndp_debug -Checking test 066 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm +Checking test 074 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 266.455901 -The maximum resident set size (KB) = 857824 +The total amount of wall time = 359.375542 +The maximum resident set size (KB) = 647100 -Test 066 rap_lndp_debug PASS +Test 074 hafs_regional_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_sfcdiff_debug -Checking test 067 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_thompson_gfdlsf +Checking test 075 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK -The total amount of wall time = 265.925222 -The maximum resident set size (KB) = 857216 +The total amount of wall time = 405.088402 +The maximum resident set size (KB) = 1003100 -Test 067 rap_sfcdiff_debug PASS +Test 075 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_flake_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_flake_debug -Checking test 068 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_ocn +Checking test 076 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 265.236555 -The maximum resident set size (KB) = 857364 +The total amount of wall time = 535.227469 +The maximum resident set size (KB) = 667476 -Test 068 rap_flake_debug PASS +Test 076 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 069 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_wav +Checking test 077 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK -The total amount of wall time = 435.251565 -The maximum resident set size (KB) = 855644 +The total amount of wall time = 961.469426 +The maximum resident set size (KB) = 664264 -Test 069 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 077 hafs_regional_atm_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rap_progcld_thompson_debug -Checking test 070 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_ocn_wav +Checking test 078 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK -The total amount of wall time = 265.560574 -The maximum resident set size (KB) = 857356 +The total amount of wall time = 1025.748935 +The maximum resident set size (KB) = 680720 -Test 070 rap_progcld_thompson_debug PASS +Test 078 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/rrfs_v1beta_debug -Checking test 071 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_1nest_atm +Checking test 079 hafs_regional_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 264.474764 -The maximum resident set size (KB) = 854672 +The total amount of wall time = 383.125094 +The maximum resident set size (KB) = 247412 -Test 071 rrfs_v1beta_debug PASS +Test 079 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wam_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/control_wam_debug -Checking test 072 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_telescopic_2nests_atm +Checking test 080 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 271.506195 -The maximum resident set size (KB) = 197928 +The total amount of wall time = 402.680659 +The maximum resident set size (KB) = 246492 -Test 072 control_wam_debug PASS +Test 080 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_atm -Checking test 073 hafs_regional_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_global_1nest_atm +Checking test 081 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 332.511151 -The maximum resident set size (KB) = 643072 +The total amount of wall time = 173.724067 +The maximum resident set size (KB) = 147972 -Test 073 hafs_regional_atm PASS +Test 081 hafs_global_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_atm_thompson_gfdlsf -Checking test 074 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_specified_moving_1nest_atm +Checking test 082 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 379.506250 -The maximum resident set size (KB) = 994648 +The total amount of wall time = 241.177106 +The maximum resident set size (KB) = 251796 -Test 074 hafs_regional_atm_thompson_gfdlsf PASS +Test 082 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_atm_ocn -Checking test 075 hafs_regional_atm_ocn results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm +Checking test 083 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 507.847713 -The maximum resident set size (KB) = 642636 +The total amount of wall time = 230.008788 +The maximum resident set size (KB) = 252608 -Test 075 hafs_regional_atm_ocn PASS +Test 083 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_atm_wav -Checking test 076 hafs_regional_atm_wav results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm_ocn +Checking test 084 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 911.737837 -The maximum resident set size (KB) = 643176 +The total amount of wall time = 271.099264 +The maximum resident set size (KB) = 278416 -Test 076 hafs_regional_atm_wav PASS +Test 084 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_atm_ocn_wav -Checking test 077 hafs_regional_atm_ocn_wav results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 085 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1025.247719 -The maximum resident set size (KB) = 644464 +The total amount of wall time = 562.354410 +The maximum resident set size (KB) = 295024 -Test 077 hafs_regional_atm_ocn_wav PASS +Test 085 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_1nest_atm -Checking test 078 hafs_regional_1nest_atm results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_global_storm_following_1nest_atm +Checking test 086 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 358.787502 -The maximum resident set size (KB) = 244908 +The total amount of wall time = 69.592574 +The maximum resident set size (KB) = 166256 -Test 078 hafs_regional_1nest_atm PASS +Test 086 hafs_global_storm_following_1nest_atm PASS +FAILED TESTS: +Test compile_006 failed in run_compile failed -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_regional_telescopic_2nests_atm -Checking test 079 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +REGRESSION TEST FAILED +Mon May 16 15:11:59 UTC 2022 +Elapsed time: 00h:38m:55s. Have a nice day! +Mon May 16 15:26:24 UTC 2022 +Start Regression test -The total amount of wall time = 376.468858 -The maximum resident set size (KB) = 246304 +Compile 001 elapsed time 499 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Test 079 hafs_regional_telescopic_2nests_atm PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_control_debug +Checking test 001 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK +The total amount of wall time = 271.979815 +The maximum resident set size (KB) = 951276 -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_24627/hafs_global_1nest_atm -Checking test 080 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK +Test 001 rap_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_unified_drag_suite_debug +Checking test 002 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 271.947180 +The maximum resident set size (KB) = 951116 + +Test 002 rap_unified_drag_suite_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_diag_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_diag_debug +Checking test 003 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 288.536332 +The maximum resident set size (KB) = 1036820 + +Test 003 rap_diag_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_cires_ugwp_debug +Checking test 004 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 276.780137 +The maximum resident set size (KB) = 956496 + +Test 004 rap_cires_ugwp_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_unified_ugwp_debug +Checking test 005 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 278.894796 +The maximum resident set size (KB) = 951252 + +Test 005 rap_unified_ugwp_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_lndp_debug +Checking test 006 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 274.369991 +The maximum resident set size (KB) = 952012 + +Test 006 rap_lndp_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_flake_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_flake_debug +Checking test 007 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 272.851284 +The maximum resident set size (KB) = 951168 + +Test 007 rap_flake_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_progcld_thompson_debug +Checking test 008 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -The total amount of wall time = 162.286436 -The maximum resident set size (KB) = 149824 +The total amount of wall time = 270.295896 +The maximum resident set size (KB) = 951176 -Test 080 hafs_global_1nest_atm PASS +Test 008 rap_progcld_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 21:31:56 UTC 2022 -Elapsed time: 00h:39m:14s. Have a nice day! +Mon May 16 15:43:14 UTC 2022 +Elapsed time: 00h:16m:51s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index f8cd0422f5..c547260be5 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,23 +1,25 @@ -Thu Feb 24 22:05:38 UTC 2022 +Mon May 16 16:25:10 UTC 2022 Start Regression test -Compile 001 elapsed time 1994 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 516 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 899 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 517 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 425 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1236 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1261 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 789 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 406 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 951 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_control_p8 +Compile 001 elapsed time 2415 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 582 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1106 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 333 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 363 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 1775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1783 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 785 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 311 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1489 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 1024 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -78,18 +80,19 @@ Checking test 001 cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 246.730003 -[0] The maximum resident set size (KB) = 556176 +[0] The total amount of wall time = 390.151183 +[0] The maximum resident set size (KB) = 1155680 Test 001 cpld_control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_2threads_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -138,18 +141,19 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 233.402299 -[0] The maximum resident set size (KB) = 647104 +[0] The total amount of wall time = 422.075124 +[0] The maximum resident set size (KB) = 1573488 Test 002 cpld_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_decomp_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -198,18 +202,19 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 247.751396 -[0] The maximum resident set size (KB) = 558804 +[0] The total amount of wall time = 394.240199 +[0] The maximum resident set size (KB) = 1150280 Test 003 cpld_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_mpi_p8 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -258,185 +263,23 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing 20210323.060000.out_grd.glo_1deg .........OK Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 211.320746 -[0] The maximum resident set size (KB) = 543220 +[0] The total amount of wall time = 328.559013 +[0] The maximum resident set size (KB) = 1048260 Test 004 cpld_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 291.143941 -[0] The maximum resident set size (KB) = 658908 - -Test 005 cpld_control_p7_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1033.321400 -[0] The maximum resident set size (KB) = 1272528 - -Test 006 cpld_bmark_p7 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1040.069713 -[0] The maximum resident set size (KB) = 1275676 - -Test 007 cpld_bmark_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_bmark_p8 +Checking test 005 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing 20130401.060000.out_grd.gwes_30m .........OK Comparing 20130401.060000.out_pnt.points .........OK Comparing RESTART/coupler.res .........OK @@ -478,15 +321,15 @@ Checking test 008 cpld_bmark_mpi_p8 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 = 1017.991120 -[0] The maximum resident set size (KB) = 1283576 +[0] The total amount of wall time = 1160.865924 +[0] The maximum resident set size (KB) = 2831816 -Test 008 cpld_bmark_mpi_p8 PASS +Test 005 cpld_bmark_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c96_p8 +Checking test 006 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -511,6 +354,7 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -547,15 +391,15 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 234.648241 -[0] The maximum resident set size (KB) = 558896 +[0] The total amount of wall time = 385.240007 +[0] The maximum resident set size (KB) = 1153456 -Test 009 cpld_control_c96_p8 PASS +Test 006 cpld_control_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c96_p8 +Checking test 007 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -568,6 +412,7 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -604,15 +449,15 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 127.965456 -[0] The maximum resident set size (KB) = 344896 +[0] The total amount of wall time = 211.913686 +[0] The maximum resident set size (KB) = 1115572 -Test 010 cpld_restart_c96_p8 PASS +Test 007 cpld_restart_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c192_p8 +Checking test 008 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -625,6 +470,7 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -661,15 +507,15 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 993.083347 -[0] The maximum resident set size (KB) = 743876 +[0] The total amount of wall time = 1267.525239 +[0] The maximum resident set size (KB) = 1273084 -Test 011 cpld_control_c192_p8 PASS +Test 008 cpld_control_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c192_p8 +Checking test 009 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK Comparing sfcf036.tile3.nc .........OK @@ -682,6 +528,7 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing atmf036.tile4.nc .........OK Comparing atmf036.tile5.nc .........OK Comparing atmf036.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -718,17 +565,18 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 626.902454 -[0] The maximum resident set size (KB) = 830484 +[0] The total amount of wall time = 810.857818 +[0] The maximum resident set size (KB) = 1481816 -Test 012 cpld_restart_c192_p8 PASS +Test 009 cpld_restart_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c384_p8 +Checking test 010 cpld_control_c384_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -768,65 +616,66 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1121.644863 -[0] The maximum resident set size (KB) = 1278516 +[0] The total amount of wall time = 1265.785895 +[0] The maximum resident set size (KB) = 2818500 -Test 013 cpld_control_c384_p8 PASS +Test 010 cpld_control_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c384_p8 +Checking test 011 cpld_restart_c384_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......NOT OK + Comparing atmf006.nc ............ALT CHECK......NOT OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........NOT OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -[0] The total amount of wall time = 600.679838 -[0] The maximum resident set size (KB) = 1238476 - -Test 014 cpld_restart_c384_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/MOM.res.nc ............ALT CHECK......NOT OK + Comparing RESTART/MOM.res_1.nc ............ALT CHECK......NOT OK + Comparing RESTART/MOM.res_2.nc ............ALT CHECK......NOT OK + Comparing RESTART/MOM.res_3.nc ............ALT CHECK......NOT OK + Comparing RESTART/iced.2021-03-22-43200.nc ............ALT CHECK......NOT OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc ............ALT CHECK......NOT OK + +[0] The total amount of wall time = 751.213389 +[0] The maximum resident set size (KB) = 2800108 + +Test 011 cpld_restart_c384_p8 FAIL + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_debug_p8 +Checking test 012 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -839,6 +688,7 @@ Checking test 015 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -875,15 +725,15 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 707.493073 -[0] The maximum resident set size (KB) = 609908 +[0] The total amount of wall time = 1163.782907 +[0] The maximum resident set size (KB) = 1248604 -Test 015 cpld_debug_p8 PASS +Test 012 cpld_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control -Checking test 016 control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control +Checking test 013 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -929,15 +779,15 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 139.699757 -[0] The maximum resident set size (KB) = 471708 +[0] The total amount of wall time = 143.722934 +[0] The maximum resident set size (KB) = 466740 -Test 016 control PASS +Test 013 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_decomp -Checking test 017 control_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_decomp +Checking test 014 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -979,29 +829,29 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 146.046568 -[0] The maximum resident set size (KB) = 471168 +[0] The total amount of wall time = 151.311815 +[0] The maximum resident set size (KB) = 463548 -Test 017 control_decomp PASS +Test 014 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_2dwrtdecomp -Checking test 018 control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2dwrtdecomp +Checking test 015 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 133.372160 -[0] The maximum resident set size (KB) = 468592 +[0] The total amount of wall time = 141.158167 +[0] The maximum resident set size (KB) = 465644 -Test 018 control_2dwrtdecomp PASS +Test 015 control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_2threads -Checking test 019 control_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads +Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1043,15 +893,15 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 129.953438 -[0] The maximum resident set size (KB) = 518888 +[0] The total amount of wall time = 135.332705 +[0] The maximum resident set size (KB) = 515640 -Test 019 control_2threads PASS +Test 016 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_restart -Checking test 020 control_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_restart +Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1089,15 +939,15 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 74.324165 -[0] The maximum resident set size (KB) = 212480 +[0] The total amount of wall time = 76.508294 +[0] The maximum resident set size (KB) = 209460 -Test 020 control_restart PASS +Test 017 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_fhzero -Checking test 021 control_fhzero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_fhzero +Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1139,15 +989,15 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 132.931330 -[0] The maximum resident set size (KB) = 475932 +[0] The total amount of wall time = 135.708745 +[0] The maximum resident set size (KB) = 461480 -Test 021 control_fhzero PASS +Test 018 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_CubedSphereGrid +Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1173,15 +1023,15 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 134.176127 -[0] The maximum resident set size (KB) = 470140 +[0] The total amount of wall time = 138.325612 +[0] The maximum resident set size (KB) = 466320 -Test 022 control_CubedSphereGrid PASS +Test 019 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_latlon -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_latlon +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_latlon +Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1191,33 +1041,33 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 137.352856 -[0] The maximum resident set size (KB) = 475560 +[0] The total amount of wall time = 142.189082 +[0] The maximum resident set size (KB) = 464996 -Test 023 control_latlon PASS +Test 020 control_latlon PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wrtGauss_netcdf_parallel +Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 142.487534 -[0] The maximum resident set size (KB) = 471876 +[0] The total amount of wall time = 149.699769 +[0] The maximum resident set size (KB) = 462312 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c48 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c48 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c48 +Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1255,15 +1105,15 @@ Checking test 025 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 440.852932 -[0] The maximum resident set size (KB) = 660476 +[0] The total amount of wall time = 450.471244 +[0] The maximum resident set size (KB) = 663096 -Test 025 control_c48 PASS +Test 022 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c192 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1273,15 +1123,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 550.483786 -[0] The maximum resident set size (KB) = 576560 +[0] The total amount of wall time = 560.796961 +[0] The maximum resident set size (KB) = 564260 -Test 026 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1291,15 +1141,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1034.248116 -[0] The maximum resident set size (KB) = 861556 +[0] The total amount of wall time = 558.656640 +[0] The maximum resident set size (KB) = 831632 -Test 027 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c384gdas -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384gdas +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1191,15 @@ Checking test 028 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 905.483160 -[0] The maximum resident set size (KB) = 996876 +[0] The total amount of wall time = 545.767475 +[0] The maximum resident set size (KB) = 980712 -Test 028 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1359,29 +1209,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 92.211211 -[0] The maximum resident set size (KB) = 477180 +[0] The total amount of wall time = 97.281702 +[0] The maximum resident set size (KB) = 465220 -Test 029 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 50.526146 -[0] The maximum resident set size (KB) = 274868 +[0] The total amount of wall time = 51.694045 +[0] The maximum resident set size (KB) = 266512 -Test 030 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1241,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 83.647943 -[0] The maximum resident set size (KB) = 477948 +[0] The total amount of wall time = 88.195360 +[0] The maximum resident set size (KB) = 470744 -Test 031 control_lndp PASS +Test 028 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_iovr4 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr4 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1413,15 +1263,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 141.352570 -[0] The maximum resident set size (KB) = 472248 +[0] The total amount of wall time = 148.612476 +[0] The maximum resident set size (KB) = 465144 -Test 032 control_iovr4 PASS +Test 029 control_iovr4 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_iovr5 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr5 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1435,15 +1285,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 140.720845 -[0] The maximum resident set size (KB) = 476512 +[0] The total amount of wall time = 148.378577 +[0] The maximum resident set size (KB) = 462804 -Test 033 control_iovr5 PASS +Test 030 control_iovr5 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1489,15 +1339,41 @@ Checking test 034 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 153.651254 -[0] The maximum resident set size (KB) = 495496 +[0] The total amount of wall time = 184.391435 +[0] The maximum resident set size (KB) = 848916 + +Test 031 control_p8 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_lndp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8_lndp +Checking test 032 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK -Test 034 control_p8 PASS +[0] The total amount of wall time = 361.739464 +[0] The maximum resident set size (KB) = 844864 +Test 032 control_p8_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_restart_p8 -Checking test 035 control_restart_p8 results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1535,15 +1411,15 @@ Checking test 035 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 84.346105 -[0] The maximum resident set size (KB) = 312364 +[0] The total amount of wall time = 100.519968 +[0] The maximum resident set size (KB) = 593236 -Test 035 control_restart_p8 PASS +Test 033 control_restart_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1585,15 +1461,15 @@ Checking test 036 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 160.453369 -[0] The maximum resident set size (KB) = 490668 +[0] The total amount of wall time = 195.793002 +[0] The maximum resident set size (KB) = 838780 -Test 036 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1635,15 +1511,15 @@ Checking test 037 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 144.371571 -[0] The maximum resident set size (KB) = 569720 +[0] The total amount of wall time = 174.826621 +[0] The maximum resident set size (KB) = 926208 -Test 037 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_p7_rrtmgp -Checking test 038 control_p7_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_rrtmgp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1689,15 +1565,15 @@ Checking test 038 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 204.807685 -[0] The maximum resident set size (KB) = 598468 +[0] The total amount of wall time = 227.765695 +[0] The maximum resident set size (KB) = 967124 -Test 038 control_p7_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_control -Checking test 039 regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1707,58 +1583,58 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 346.518711 -[0] The maximum resident set size (KB) = 572516 +[0] The total amount of wall time = 373.949753 +[0] The maximum resident set size (KB) = 579380 -Test 039 regional_control PASS +Test 037 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_restart -Checking test 040 regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 190.966397 -[0] The maximum resident set size (KB) = 575124 +[0] The total amount of wall time = 204.307784 +[0] The maximum resident set size (KB) = 584560 -Test 040 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_control_2dwrtdecomp -Checking test 041 regional_control_2dwrtdecomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 343.292086 -[0] The maximum resident set size (KB) = 571152 +[0] The total amount of wall time = 367.141699 +[0] The maximum resident set size (KB) = 581896 -Test 041 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_noquilt -Checking test 042 regional_noquilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_noquilt +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_noquilt +Checking test 040 regional_noquilt 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 = 369.478441 -[0] The maximum resident set size (KB) = 609528 +[0] The total amount of wall time = 401.395381 +[0] The maximum resident set size (KB) = 611852 -Test 042 regional_noquilt PASS +Test 040 regional_noquilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_2threads -Checking test 043 regional_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1768,63 +1644,47 @@ Checking test 043 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 195.949199 -[0] The maximum resident set size (KB) = 581404 +[0] The total amount of wall time = 222.424577 +[0] The maximum resident set size (KB) = 580596 -Test 043 regional_2threads PASS +Test 041 regional_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_hafs -Checking test 044 regional_hafs results .... - Comparing dynf000.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - -[0] The total amount of wall time = 346.945991 -[0] The maximum resident set size (KB) = 572416 - -Test 044 regional_hafs PASS +[0] The total amount of wall time = 370.005062 +[0] The maximum resident set size (KB) = 577624 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_netcdf_parallel -Checking test 045 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 342.814929 -[0] The maximum resident set size (KB) = 572352 +Test 042 regional_netcdf_parallel PASS -Test 045 regional_netcdf_parallel PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_RRTMGP -Checking test 046 regional_RRTMGP results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_3km +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 452.853068 -[0] The maximum resident set size (KB) = 699460 +[0] The total amount of wall time = 304.016577 +[0] The maximum resident set size (KB) = 607324 -Test 046 regional_RRTMGP PASS +Test 043 regional_3km PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_control -Checking test 047 rap_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1870,33 +1730,15 @@ Checking test 047 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 395.748231 -[0] The maximum resident set size (KB) = 841256 - -Test 047 rap_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_spp_sppt_shum_skeb -Checking test 048 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -[0] The total amount of wall time = 243.406791 -[0] The maximum resident set size (KB) = 937028 +[0] The total amount of wall time = 475.724961 +[0] The maximum resident set size (KB) = 836948 -Test 048 regional_spp_sppt_shum_skeb PASS +Test 044 rap_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_2threads -Checking test 049 rap_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1942,18 +1784,44 @@ Checking test 049 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 371.193337 -[0] The maximum resident set size (KB) = 895004 +[0] The total amount of wall time = 509.026257 +[0] The maximum resident set size (KB) = 953824 + +Test 045 rap_rrtmgp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/regional_spp_sppt_shum_skeb +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +[0] The total amount of wall time = 259.103573 +[0] The maximum resident set size (KB) = 936416 -Test 049 rap_2threads PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_restart -Checking test 050 rap_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_2threads +Checking test 047 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1988,26 +1856,18 @@ Checking test 050 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 202.430929 -[0] The maximum resident set size (KB) = 589964 +[0] The total amount of wall time = 438.023787 +[0] The maximum resident set size (KB) = 904300 -Test 050 rap_restart PASS +Test 047 rap_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_sfcdiff -Checking test 051 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -2042,18 +1902,26 @@ Checking test 051 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 393.845055 -[0] The maximum resident set size (KB) = 843012 +[0] The total amount of wall time = 239.376367 +[0] The maximum resident set size (KB) = 590828 -Test 051 rap_sfcdiff PASS +Test 048 rap_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_sfcdiff_restart -Checking test 052 rap_sfcdiff_restart results .... - Comparing sfcf024.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -2088,15 +1956,61 @@ Checking test 052 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 201.136199 -[0] The maximum resident set size (KB) = 587744 +[0] The total amount of wall time = 466.296721 +[0] The maximum resident set size (KB) = 834208 -Test 052 rap_sfcdiff_restart PASS +Test 049 rap_sfcdiff PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hrrr_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hrrr_control -Checking test 053 hrrr_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........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 = 237.264499 +[0] The maximum resident set size (KB) = 589892 + +Test 050 rap_sfcdiff_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hrrr_control +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2142,15 +2056,15 @@ Checking test 053 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 380.625425 -[0] The maximum resident set size (KB) = 841432 +[0] The total amount of wall time = 448.913444 +[0] The maximum resident set size (KB) = 836564 -Test 053 hrrr_control PASS +Test 051 hrrr_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rrfs_v1beta -Checking test 054 rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2196,14 +2110,58 @@ Checking test 054 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 392.376854 -[0] The maximum resident set size (KB) = 840992 +[0] The total amount of wall time = 457.108872 +[0] The maximum resident set size (KB) = 833828 + +Test 052 rrfs_v1beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 527.105681 +[0] The maximum resident set size (KB) = 525512 + +Test 053 rrfs_v1nssl PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 510.163023 +[0] The maximum resident set size (KB) = 512000 -Test 054 rrfs_v1beta PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rrfs_conus13km_hrrr_warm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_conus13km_hrrr_warm Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2212,14 +2170,14 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 179.005589 -[0] The maximum resident set size (KB) = 664052 +[0] The total amount of wall time = 202.692022 +[0] The maximum resident set size (KB) = 665252 Test 055 rrfs_conus13km_hrrr_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rrfs_conus13km_radar_tten_warm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_conus13km_radar_tten_warm Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2228,51 +2186,31 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 181.998327 -[0] The maximum resident set size (KB) = 665124 +[0] The total amount of wall time = 199.421197 +[0] The maximum resident set size (KB) = 667100 Test 056 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_rrtmgp -Checking test 057 control_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_smoke_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 224.128315 -[0] The maximum resident set size (KB) = 587824 - -Test 057 control_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_rrtmgp_c192 -Checking test 058 control_rrtmgp_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -[0] The total amount of wall time = 610.064026 -[0] The maximum resident set size (KB) = 800928 +[0] The total amount of wall time = 215.891908 +[0] The maximum resident set size (KB) = 683180 -Test 058 control_rrtmgp_c192 PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_csawmg -Checking test 059 control_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2282,15 +2220,15 @@ Checking test 059 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 364.930127 -[0] The maximum resident set size (KB) = 531392 +[0] The total amount of wall time = 376.037103 +[0] The maximum resident set size (KB) = 526332 -Test 059 control_csawmg PASS +Test 058 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_csawmgt -Checking test 060 control_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2300,15 +2238,15 @@ Checking test 060 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 360.922732 -[0] The maximum resident set size (KB) = 528048 +[0] The total amount of wall time = 378.991950 +[0] The maximum resident set size (KB) = 523332 -Test 060 control_csawmgt PASS +Test 059 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_flake -Checking test 061 control_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_flake +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2318,15 +2256,15 @@ Checking test 061 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 246.117938 -[0] The maximum resident set size (KB) = 542516 +[0] The total amount of wall time = 256.446359 +[0] The maximum resident set size (KB) = 533108 -Test 061 control_flake PASS +Test 060 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_ras -Checking test 062 control_ras results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2336,15 +2274,15 @@ Checking test 062 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 190.932272 -[0] The maximum resident set size (KB) = 499236 +[0] The total amount of wall time = 201.467690 +[0] The maximum resident set size (KB) = 492024 -Test 062 control_ras PASS +Test 061 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson -Checking test 063 control_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2354,15 +2292,15 @@ Checking test 063 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 243.344555 -[0] The maximum resident set size (KB) = 853504 +[0] The total amount of wall time = 269.261897 +[0] The maximum resident set size (KB) = 851096 -Test 063 control_thompson PASS +Test 062 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson_no_aero -Checking test 064 control_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2372,55 +2310,55 @@ Checking test 064 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 230.829920 -[0] The maximum resident set size (KB) = 850692 +[0] The total amount of wall time = 257.316454 +[0] The maximum resident set size (KB) = 842220 -Test 064 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wam_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_wam_repro -Checking test 065 control_wam results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 127.385764 -[0] The maximum resident set size (KB) = 235140 +[0] The total amount of wall time = 121.192482 +[0] The maximum resident set size (KB) = 235916 -Test 065 control_wam PASS +Test 064 control_wam PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_debug -Checking test 066 control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.171717 -[0] The maximum resident set size (KB) = 537616 +[0] The total amount of wall time = 167.382023 +[0] The maximum resident set size (KB) = 629364 -Test 066 control_debug PASS +Test 065 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_2threads_debug -Checking test 067 control_2threads_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 155.119073 -[0] The maximum resident set size (KB) = 579952 +[0] The total amount of wall time = 156.346000 +[0] The maximum resident set size (KB) = 679876 -Test 067 control_2threads_debug PASS +Test 066 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_CubedSphereGrid_debug -Checking test 068 control_CubedSphereGrid_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2446,429 +2384,416 @@ Checking test 068 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 182.412618 -[0] The maximum resident set size (KB) = 538828 +[0] The total amount of wall time = 181.769806 +[0] The maximum resident set size (KB) = 627188 -Test 068 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_wrtGauss_netcdf_parallel_debug -Checking test 069 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK - -[0] The total amount of wall time = 170.415966 -[0] The maximum resident set size (KB) = 539452 - -Test 069 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_stochy_debug -Checking test 070 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 193.151759 -[0] The maximum resident set size (KB) = 547812 +[0] The total amount of wall time = 170.884364 +[0] The maximum resident set size (KB) = 630460 -Test 070 control_stochy_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_lndp_debug -Checking test 071 control_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 173.775778 -[0] The maximum resident set size (KB) = 547148 +[0] The total amount of wall time = 191.551266 +[0] The maximum resident set size (KB) = 639260 -Test 071 control_lndp_debug PASS +Test 069 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_rrtmgp_debug -Checking test 072 control_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 186.869852 -[0] The maximum resident set size (KB) = 639744 +[0] The total amount of wall time = 171.663709 +[0] The maximum resident set size (KB) = 636168 -Test 072 control_rrtmgp_debug PASS +Test 070 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_csawmg_debug -Checking test 073 control_csawmg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 271.830364 -[0] The maximum resident set size (KB) = 573700 +[0] The total amount of wall time = 268.597343 +[0] The maximum resident set size (KB) = 669308 -Test 073 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_csawmgt_debug -Checking test 074 control_csawmgt_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 267.356466 -[0] The maximum resident set size (KB) = 573308 +[0] The total amount of wall time = 264.714649 +[0] The maximum resident set size (KB) = 668700 -Test 074 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_ras_debug -Checking test 075 control_ras_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 174.996286 -[0] The maximum resident set size (KB) = 556296 +[0] The total amount of wall time = 173.558018 +[0] The maximum resident set size (KB) = 640364 -Test 075 control_ras_debug PASS +Test 073 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_diag_debug -Checking test 076 control_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_diag_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 178.752580 -[0] The maximum resident set size (KB) = 598132 +[0] The total amount of wall time = 177.532587 +[0] The maximum resident set size (KB) = 687936 -Test 076 control_diag_debug PASS +Test 074 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_debug_p8 -Checking test 077 control_debug_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 184.723780 -[0] The maximum resident set size (KB) = 556536 +[0] The total amount of wall time = 190.340358 +[0] The maximum resident set size (KB) = 1015572 -Test 077 control_debug_p8 PASS +Test 075 control_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson_debug -Checking test 078 control_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_debug +Checking test 076 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 197.319556 -[0] The maximum resident set size (KB) = 899212 +[0] The total amount of wall time = 197.763015 +[0] The maximum resident set size (KB) = 992132 -Test 078 control_thompson_debug PASS +Test 076 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson_no_aero_debug -Checking test 079 control_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.628384 -[0] The maximum resident set size (KB) = 896052 +[0] The total amount of wall time = 190.529027 +[0] The maximum resident set size (KB) = 986964 -Test 079 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson_extdiag_debug -Checking test 080 control_thompson_extdiag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 208.531874 -[0] The maximum resident set size (KB) = 929160 +[0] The total amount of wall time = 207.609092 +[0] The maximum resident set size (KB) = 1020880 -Test 080 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_thompson_progcld_thompson_debug -Checking test 081 control_thompson_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 197.833796 -[0] The maximum resident set size (KB) = 899448 +[0] The total amount of wall time = 198.214893 +[0] The maximum resident set size (KB) = 991544 -Test 081 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -[0] The total amount of wall time = 284.262145 -[0] The maximum resident set size (KB) = 599584 +[0] The total amount of wall time = 282.161493 +[0] The maximum resident set size (KB) = 606980 -Test 082 regional_debug PASS +Test 080 regional_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.393840 -[0] The maximum resident set size (KB) = 906500 +[0] The total amount of wall time = 307.384805 +[0] The maximum resident set size (KB) = 1000628 -Test 083 rap_control_debug PASS +Test 081 rap_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_unified_drag_suite_debug -Checking test 084 rap_unified_drag_suite_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 306.639002 -[0] The maximum resident set size (KB) = 907288 +[0] The total amount of wall time = 306.103403 +[0] The maximum resident set size (KB) = 998668 -Test 084 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_diag_debug -Checking test 085 rap_diag_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 322.253396 -[0] The maximum resident set size (KB) = 990824 +[0] The total amount of wall time = 322.597260 +[0] The maximum resident set size (KB) = 1085708 -Test 085 rap_diag_debug PASS +Test 083 rap_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_cires_ugwp_debug -Checking test 086 rap_cires_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 312.484961 -[0] The maximum resident set size (KB) = 905292 +[0] The total amount of wall time = 312.128680 +[0] The maximum resident set size (KB) = 999412 -Test 086 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_unified_ugwp_debug -Checking test 087 rap_unified_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 313.085864 -[0] The maximum resident set size (KB) = 907660 +[0] The total amount of wall time = 312.612618 +[0] The maximum resident set size (KB) = 1000104 -Test 087 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_noah_debug -Checking test 088 rap_noah_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 302.515212 -[0] The maximum resident set size (KB) = 904052 +[0] The total amount of wall time = 308.999000 +[0] The maximum resident set size (KB) = 996280 -Test 088 rap_noah_debug PASS +Test 086 rap_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 521.096947 -[0] The maximum resident set size (KB) = 1003728 +[0] The total amount of wall time = 306.439001 +[0] The maximum resident set size (KB) = 997544 -Test 089 rap_rrtmgp_debug PASS +Test 087 rap_flake_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_lndp_debug -Checking test 090 rap_lndp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 308.554718 -[0] The maximum resident set size (KB) = 908836 +[0] The total amount of wall time = 306.983541 +[0] The maximum resident set size (KB) = 998180 -Test 090 rap_lndp_debug PASS +Test 088 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 306.451436 -[0] The maximum resident set size (KB) = 905760 +[0] The total amount of wall time = 303.074070 +[0] The maximum resident set size (KB) = 999648 -Test 091 rap_sfcdiff_debug PASS +Test 089 rap_noah_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_flake_debug -Checking test 092 rap_flake_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 306.448385 -[0] The maximum resident set size (KB) = 906448 +[0] The total amount of wall time = 519.809710 +[0] The maximum resident set size (KB) = 1108608 -Test 092 rap_flake_debug PASS +Test 090 rap_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 093 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 508.746234 -[0] The maximum resident set size (KB) = 904172 +[0] The total amount of wall time = 307.570405 +[0] The maximum resident set size (KB) = 998528 -Test 093 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 091 rap_sfcdiff_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rap_progcld_thompson_debug -Checking test 094 rap_progcld_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 306.485985 -[0] The maximum resident set size (KB) = 903452 +[0] The total amount of wall time = 509.705861 +[0] The maximum resident set size (KB) = 998660 -Test 094 rap_progcld_thompson_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.456242 -[0] The maximum resident set size (KB) = 907132 +[0] The total amount of wall time = 304.896584 +[0] The maximum resident set size (KB) = 992840 -Test 095 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_wam_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam_debug +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -[0] The total amount of wall time = 325.225193 -[0] The maximum resident set size (KB) = 258812 +[0] The total amount of wall time = 320.667254 +[0] The maximum resident set size (KB) = 255840 -Test 096 control_wam_debug PASS +Test 094 control_wam_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_atm -Checking test 097 hafs_regional_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK + Comparing HURPRS.GrbF06 .........OK -[0] The total amount of wall time = 636.372532 -[0] The maximum resident set size (KB) = 733056 +[0] The total amount of wall time = 235.153391 +[0] The maximum resident set size (KB) = 714104 -Test 097 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_atm_thompson_gfdlsf -Checking test 098 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 276.037526 -[0] The maximum resident set size (KB) = 1079944 +[0] The total amount of wall time = 327.904577 +[0] The maximum resident set size (KB) = 1074728 -Test 098 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_atm_ocn -Checking test 099 hafs_regional_atm_ocn results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2876,29 +2801,29 @@ Checking test 099 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 392.162199 -[0] The maximum resident set size (KB) = 740660 +[0] The total amount of wall time = 380.775288 +[0] The maximum resident set size (KB) = 747504 -Test 099 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_atm_wav -Checking test 100 hafs_regional_atm_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 821.724660 -[0] The maximum resident set size (KB) = 741764 +[0] The total amount of wall time = 923.500195 +[0] The maximum resident set size (KB) = 743712 -Test 100 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_atm_ocn_wav -Checking test 101 hafs_regional_atm_ocn_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2906,29 +2831,29 @@ Checking test 101 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 898.934104 -[0] The maximum resident set size (KB) = 742944 +[0] The total amount of wall time = 1039.403309 +[0] The maximum resident set size (KB) = 762720 -Test 101 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_1nest_atm -Checking test 102 hafs_regional_1nest_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_1nest_atm +Checking test 100 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 660.401593 -[0] The maximum resident set size (KB) = 315916 +[0] The total amount of wall time = 410.703305 +[0] The maximum resident set size (KB) = 320988 -Test 102 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_telescopic_2nests_atm -Checking test 103 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc ............ALT CHECK......OK @@ -2936,30 +2861,30 @@ Checking test 103 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 795.279725 -[0] The maximum resident set size (KB) = 330232 +[0] The total amount of wall time = 412.512321 +[0] The maximum resident set size (KB) = 322684 -Test 103 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_global_1nest_atm -Checking test 104 hafs_global_1nest_atm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_1nest_atm +Checking test 102 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK Comparing sfc.nest02.f006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 662.470821 -[0] The maximum resident set size (KB) = 222804 +[0] The total amount of wall time = 188.992965 +[0] The maximum resident set size (KB) = 207112 -Test 104 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_global_multiple_4nests_atm -Checking test 105 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK @@ -2968,138 +2893,227 @@ Checking test 105 hafs_global_multiple_4nests_atm results .... Comparing sfc.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK + +[0] The total amount of wall time = 563.730362 +[0] The maximum resident set size (KB) = 280512 + +Test 103 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_specified_moving_1nest_atm +Checking test 104 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 246.191873 +[0] The maximum resident set size (KB) = 320676 + +Test 104 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm +Checking test 105 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 232.797147 +[0] The maximum resident set size (KB) = 322272 + +Test 105 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + +[0] The total amount of wall time = 263.830167 +[0] The maximum resident set size (KB) = 348572 -[0] The total amount of wall time = 1325.849782 -[0] The maximum resident set size (KB) = 298420 +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS -Test 105 hafs_global_multiple_4nests_atm PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + +[0] The total amount of wall time = 692.381439 +[0] The maximum resident set size (KB) = 368264 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_docn -Checking test 106 hafs_regional_docn results .... +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_storm_following_1nest_atm +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_storm_following_1nest_atm +Checking test 108 hafs_global_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 79.488946 +[0] The maximum resident set size (KB) = 226456 + +Test 108 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_docn +Checking test 109 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 375.656862 -[0] The maximum resident set size (KB) = 738684 +[0] The total amount of wall time = 377.650970 +[0] The maximum resident set size (KB) = 764868 -Test 106 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_docn_oisst -Checking test 107 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_docn_oisst +Checking test 110 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 373.549983 -[0] The maximum resident set size (KB) = 745828 +[0] The total amount of wall time = 381.480261 +[0] The maximum resident set size (KB) = 741436 -Test 107 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/hafs_regional_datm_cdeps -Checking test 108 hafs_regional_datm_cdeps results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_datm_cdeps +Checking test 111 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -[0] The total amount of wall time = 1086.006704 -[0] The maximum resident set size (KB) = 896144 +[0] The total amount of wall time = 1090.864405 +[0] The maximum resident set size (KB) = 890960 -Test 108 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_control_cfsr -Checking test 109 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_control_cfsr +Checking test 112 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 179.556508 -[0] The maximum resident set size (KB) = 722344 +[0] The total amount of wall time = 173.348697 +[0] The maximum resident set size (KB) = 723296 -Test 109 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_restart_cfsr -Checking test 110 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_restart_cfsr +Checking test 113 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 119.696109 -[0] The maximum resident set size (KB) = 720976 +[0] The total amount of wall time = 118.853746 +[0] The maximum resident set size (KB) = 724340 + +Test 113 datm_cdeps_restart_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -Test 110 datm_cdeps_restart_cfsr PASS +[0] The total amount of wall time = 167.529842 +[0] The maximum resident set size (KB) = 625736 +Test 114 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_control_gefs -Checking test 111 datm_cdeps_control_gefs results .... + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_iau_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 171.760015 -[0] The maximum resident set size (KB) = 625964 +[0] The total amount of wall time = 170.193903 +[0] The maximum resident set size (KB) = 624868 -Test 111 datm_cdeps_control_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_stochy_gefs -Checking test 112 datm_cdeps_stochy_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.146258 -[0] The maximum resident set size (KB) = 623156 +[0] The total amount of wall time = 168.937948 +[0] The maximum resident set size (KB) = 626400 -Test 112 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_bulk_cfsr -Checking test 113 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_bulk_cfsr +Checking test 117 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 176.533270 -[0] The maximum resident set size (KB) = 719552 +[0] The total amount of wall time = 172.944407 +[0] The maximum resident set size (KB) = 723872 -Test 113 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_bulk_gefs -Checking test 114 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.501938 -[0] The maximum resident set size (KB) = 625396 +[0] The total amount of wall time = 169.199078 +[0] The maximum resident set size (KB) = 625824 -Test 114 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_mx025_cfsr -Checking test 115 datm_cdeps_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_mx025_cfsr +Checking test 119 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3107,15 +3121,15 @@ Checking test 115 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 345.058105 -[0] The maximum resident set size (KB) = 563320 +[0] The total amount of wall time = 353.301759 +[0] The maximum resident set size (KB) = 555504 -Test 115 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_mx025_gefs -Checking test 116 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_mx025_gefs +Checking test 120 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -3123,52 +3137,65 @@ Checking test 116 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 342.950039 -[0] The maximum resident set size (KB) = 537732 +[0] The total amount of wall time = 349.309551 +[0] The maximum resident set size (KB) = 521420 -Test 116 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_multiple_files_cfsr -Checking test 117 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_multiple_files_cfsr +Checking test 121 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 174.110604 -[0] The maximum resident set size (KB) = 722612 +[0] The total amount of wall time = 172.875828 +[0] The maximum resident set size (KB) = 722168 -Test 117 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_3072x1536_cfsr -Checking test 118 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_3072x1536_cfsr +Checking test 122 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 252.945669 -[0] The maximum resident set size (KB) = 1833068 +[0] The total amount of wall time = 250.148030 +[0] The maximum resident set size (KB) = 1835772 + +Test 122 datm_cdeps_3072x1536_cfsr PASS -Test 118 datm_cdeps_3072x1536_cfsr PASS + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_gfs +Checking test 123 datm_cdeps_gfs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK + +[0] The total amount of wall time = 250.752858 +[0] The maximum resident set size (KB) = 1900896 + +Test 123 datm_cdeps_gfs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/datm_cdeps_debug_cfsr -Checking test 119 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_debug_cfsr +Checking test 124 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 504.006672 -[0] The maximum resident set size (KB) = 730124 +[0] The total amount of wall time = 500.263915 +[0] The maximum resident set size (KB) = 731728 -Test 119 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_atmwav -Checking test 120 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_atmwav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3211,15 +3238,15 @@ Checking test 120 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 92.212998 -[0] The maximum resident set size (KB) = 490380 +[0] The total amount of wall time = 93.290461 +[0] The maximum resident set size (KB) = 477300 -Test 120 control_atmwav PASS +Test 125 control_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220224/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_39634/control_c384gdas_wav -Checking test 121 control_c384gdas_wav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384gdas_wav +Checking test 126 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3264,12 +3291,179 @@ Checking test 121 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 612.153583 -[0] The maximum resident set size (KB) = 1047092 +[0] The total amount of wall time = 619.516154 +[0] The maximum resident set size (KB) = 991156 + +Test 126 control_c384gdas_wav PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_atm_aerosols +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_atm_aerosols +Checking test 127 control_atm_aerosols results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK + Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 328.244650 +[0] The maximum resident set size (KB) = 875596 + +Test 127 control_atm_aerosols PASS + +FAILED TESTS: +Test cpld_restart_c384_p8 011 failed in check_result failed +Test cpld_restart_c384_p8 011 failed in run_test failed + +REGRESSION TEST FAILED +Mon May 16 18:32:44 UTC 2022 +Elapsed time: 02h:07m:36s. Have a nice day! +Mon May 16 18:34:36 UTC 2022 +Start Regression test + +Compile 001 elapsed time 2364 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_5299/cpld_control_c384_p8 +Checking test 001 cpld_control_c384_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2021-03-22-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK + +[0] The total amount of wall time = 1393.019400 +[0] The maximum resident set size (KB) = 2822844 + +Test 001 cpld_control_c384_p8 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_5299/cpld_restart_c384_p8 +Checking test 002 cpld_restart_c384_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2021-03-22-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK + +[0] The total amount of wall time = 709.497194 +[0] The maximum resident set size (KB) = 2794596 -Test 121 control_c384gdas_wav PASS +Test 002 cpld_restart_c384_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Feb 24 23:53:06 UTC 2022 -Elapsed time: 01h:47m:31s. Have a nice day! +Mon May 16 20:07:55 UTC 2022 +Elapsed time: 01h:33m:21s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 7ee24a4c6f..4e0fa5463f 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1.8b +From noaaemc/ubuntu-hpc:v1.10b ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index b843f8baf1..9c9804cf1d 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -75,13 +75,13 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then docker volume rm -f DataVolume >/dev/null && - docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20211203 + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20220414 docker create -u builder -e "CI_TEST=true" -e "USER=builder" \ -e "RT_MACHINE=linux.gnu" -e "RT_COMPILER=gnu" \ -w "/home/builder/ufs-weather-model/tests" \ -v DataVolume:/home/builder/data/NEMSfv3gfs \ - --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.8b \ + --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.10b \ /bin/bash -c "./opnReqTest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE diff --git a/tests/ci/ci.test b/tests/ci/ci.test index ac4bb63e08..2fea94f8fc 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -2,5 +2,5 @@ control thr mpi dcp rst bit dbg regional_control thr dcp -cpld_control_c96_p8 +cpld_control_c96_noaero_p8 rst dbg diff --git a/tests/compare_ncfile.py b/tests/compare_ncfile.py index e5b5ad4f01..4051bcc781 100755 --- a/tests/compare_ncfile.py +++ b/tests/compare_ncfile.py @@ -10,6 +10,8 @@ sys.exit(2) for varname in nc1.variables.keys(): + if varname == "time_iso": + continue # First check if each variable has the same dimension if np.shape(nc1[varname][:])!=np.shape(nc2[varname][:]): print(varname,"dimension is different") diff --git a/tests/compile.sh b/tests/compile.sh index 201c943a97..e8e851e712 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -47,7 +47,7 @@ BUILD_DIR=$(pwd)/build_${BUILD_NAME} if [[ $MACHINE_ID == cheyenne.* ]] ; then BUILD_JOBS=${BUILD_JOBS:-3} elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then - BUILD_JOBS=${BUILD_JOBS:-4} + BUILD_JOBS=${BUILD_JOBS:-2} source $PATHTR/tests/module-setup.sh fi @@ -91,8 +91,6 @@ CMAKE_FLAGS+=" -DMPI=ON" if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Debug" -elif [[ "${MAKE_OPT}" == *"-DREPRO=ON"* ]]; then - CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Bitforbit" else CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Release" if [[ "${MACHINE_ID}" == "jet.intel" ]]; then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index e30a7ba2a7..9e6afab458 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,379 +7,406 @@ # ############################################################################### -if [[ $MACHINE_ID = wcoss_cray ]]; then - - TASKS_dflt=150 ; TPN_dflt=24 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=12 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=928 ; TPN_c768=12 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=24 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=24 ; INPES_strnest=2 ; JNPES_strnest=4 - -elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - - TASKS_dflt=150 ; TPN_dflt=28 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=14 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=928 ; TPN_c768=14 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=28 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=28 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=196; TPN_cpl_atmw=28; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 195" - - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=14; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - - TASKS_cpl_c96=192; TPN_cpl_c96=28; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=196; TPN_cpl_dflt=28; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 177"; WPB_cpl_dflt="178 195" - NPROC_ICE_cpl_dflt=8 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=14; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=196; TPN_cpl_dcmp=28; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 177"; WPB_cpl_dcmp="178 195" - NPROC_ICE_cpl_dcmp=8 +THRD=1 - TASKS_cpl_mpi=280; TPN_cpl_mpi=28; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 +if [[ $MACHINE_ID = wcoss_cray ]]; then - TASKS_cpl_c384=480; TPN_cpl_c384=28; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 + TPN=24 - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=28; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=28; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=28; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=28 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" +elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - TASKS_cdeps_025=208; TPN_cdeps_025=28 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=28 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=196; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=46 + + TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=196; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=8 + WAV_tasks_cpl_dflt=18 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=196; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=8 + WAV_tasks_cpl_dcmp=18 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=480; THRD_cpl_c384=2 + INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=120 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=120 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=80 + + TASKS_cpl_c192=384; THRD_cpl_c192=1 + INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=60 + ICE_tasks_cpl_c192=24 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = wcoss2 ]]; then - TASKS_dflt=150 ; TPN_dflt=128 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=128 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=928 ; TPN_c768=32 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=128 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=128 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=200; TPN_cpl_atmw=128; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 199" - - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=32; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=4; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - - TASKS_cpl_c96=192; TPN_cpl_c96=128; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=128; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=64; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=128; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=128; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=128; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=128; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=128; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=128 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=128 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=128 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=196; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=46 + + TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=196; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=8 + WAV_tasks_cpl_dflt=18 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=196; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=8 + WAV_tasks_cpl_dcmp=18 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=480; THRD_cpl_c384=2 + INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=120 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=120 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=80 + + TASKS_cpl_c192=384; THRD_cpl_c192=1 + INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=60 + ICE_tasks_cpl_c192=24 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = orion.* ]]; then - TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=20 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=928 ; TPN_c768=10 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=200; TPN_cpl_atmw=40; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 199" - - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=20; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - - TASKS_cpl_c96=192; TPN_cpl_c96=40; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=20; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=40; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=40; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=40; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=40 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=40 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=40 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=200; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=50 + + TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=10 + WAV_tasks_cpl_dcmp=20 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=480; THRD_cpl_c384=2 + INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=120 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=120 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=80 + + TASKS_cpl_c192=384; THRD_cpl_c192=1 + INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=60 + ICE_tasks_cpl_c192=24 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = hera.* ]]; then - TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=20 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=6 ; JNPES_c384=8 - TASKS_c768=928 ; TPN_c768=10 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=200; TPN_cpl_atmw=40; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 199" - - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=20; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" - - TASKS_cpl_c96=192; TPN_cpl_c96=40; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=20; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=40; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=40; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=40; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=40; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=40; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=40 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=40 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=40 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=200; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=50 + + TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=10 + WAV_tasks_cpl_dcmp=20 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=480; THRD_cpl_c384=2 + INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=120 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=120 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=80 + + TASKS_cpl_c192=288; THRD_cpl_c192=1 + INPES_cpl_c192=4; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=60 + ICE_tasks_cpl_c192=24 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = linux.* ]]; then - TASKS_dflt=150 ; TPN_dflt=40 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=20 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_c96=192; TPN_cpl_c96=40; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=40; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=40; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - -elif [[ $MACHINE_ID = jet.* ]]; then - - TASKS_dflt=150 ; TPN_dflt=24 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=12 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=480 ; TPN_c384=12 ; INPES_c384=6 ; JNPES_c384=12 - TASKS_c768=928 ; TPN_c768=6 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=192; TPN_cpl_atmw=24; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 191" - - TASKS_cpl_atmw_gdas=552; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 551" - - TASKS_cpl_c96=192; TPN_cpl_c96=24; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=24; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=12; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=24; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=24; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 + TPN=40 - TASKS_cpl_c384=480; TPN_cpl_c384=24; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=24; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=24; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 + TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 - TASKS_cpl_c192=288; TPN_cpl_c192=24; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 - TASKS_cdeps_100=40; TPN_cdeps_100=24 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" +elif [[ $MACHINE_ID = jet.* ]]; then - TASKS_cdeps_025=208; TPN_cdeps_025=24 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=24 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=480 ; INPES_c384=6 ; JNPES_c384=12 ; THRD_c384=1 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=192; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=42 + + TASKS_cpl_atmw_gdas=552; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=240 + + TASKS_cpl_c96=240; THRD_cpl_c96=1 + INPES_cpl_c96=4; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=10 + WAV_tasks_cpl_dcmp=20 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=1324; THRD_cpl_c384=2 + INPES_cpl_c384=12; JNPES_cpl_c384=16; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=100 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=1808; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=16; JNPES_cpl_bmrk_aero=16; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=100 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=100 + + TASKS_cpl_c192=1324; THRD_cpl_c192=2 + INPES_cpl_c192=12; JNPES_cpl_c192=16; WPG_cpl_c192=24 + OCN_tasks_cpl_c192=100 + ICE_tasks_cpl_c192=48 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = s4.* ]]; then + echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" + exit 1 + TASKS_dflt=150 ; TPN_dflt=32 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=78 ; TPN_thrd=16 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_c384=336 ; TPN_c384=16 ; INPES_c384=6 ; JNPES_c384=8 @@ -395,39 +422,44 @@ elif [[ $MACHINE_ID = s4.* ]]; then TASKS_cpl_c96=192; TPN_cpl_c96=32; INPES_cpl_c96=3; JNPES_cpl_c96=8 THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" + CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" NPROC_ICE_cpl_c96=12 TASKS_cpl_dflt=200; TPN_cpl_dflt=32; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" + CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" NPROC_ICE_cpl_dflt=10 TASKS_cpl_thrd=120; TPN_cpl_thrd=16; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" + CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" NPROC_ICE_cpl_thrd=10 TASKS_cpl_dcmp=200; TPN_cpl_dcmp=32; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" + CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" NPROC_ICE_cpl_dcmp=10 TASKS_cpl_mpi=280; TPN_cpl_mpi=32; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" + CHM_cpl_mpi="232 251"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" NPROC_ICE_cpl_mpi=20 - TASKS_cpl_c384=480; TPN_cpl_c384=32; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" + TASKS_cpl_c384=480; TPN_cpl_c384=16; INPES_cpl_c384=6; JNPES_cpl_c384=8 + THRD_cpl_c384=2; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" + CHM_cpl_c384="0 287"; OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" NPROC_ICE_cpl_c384=48 TASKS_cpl_bmrk=560; TPN_cpl_bmrk=32; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" + CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" NPROC_ICE_cpl_bmrk=48 + TASKS_cpl_bmrk_aero=560; TPN_cpl_bmrk_aero=16; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 + THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" + CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479"; WPB_cpl_bmrk_aero="480 559" + NPROC_ICE_cpl_bmrk_aero=48 + TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=32; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" @@ -435,7 +467,7 @@ elif [[ $MACHINE_ID = s4.* ]]; then TASKS_cpl_c192=288; TPN_cpl_c192=32; INPES_cpl_c192=4; JNPES_cpl_c192=8 THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=32 @@ -448,142 +480,153 @@ elif [[ $MACHINE_ID = s4.* ]]; then elif [[ $MACHINE_ID = gaea.* ]]; then - TASKS_dflt=150 ; TPN_dflt=36 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=18 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=18 ; INPES_c384=6 ; JNPES_c384=8 - TASKS_c768=928 ; TPN_c768=9 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=180; TPN_cpl_atmw=36; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 179" - - TASKS_cpl_atmw_gdas=576; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=3; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 575" - - TASKS_cpl_c96=192; TPN_cpl_c96=36; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=216; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 181"; WPB_cpl_dflt="182 215" - NPROC_ICE_cpl_dflt=12 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=18; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=36; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=36; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=36; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=36; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=36 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=36 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=36 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=180; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=30 + + TASKS_cpl_atmw_gdas=576; THRD_cpl_atmw_gdas=3 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=264 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=216; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=12 + WAV_tasks_cpl_dflt=34 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=10 + WAV_tasks_cpl_dcmp=20 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=480; THRD_cpl_c384=2 + INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=120 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=576; THRD_cpl_bmrk_aero=2 + INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=120 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=96 + + TASKS_cpl_c192=384; THRD_cpl_c192=1 + INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=60 + ICE_tasks_cpl_c192=24 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = cheyenne.* ]]; then - TASKS_dflt=150 ; TPN_dflt=36 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=18 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=18 ; INPES_c384=8 ; JNPES_c384=6 - TASKS_c768=992 ; TPN_c768=18 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=18 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=18 ; INPES_strnest=2 ; JNPES_strnest=4 - - TASKS_cpl_atmw=180; TPN_cpl_atmw=40; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 179" - - TASKS_cpl_atmw_gdas=576; TPN_cpl_atmw_gdas=12; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=3; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 575" - - TASKS_cpl_c96=192; TPN_cpl_c96=36; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=36; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=18; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=36; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=36; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=36; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=36; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=36; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=36; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=36 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=36 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + TPN=36 + + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 + TASKS_c768=992 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 + + TASKS_cpl_atmw=180; THRD_cpl_atmw=1 + INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 + WAV_tasks_atmw=30 + + TASKS_cpl_atmw_gdas=576; THRD_cpl_atmw_gdas=3 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=264 + + TASKS_cpl_c96=192; THRD_cpl_c96=1 + INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 + OCN_tasks_cpl_c96=30 + ICE_tasks_cpl_c96=12 + + TASKS_cpl_dflt=200; THRD_cpl_dflt=1 + INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + OCN_tasks_cpl_dflt=20 + ICE_tasks_cpl_dflt=10 + WAV_tasks_cpl_dflt=20 + + TASKS_cpl_thrd=120; THRD_cpl_thrd=2 + INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + OCN_tasks_cpl_thrd=20 + ICE_tasks_cpl_thrd=10 + WAV_tasks_cpl_thrd=12 + + TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 + INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + OCN_tasks_cpl_dcmp=20 + ICE_tasks_cpl_dcmp=10 + WAV_tasks_cpl_dcmp=20 + + TASKS_cpl_mpi=280; THRD_cpl_mpi=1 + INPES_cpl_mpi=4; JNPES_cpl_mpi=8; WPG_cpl_mpi=6 + OCN_tasks_cpl_mpi=34 + ICE_tasks_cpl_mpi=20 + WAV_tasks_cpl_mpi=28 + + TASKS_cpl_c384=728; THRD_cpl_c384=3 + INPES_cpl_c384=8; JNPES_cpl_c384=12; WPG_cpl_c384=24 + OCN_tasks_cpl_c384=80 + ICE_tasks_cpl_c384=48 + + TASKS_cpl_bmrk_aero=828; THRD_cpl_bmrk_aero=3 + INPES_cpl_bmrk_aero=8; JNPES_cpl_bmrk_aero=12; WPG_cpl_bmrk_aero=24 + OCN_tasks_cpl_bmrk_aero=80 + ICE_tasks_cpl_bmrk_aero=48 + WAV_tasks_cpl_bmrk_aero=100 + + TASKS_cpl_c192=564; THRD_cpl_c192=2 + INPES_cpl_c192=8; JNPES_cpl_c192=8; WPG_cpl_c192=12 + OCN_tasks_cpl_c192=120 + ICE_tasks_cpl_c192=48 + + TASKS_cdeps_100=40 + ATM_compute_tasks_cdeps_100=12 + OCN_tasks_cdeps_100=16 + ICE_tasks_cdeps_100=12 + + TASKS_cdeps_025=208 + ATM_compute_tasks_cdeps_025=40 + OCN_tasks_cdeps_025=120 + ICE_tasks_cdeps_025=48 elif [[ $MACHINE_ID = stampede.* ]]; then + echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" + exit 1 + TASKS_dflt=150 ; TPN_dflt=48 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=78 ; TPN_thrd=24 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_c384=336 ; TPN_c384=20 ; INPES_c384=8 ; JNPES_c384=6 @@ -598,47 +641,52 @@ elif [[ $MACHINE_ID = stampede.* ]]; then TASKS_cpl_c96=192; TPN_cpl_c96=48; INPES_cpl_c96=3; JNPES_cpl_c96=8 THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" + CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" NPROC_ICE_cpl_c96=12 TASKS_cpl_dflt=200; TPN_cpl_dflt=48; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" + CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" NPROC_ICE_cpl_dflt=10 TASKS_cpl_thrd=120; TPN_cpl_thrd=24; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" + CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" NPROC_ICE_cpl_thrd=10 TASKS_cpl_dcmp=200; TPN_cpl_dcmp=48; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" + CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" NPROC_ICE_cpl_dcmp=10 TASKS_cpl_mpi=280; TPN_cpl_mpi=48; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" + CHM_cpl_mpi="0 191"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" NPROC_ICE_cpl_mpi=20 - TASKS_cpl_c384=480; TPN_cpl_c384=48; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" + TASKS_cpl_c384=480; TPN_cpl_c384=24; INPES_cpl_c384=6; JNPES_cpl_c384=8 + THRD_cpl_c384=2; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" + CHM_cpl_c384="0 287"; OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" NPROC_ICE_cpl_c384=48 TASKS_cpl_bmrk=560; TPN_cpl_bmrk=48; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" + CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" NPROC_ICE_cpl_bmrk=48 + TASKS_cpl_bmrk_aero=560; TPN_cpl_bmrk_aero=24; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 + THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" + CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479"; WPB_cpl_bmrk_aero="480 559" + NPROC_ICE_cpl_bmrk_aero=48 + TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" + CHM_cpl_bmrk_mpi="0 287"; OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" NPROC_ICE_cpl_bmrk_mpi=48 TASKS_cpl_c192=288; TPN_cpl_c192=48; INPES_cpl_c192=4; JNPES_cpl_c192=8 THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" NPROC_ICE_cpl_c192=24 TASKS_cdeps_100=40; TPN_cdeps_100=48 @@ -651,6 +699,9 @@ elif [[ $MACHINE_ID = stampede.* ]]; then elif [[ $MACHINE_ID = expanse.* ]]; then + echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" + exit 1 + TASKS_dflt=150 ; TPN_dflt=64 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=78 ; TPN_thrd=64 ; INPES_thrd=3 ; JNPES_thrd=4 TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 @@ -663,37 +714,42 @@ elif [[ $MACHINE_ID = expanse.* ]]; then TASKS_cpl_c96=192; TPN_cpl_c96=64; INPES_cpl_c96=3; JNPES_cpl_c96=8 THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" + CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" NPROC_ICE_cpl_c96=12 TASKS_cpl_dflt=384; TPN_cpl_dflt=64; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191"; WPB_cpl_dflt="192 383" + CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191"; WPB_cpl_dflt="192 383" NPROC_ICE_cpl_dflt=10 TASKS_cpl_thrd=120; TPN_cpl_thrd=32; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" + CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" NPROC_ICE_cpl_thrd=10 TASKS_cpl_dcmp=200; TPN_cpl_dcmp=64; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" + CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" NPROC_ICE_cpl_dcmp=10 TASKS_cpl_mpi=280; TPN_cpl_mpi=64; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" + CHM_cpl_mpi="0 191"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" NPROC_ICE_cpl_mpi=20 TASKS_cpl_bmrk=480; TPN_cpl_bmrk=64; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" + CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" NPROC_ICE_cpl_bmrk=48 + TASKS_cpl_bmrk_aero=480; TPN_cpl_bmrk_aero=32; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 + THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" + CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479" + NPROC_ICE_cpl_bmrk_aero=48 + TASKS_cpl_wwav=640; TPN_cpl_wwav=64; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 THRD_cpl_wwav=2; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" - OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 639" + CHM_cpl_wwav="0 287"; OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 639" TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" @@ -702,12 +758,12 @@ elif [[ $MACHINE_ID = expanse.* ]]; then TASKS_cpl_c192=288; TPN_cpl_c192=64; INPES_cpl_c192=4; JNPES_cpl_c192=8 THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" + CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" NPROC_ICE_cpl_c192=24 - TASKS_cpl_c384=318; TPN_cpl_c384=64; INPES_cpl_c384=3; JNPES_cpl_c384=8 - THRD_cpl_c384=1; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" - OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" + TASKS_cpl_c384=318; TPN_cpl_c384=32; INPES_cpl_c384=3; JNPES_cpl_c384=8 + THRD_cpl_c384=2; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" + CHM_cpl_c384="0 143"; OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" NPROC_ICE_cpl_c384=48 else @@ -732,14 +788,13 @@ export S2S=false export HAFS=false export DATM_CDEPS=false export DOCN_CDEPS=false -export THRD=1 export POSTAPP='global' export USE_MERRA2=.false. +export NTILES=6 export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt -export TPN=$TPN_dflt export RESTART_INTERVAL=0 export QUILTING=.true. export WRITE_GROUP=1 @@ -758,11 +813,14 @@ export JCHUNK3D=0 export KCHUNK3D=0 export IMO=384 export JMO=190 +export WRITE_NSFLIP=.false. #input file export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_gfsv16 +export DOMAINS_STACK_SIZE=3000000 + # Coldstart/warmstart #rt script for ICs export MODEL_INITIALIZATION=false @@ -803,8 +861,15 @@ export EFFR_IN=.false. export LRADAR=.true. export LTAEROSOL=.true. export EXT_DIAG_THOMPSON=.false. -export sedi_semi=.false. -export decfl=8 +export SEDI_SEMI=.true. +export DECFL=10 +# NSSL MP +export NSSL_CCCN=0.6e9 +export NSSL_ALPHAH=0.0 +export NSSL_ALPHAHL=1.0 +export NSSL_HAIL_ON=.false. +export NSSL_CCN_ON=.true. +export NSSL_INVERTCCN=.true. # Smoke export RRFS_SMOKE=.false. @@ -830,8 +895,15 @@ export CDMBWD_c192='0.23,1.5,1.0,1.0' export CDMBWD_c384='1.1,0.72,1.0,1.0' export CDMBWD_c768='4.0,0.15,1.0,1.0' +#DT_INNER=(Time step)/2 +export DT_INNER_c96=360 +export DT_INNER_c192=300 +export DT_INNER_c384=150 +export DT_INNER_c768=75 + # set default export CDMBWD=${CDMBWD_c96} +export DT_INNER=${DT_INNER_c96} # PBL export SATMEDMF=.false. @@ -843,6 +915,7 @@ export DO_MYNNEDMF=.false. export DO_MYJPBL=.false. export HURR_PBL=.false. export MONINQ_FAC=1.0 +export SFCLAY_COMPUTE_FLUX=.false. # Shallow/deep convection export DO_DEEP=.true. @@ -930,12 +1003,12 @@ export DO_SHUM=.false. export DO_SKEB=.false. export LNDP_TYPE=0 export N_VAR_LNDP=0 -export LNDP_EACH_STEP=.false. export SKEB=-999. export SPPT=-999. export SHUM=-999. -export LNDP_VAR_LIST='XXX' +export LNDP_VAR_LIST="'XXX'" export LNDP_PRT_LIST=-999 +export LNDP_MODEL_TYPE=0 #IAU export IAU_INC_FILES="''" @@ -1001,6 +1074,8 @@ export HAFS=false export DATM_CDEPS=false export DOCN_CDEPS=false +export FV3BMIC='gfs_p8c' + export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -1013,6 +1088,8 @@ export FHMAX=24 export FDIAG=6 export FHZERO=6 +export WRITE_NSFLIP=.true. + # default atm/ocn/ice resolution export ATMRES=C96 export OCNRES=100 @@ -1023,18 +1100,14 @@ export NPZ=127 export NPZP=128 # default resources +export DOMAINS_STACK_SIZE=8000000 + export TASKS=$TASKS_cpl_dflt -export TPN=$TPN_cpl_dflt export INPES=$INPES_cpl_dflt export JNPES=$JNPES_cpl_dflt export THRD=$THRD_cpl_dflt export WRTTASK_PER_GROUP=$WPG_cpl_dflt -export med_petlist_bounds=$MPB_cpl_dflt -export atm_petlist_bounds=$APB_cpl_dflt -export ocn_petlist_bounds=$OPB_cpl_dflt -export ice_petlist_bounds=$IPB_cpl_dflt -export wav_petlist_bounds=$WPB_cpl_dflt # component and coupling timesteps export DT_ATMOS=720 @@ -1046,6 +1119,7 @@ export DT_THERM_MOM6=3600 export NEMS_CONFIGURE=nems.configure.cpld_wave.IN export med_model=cmeps export atm_model=fv3 +export chm_model=gocart export ocn_model=mom6 export ice_model=cice6 export wav_model=ww3 @@ -1065,10 +1139,10 @@ export ATMTILESIZE=`expr $NPX - 1` # FV3 defaults export FRAC_GRID=.true. -export CCPP_SUITE=FV3_GFS_v16_coupled_p8 +export CCPP_SUITE=FV3_GFS_v17_coupled_p8 export INPUT_NML=cpld_control.nml.IN -export FIELD_TABLE=field_table_gfsv16 -export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p7.2_template export DIAG_TABLE_ADDITIONAL='' @@ -1087,14 +1161,18 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 +#export DZ_MIN=2 export PSM_BC=1 export DDDMP=0.1 +#P8 +export DZ_MIN=6 + # P7 Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 @@ -1105,17 +1183,27 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. export DO_GSL_DRAG_LS_BL=.true. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' +#P8 +export CDMBWD=${CDMBWD_c96} + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true +export DOGP_SGS_CNV=.true. + +#P8 UGWD +export DO_UGWP_V0=.true. +export DO_UGWP_V1=.false. +export DO_GSL_DRAG_LS_BL=.false. +export KNOB_UGWP_VERSION=0 # P7 CA export DO_CA=.true. @@ -1145,11 +1233,17 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +#P8 +export FSICL=0 +export FSICS=0 # P8 export USE_CICE_ALB=.true. export MIN_SEAICE=1.0e-6 +export DNATS=2 +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. # P7 default mushy thermo export KTHERM=2 @@ -1191,7 +1285,7 @@ export EPBL=-999. # CICE6 defaults; 1 degree export CICE_DECOMP=slenderX2 -export NPROC_ICE=$NPROC_ICE_cpl_dflt +export NPROC_ICE=${ICE_tasks_cpl_dflt} # SlenderX2 export CICE_DECOMP=slenderX2 export np2=`expr $NPROC_ICE / 2` @@ -1244,9 +1338,9 @@ export DOCN_CDEPS=false export CPLWAV=.false. export DAYS=1 export FHMAX=24 -export THRD=1 export FHROT=0 export WARM_START=.false. +export WRITE_NSFLIP=.true. # atm/ocn/ice resolution export IATM=1760 @@ -1265,12 +1359,10 @@ export med_model=cmeps export atm_model=datm export ocn_model=mom6 export ice_model=cice6 -export atm_petlist_bounds=$APB_cdeps_100 -export med_petlist_bounds=$MPB_cdeps_100 -export ocn_petlist_bounds=$OPB_cdeps_100 -export ice_petlist_bounds=$IPB_cdeps_100 +export ATM_compute_tasks=$ATM_compute_tasks_cdeps_100 +export OCN_tasks=$OCN_tasks_cdeps_100 +export ICE_tasks=$ICE_tasks_cdeps_100 export TASKS=$TASKS_cdeps_100 -export TPN=$TPN_cdeps_100 # SlenderX2 export CICE_DECOMP=slenderX2 export NPROC_ICE=12 @@ -1366,11 +1458,10 @@ export S2S=false export HAFS=true export DATM_CDEPS=true export DOCN_CDEPS=false -export THRD=1 export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt -export TPN=$TPN_dflt +export NTILES=1 export atm_model=datm @@ -1383,11 +1474,10 @@ export FV3=true export S2S=false export HAFS=true export DOCN_CDEPS=true -export THRD=1 export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt -export TPN=$TPN_dflt +export NTILES=1 export ocn_model=docn export ocn_datamode=sstdata @@ -1402,11 +1492,10 @@ export S2S=false export HAFS=true export DATM_CDEPS=false export DOCN_CDEPS=false -export THRD=1 export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt -export TPN=$TPN_dflt +export NTILES=1 # model_configure export SYEAR=2019 @@ -1466,11 +1555,17 @@ export S2S=false export HAFS=true export DATM_CDEPS=false export DOCN_CDEPS=false -export THRD=1 export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt -export TPN=$TPN_dflt +export NTILES=1 + +export IS_MOVING_NEST=".false." +export VORTEX_TRACKER=0 +export NTRACK=0 +export MOVE_CD_X=0 +export MOVE_CD_Y=0 +export CPL_IMP_MRG=.true. export OUTPUT_GRID='' export IMO='' diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index a35e62a503..f5a8b0d1ff 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -9,7 +9,7 @@ fi ICERES=${OCNRES:0:1}.${OCNRES:1} if [[ $BMIC == .true. ]]; then - FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/gfs_p7/@[ATMRES]_L@[NPZ]/INPUT + FV3_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/@[FV3BMIC]/@[ATMRES]_L@[NPZ]/INPUT MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da ICE_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc else @@ -123,9 +123,19 @@ if [ $IAER = 1011 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat fi -#ugwpv1 -if [ $DO_UGWP_V1 = .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc - cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT - cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT +cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT +cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT + +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat freezeH2O.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat qr_acr_qg.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat qr_acr_qs.dat +fi + +#prognostic aerosols +if [ $CPLCHM = .true. ]; then + cp @[INPUTDATA_ROOT]/GOCART/p8/rc/*.rc . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . fi diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index e0a94cf87f..027cb02034 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -22,6 +22,9 @@ if [ $WARM_START = .false. ]; then else cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/MOM6_IC_TS*.nc ./INPUT/MOM6_IC_TS.nc cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc.res_2011100100.nc cice_model.res.nc + if [[ $MOM_IAU == 'True' ]];then + cp @[INPUTDATA_ROOT]/MOM6_IC/@[OCNRES]/2011100100/mom6_increment.nc ./INPUT/mom6_increment.nc + fi fi else # warm start diff --git a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN new file mode 100644 index 0000000000..9a07e9f263 --- /dev/null +++ b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN @@ -0,0 +1,39 @@ +mkdir INPUT DATM_INPUT RESTART history MOM6_OUTPUT + +# DATM fixed input +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/@[mesh_file] DATM_INPUT +ln -s @[INPUTDATA_ROOT]/DATM_CDEPS/@[DATM_SRC]/202103/gfs.202103.nc DATM_INPUT/gfs.202103.nc + +# MOM6 fixed input +ICERES="${OCNRES:0:1}.${OCNRES:1}" +cp @[INPUTDATA_ROOT]/MOM6_FIX/@[OCNRES]/* ./INPUT +cp @[INPUTDATA_ROOT]/MOM6_FIX_DATM/@[OCNRES]/* ./INPUT + +# CICE fixed input +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/grid_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/kmtu_cice_NEMS_mx@[OCNRES].nc . +cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . + +if [ $WARM_START = .false. ]; then +# cold start + if [[ $OCNRES == '025' ]]; then + cp @[INPUTDATA_ROOT]/MOM6_IC/MOM6_IC_TS_2021032206.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc.res_20210322.nc cice_model.res.nc + else + cp @[INPUTDATA_ROOT]/MOM6_IC/MOM6_IC_TS_2021032206.nc ./INPUT/MOM6_IC_TS.nc + cp @[INPUTDATA_ROOT]/CICE_IC/@[OCNRES]/cice_model_@[ICERES].cpc.res_20210322.nc cice_model.res.nc + fi +else +# warm start + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2021-03-22-18*.nc ./INPUT/MOM.res.nc + +# CMEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + +# CICE restart and pointer files + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/iced.2021-03-22-64800.nc ./INPUT + RFILE="iced.2021-03-22-64800.nc" + ls -1 "./INPUT/"${RFILE}>ice.restart_file +fi diff --git a/tests/fv3_conf/hafs_fv3_run.IN b/tests/fv3_conf/hafs_fv3_run.IN index 3a377ae3ba..88f258098e 100644 --- a/tests/fv3_conf/hafs_fv3_run.IN +++ b/tests/fv3_conf/hafs_fv3_run.IN @@ -13,10 +13,16 @@ if [ ${CNTL_DIR} = "hafs_regional_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_docn" ] || \ [ ${CNTL_DIR} = "hafs_regional_docn_oisst" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_atm/* ./INPUT/ +elif [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm" ] || \ + [ ${CNTL_DIR} = "hafs_regional_specified_moving_1nest_atm" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then + cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_storm_following_1nest_atm/* ./INPUT/ elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ - [ ${CNTL_DIR} = "hafs_regional_telescopic_2nests_atm" ] || \ - [ ${CNTL_DIR} = "hafs_global_1nest_atm" ] || \ - [ ${CNTL_DIR} = "hafs_global_multiple_4nests_atm" ]; then + [ ${CNTL_DIR} = "hafs_regional_telescopic_2nests_atm" ] || \ + [ ${CNTL_DIR} = "hafs_global_1nest_atm" ] || \ + [ ${CNTL_DIR} = "hafs_global_multiple_4nests_atm" ] || \ + [ ${CNTL_DIR} = "hafs_global_storm_following_1nest_atm" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_${CNTL_DIR}/* ./INPUT/ else echo "Error: unsupported experiments ${CNTL_DIR}" @@ -28,3 +34,10 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_thompson_gfdlsf" ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi + +if [[ $POSTAPP = 'hafs' ]]; then + cp ${PATHRT}/parm/post_itag_hafs itag + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/fv3_conf/hafs_ww3_run.IN b/tests/fv3_conf/hafs_ww3_run.IN index 535f645db2..ef153bc3d1 100644 --- a/tests/fv3_conf/hafs_ww3_run.IN +++ b/tests/fv3_conf/hafs_ww3_run.IN @@ -1,9 +1,14 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ - [ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ]; then + [ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.natl_6m ./mod_def.ww3 cp @[INPUTDATA_ROOT_WW3]/mod_def.points ./mod_def.points - cp @[INPUTDATA_ROOT_WW3]/wind.natl_6m ./wind.ww3 + if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then + cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/WW3_hafs_regional_input_data/wind.natl_6m_2020082512 ./wind.ww3 + else + cp @[INPUTDATA_ROOT_WW3]/wind.natl_6m ./wind.ww3 + fi # Currently, provide a non-existing symbolic link for nest.ww3 ln -sf @[INPUTDATA_ROOT_WW3]/nest.ww3 ./ else diff --git a/tests/fv3_conf/hycom_hat10_run.IN b/tests/fv3_conf/hycom_hat10_run.IN index 34a84e10b3..23000687b4 100644 --- a/tests/fv3_conf/hycom_hat10_run.IN +++ b/tests/fv3_conf/hycom_hat10_run.IN @@ -1,2 +1,7 @@ -rsync -arv @[INPUTDATA_ROOT]/HYCOM_regional_input_data/. ./ +if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then + rsync -arv @[INPUTDATA_ROOT]/FV3_hafs_input_data/HYCOM_hafs_regional_input_data/. ./ +else + rsync -arv @[INPUTDATA_ROOT]/HYCOM_regional_input_data/. ./ +fi diff --git a/tests/fv3_conf/regional_3km_run.IN b/tests/fv3_conf/regional_3km_run.IN new file mode 100644 index 0000000000..2de7228ee2 --- /dev/null +++ b/tests/fv3_conf/regional_3km_run.IN @@ -0,0 +1,46 @@ +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . + +rm -rf INPUT RESTART +mkdir INPUT RESTART + +rsync -arv @[INPUTDATA_ROOT]/fv3_regional_3km_small/INPUT/. INPUT/. + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m02.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m03.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m04.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m05.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m06.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m07.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m08.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m09.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m10.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m11.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m12.nc + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat + +if [ $WARM_START = .true. ]; then + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.coupler.res INPUT/coupler.res + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_core.res.nc INPUT/fv_core.res.nc + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.phy_data.nc INPUT/phy_data.nc + cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.sfc_data.nc INPUT/sfc_data.nc +fi +if [ $WRITE_RESTART_WITH_BCS = .true. ]; then + cp @[INPUTDATA_ROOT]/fv3_regional_3km/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/fv3_regional_3km/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc +fi + +if [[ $POSTAPP = 'lam' ]]; then + cp ${PATHRT}/parm/post_itag_fv3lam itag + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt + cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new +fi diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index ab627c71ae..f7e60e9c08 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -24,11 +24,6 @@ if [[ $POSTAPP = 'lam' ]]; then cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -elif [[ $POSTAPP = 'hafs' ]]; then - cp ${PATHRT}/parm/post_itag_hafs itag - cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi if [ $DO_RRTMGP = .true. ]; then diff --git a/tests/fv3_conf/regional_run_stoch.IN b/tests/fv3_conf/regional_run_stoch.IN index 914cb4acaf..3a824bf790 100644 --- a/tests/fv3_conf/regional_run_stoch.IN +++ b/tests/fv3_conf/regional_run_stoch.IN @@ -10,11 +10,6 @@ if [[ $POSTAPP = 'lam' ]]; then cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -elif [[ $POSTAPP = 'hafs' ]]; then - cp ${PATHRT}/parm/post_itag_hafs itag - cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT-hafs.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi if [ $DO_RRTMGP = .true. ]; then diff --git a/tests/opnReqTest b/tests/opnReqTest index 78e47ac869..abee341e8b 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -53,6 +53,7 @@ cleanup() { } find_build() { + cat rt.conf rt_gnu.conf >rt.temp local compile_line='' local run_line='' while read -r line || [ "$line" ]; do @@ -70,7 +71,7 @@ find_build() { break fi fi - done <'rt.conf' + done <'rt.temp' } build_opnReqTests() { @@ -531,7 +532,6 @@ mkdir -p ${RUNDIR_ROOT} if [[ $ECFLOW == true ]]; then ECFLOW_RUN=${PATHRT}/ecflow_opnReqTest_run ECFLOW_SUITE=opnreqtest_$$ - COMPILE_PREV_WW3_NR= rm -rf ${ECFLOW_RUN} mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} @@ -624,9 +624,9 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20211203} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20220414} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20211113/ -INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210717} +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE diff --git a/tests/opnReqTests/dbg.sh b/tests/opnReqTests/dbg.sh index 918bb15553..d5f31b3c58 100644 --- a/tests/opnReqTests/dbg.sh +++ b/tests/opnReqTests/dbg.sh @@ -29,6 +29,7 @@ elif [[ $application == 'cpld' ]]; then | sed -E "s/2021-03-23-21600/2021-03-22-43200/g" \ | sed -E "s/sfcf021.tile[1-6].nc ?//g" \ | sed -E "s/atmf021.tile[1-6].nc ?//g" \ + | sed -E "s/(gocart.inst_aod.202103)23_0600z.nc4/\122_1200z.nc4/g" \ | sed -e "s/^ *//" -e "s/ *$//") fi diff --git a/tests/opnReqTests/dcp.sh b/tests/opnReqTests/dcp.sh index 42e360f033..3a3ad9ef75 100644 --- a/tests/opnReqTests/dcp.sh +++ b/tests/opnReqTests/dcp.sh @@ -14,22 +14,22 @@ elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=10 JNPES=3 - TASKS=$((INPES*JNPES + WRITE_GROUP*WRTTASK_PER_GROUP)) + NTILES=1 + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) NODES=$(((TASKS+TPN-1)/TPN)) else INPES=5 JNPES=12 + NTILES=1 fi elif [[ $application == 'cpld' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=3 JNPES=1 - NPROC_ICE=6 - med_petlist_bounds="0 17" - atm_petlist_bounds="0 23" - ocn_petlist_bounds="24 33" - ice_petlist_bounds="34 39" - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) + OCN_tasks=10 + ICE_tasks=6 + NPROC_ICE=$ICE_tasks + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) else temp=$INPES INPES=$JNPES diff --git a/tests/opnReqTests/fhz.sh b/tests/opnReqTests/fhz.sh index f7523c9b61..797d56c33f 100644 --- a/tests/opnReqTests/fhz.sh +++ b/tests/opnReqTests/fhz.sh @@ -11,7 +11,7 @@ if [[ $application == 'global' ]]; then | sed -E "s/GFSPRS.GrbF24 ?//g" \ | sed -e "s/^ *//" -e "s/ *$//") elif [[ $application == 'cpld' ]]; then - if [[ $TEST_NAME == 'cpld_control_c96_p8' ]] || [[ $TEST_NAME == 'cpld_control_p8' ]]; then + if [[ $TEST_NAME =~ 'cpld_control_c96_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_c96_noaero_p8' ]]; then FHZERO=3 LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024.tile[1-6].nc ?//g" \ | sed -E "s/atmf024.tile[1-6].nc ?//g" \ diff --git a/tests/opnReqTests/mpi.sh b/tests/opnReqTests/mpi.sh index 5b979a8b87..9be9300a20 100644 --- a/tests/opnReqTests/mpi.sh +++ b/tests/opnReqTests/mpi.sh @@ -10,7 +10,7 @@ if [[ $application == 'global' ]]; then fi WRITE_GROUP=2 WRTTASK_PER_GROUP=12 - TASKS=$(( INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP )) + TASKS=$(( INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP )) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for mpi" diff --git a/tests/opnReqTests/std.sh b/tests/opnReqTests/std.sh index 8418aaa6ec..af085af266 100644 --- a/tests/opnReqTests/std.sh +++ b/tests/opnReqTests/std.sh @@ -6,7 +6,7 @@ if [[ $application == 'global' ]]; then JNPES=2 WRITE_GROUP=1 WRTTASK_PER_GROUP=12 - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP)) + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) fi RESTART_N=$(( FHMAX/2 )) RESTART_INTERVAL="${RESTART_N} -1" @@ -14,19 +14,18 @@ elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=4 JNPES=6 + NTILES=1 WRTTASK_PER_GROUP=8 - TASKS=$((INPES*JNPES + WRITE_GROUP*WRTTASK_PER_GROUP)) + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) fi elif [[ $application == 'cpld' ]]; then if [ $CI_TEST == 'true' ]; then INPES=2 JNPES=2 - NPROC_ICE=6 - med_petlist_bounds="0 23" - atm_petlist_bounds="0 29" - ocn_petlist_bounds="30 39" - ice_petlist_bounds="40 45" - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) + OCN_tasks=10 + ICE_tasks=6 + NPROC_ICE=$ICE_tasks + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) fi RESTART_N=$(( FHMAX/2 )) RESTART_INTERVAL="${RESTART_N} -1" diff --git a/tests/opnReqTests/thr.sh b/tests/opnReqTests/thr.sh index 53e3eab0de..5054e34ce8 100644 --- a/tests/opnReqTests/thr.sh +++ b/tests/opnReqTests/thr.sh @@ -5,35 +5,42 @@ THRD=2 TPN=$((TPN/THRD)) if [[ $application == 'global' ]]; then JNPES=$((JNPES/THRD)) - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP)) + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=4 JNPES=4 - TASKS=$((INPES*JNPES + WRITE_GROUP*WRTTASK_PER_GROUP)) + NTILES=1 + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) fi NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'cpld' ]]; then if [[ $CI_TEST != 'true' ]]; then - if [[ $TEST_NAME == 'cpld_control_c96_p8' ]]; then + if [[ $TEST_NAME =~ 'cpld_control_c96_p8' ]]; then INPES=3 JNPES=4 - med_petlist_bounds="0 71" - atm_petlist_bounds="0 77" - ocn_petlist_bounds="78 107" - ice_petlist_bounds="108 119" - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 30 + 12)) + OCN_tasks=30 + ICE_tasks=12 + NPROC_ICE=$ICE_tasks + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) - elif [[ $TEST_NAME == 'cpld_control_p8' ]]; then + elif [[ $TEST_NAME =~ 'cpld_control_c96_noaero_p8' ]]; then INPES=3 JNPES=4 - med_petlist_bounds="0 71" - atm_petlist_bounds="0 77" - ocn_petlist_bounds="78 97" - ice_petlist_bounds="98 107" - wav_petlist_bounds="108 119" - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 20 + 10 + 12)) + OCN_tasks=30 + ICE_tasks=12 + NPROC_ICE=$ICE_tasks + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) + NODES=$(((TASKS+TPN-1)/TPN)) + elif [[ $TEST_NAME =~ 'cpld_control_p8' ]]; then + INPES=3 + JNPES=4 + OCN_tasks=20 + ICE_tasks=10 + WAV_tasks=12 + NPROC_ICE=$ICE_tasks + TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks + WAV_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $TEST_NAME == 'cpld_bmark_p8' ]]; then NODES=$(((TASKS+TPN-1)/TPN)) diff --git a/tests/opnReqTests/wrt_env.sh b/tests/opnReqTests/wrt_env.sh index 42d86ca4cf..af9801cc3f 100644 --- a/tests/opnReqTests/wrt_env.sh +++ b/tests/opnReqTests/wrt_env.sh @@ -8,14 +8,13 @@ export RESTART_N=${RESTART_N:-} export RESTART_INTERVAL="${RESTART_INTERVAL:-}" export INPES=${INPES} export JNPES=${JNPES} +export NTILES=${NTILES:-} +export OCN_tasks=${OCN_tasks:-} +export ICE_tasks=${ICE_tasks:-} +export WAV_tasks=${WAV_tasks:-} export WRITE_GROUP=${WRITE_GROUP} export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} export NPROC_ICE=${NPROC_ICE:-} -export med_petlist_bounds="${med_petlist_bounds:-}" -export atm_petlist_bounds="${atm_petlist_bounds:-}" -export ocn_petlist_bounds="${ocn_petlist_bounds:-}" -export ice_petlist_bounds="${ice_petlist_bounds:-}" -export wav_petlist_bounds="${wav_petlist_bounds:-}" export THRD=${THRD} export TASKS=${TASKS} export TPN=${TPN} diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index 1716f6fabd..1aedf9e7f1 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -163,7 +163,7 @@ TOPO_CONFIG = "file" ! ! Phillips - ACC-like idealized topography used in the Phillips config. ! dense - Denmark Strait-like dense water formation and overflow. ! USER - call a user modified routine. -TOPO_EDITS_FILE = "topo_edits_011818.nc" ! default = "" +TOPO_EDITS_FILE = "@[TOPOEDITS]" ! default = "" ! The file from which to read a list of i,j,z topography overrides. ALLOW_LANDMASK_CHANGES = @[MOM6_ALLOW_LANDMASK_CHANGES] ! default = "False" ! If true, allow topography overrides to change ocean points to land @@ -856,8 +856,8 @@ FIX_USTAR_GUSTLESS_BUG = False ! [Boolean] default = True ! velocity ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False - ! If true perturb the diabatic tendencies in MOM_diabadic_driver -PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False + ! If true perturb the diabatic tendencies in MOM_diabadic_driver +PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! If true perturb the KE dissipation and destruction in MOM_energetic_PBL ! === module MOM_restart === diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 690b90b654..135ca807bf 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -164,6 +164,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -185,6 +186,19 @@ deflate_level=1 lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] / &gfdl_cloud_microphysics_nml @@ -314,9 +328,12 @@ deflate_level=1 &nam_sfcperts lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &cires_ugwp_nml diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index c43c037a50..030cc369e2 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -162,6 +162,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -322,6 +323,7 @@ deflate_level=1 &nam_sfcperts lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 47a0362ad8..acd04f7865 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -158,6 +158,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index 429270ce9d..8c637562c8 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -160,6 +160,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 0c23e63a6c..c43e3a978b 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -182,6 +182,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index c6b2dffca3..8afd9c8606 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -152,7 +152,7 @@ deflate_level=1 iopt_crs = 2 iopt_btr = 1 iopt_run = 1 - iopt_sfc = 1 + iopt_sfc = 3 iopt_frz = 1 iopt_inf = 1 iopt_rad = 3 @@ -160,6 +160,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 3 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/control_rrtmgp.nml.IN b/tests/parm/control_rrtmgp.nml.IN deleted file mode 100644 index fd24763a93..0000000000 --- a/tests/parm/control_rrtmgp.nml.IN +++ /dev/null @@ -1,330 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.0 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = 1 - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = .false. - res_latlon_dynamics = "" -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = 6 - h2o_phys = .true. - ldiag3d = .false. - fhcyc = 24 - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - iaer = @[IAER] - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = 1 - iopt_dveg = 1 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - effr_in = .true. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .true. - do_sppt = .false. - do_shum = .false. - do_skeb = .false. - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .true. - damp_LW_fluxadj = .true. - lfnc_k = 3125. - lfnc_p0 = 60000. - lsoil_lsm = 4 - do_mynnedmf = .false. - do_mynnsfclay = .false. - icloud_bl = 1 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .false. - bl_mynn_edmf_mom = 1 - min_lakeice = 0.15 - min_seaice = 0.15 - -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' - FNMSKH = 'global_slmask.t1534.3072.1536.grb' - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = @[FNABSC] - LDEBUG = .false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = .true. - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = 99999 - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 54 -/ - diff --git a/tests/parm/control_thompson.nml.IN b/tests/parm/control_thompson.nml.IN index d8e6d3f0fa..732c1f321c 100644 --- a/tests/parm/control_thompson.nml.IN +++ b/tests/parm/control_thompson.nml.IN @@ -116,8 +116,8 @@ deflate_level=1 ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] ttendlim = 0.004 - sedi_semi = @[sedi_semi] - decfl = @[decfl] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] ext_diag_thompson = @[EXT_DIAG_THOMPSON] pdfcld = .false. fhswr = 3600. @@ -167,6 +167,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/control_ugwpv1.nml.IN b/tests/parm/control_ugwpv1.nml.IN index 4ec50ca6f0..4864ec8149 100644 --- a/tests/parm/control_ugwpv1.nml.IN +++ b/tests/parm/control_ugwpv1.nml.IN @@ -160,6 +160,7 @@ deflate_level=1 iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 2635b779b3..8fcd55c175 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -23,7 +23,7 @@ deflate_level=1 &fms_nml clock_grain = 'ROUTINE' - domains_stack_size = 3000000 + domains_stack_size = @[DOMAINS_STACK_SIZE] print_memory_usage = .false. / @@ -39,12 +39,12 @@ deflate_level=1 grid_type = -1 make_nh = @[MAKE_NH] fv_debug = .false. - range_warn = .false. + range_warn = .true. reset_eta = .false. n_sponge = 42 nudge_qv = .true. nudge_dz = .false. - tau = 10. + tau = 10.0 rf_cutoff = 7.5e2 d2_bg_k1 = @[D2_BG_K1] d2_bg_k2 = @[D2_BG_K2] @@ -86,8 +86,9 @@ deflate_level=1 hord_dp = -5 hord_tr = 8 adjust_dry_mass = .false. + dry_mass=98320.0 consv_te = 1. - do_sat_adj = .true. + do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. fill = .true. dwind_2d = .false. @@ -117,7 +118,37 @@ deflate_level=1 fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = 11 + imp_physics = @[IMP_PHYSICS] + iovr = 3 + ltaerosol = .false. + lradar = .false. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = .false. + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + min_lakeice = 0.15 + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] pdfcld = .false. fhswr = 3600. fhlwr = 3600. @@ -125,7 +156,6 @@ deflate_level=1 iems = @[IEMS] iaer = @[IAER] icliq_sw = 2 - iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -159,6 +189,7 @@ deflate_level=1 iopt_btr = 1 iopt_run = 1 iopt_sfc = @[IOPT_SFC] + iopt_trs = @[IOPT_TRS] iopt_frz = 1 iopt_inf = 1 iopt_rad = @[IOPT_RAD] @@ -167,31 +198,36 @@ deflate_level=1 iopt_tbot = 2 iopt_stc = @[IOPT_STC] debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 - lgfdlmprad = .true. - cplchm = @[CPLCHM] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - frac_grid = @[FRAC_GRID] + lgfdlmprad = @[LGFDLMPRAD] effr_in = .true. ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = .false. - do_tofd = .false. + fscav_aero = @[FSCAV_AERO] do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] do_ca = @[DO_CA] ca_global = @[CA_GLOBAL] ca_sgs = @[CA_SGS] @@ -204,14 +240,23 @@ deflate_level=1 ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = @[KNOB_UGWP_VERSION] + launch_level = 54 / &gfdl_cloud_microphysics_nml @@ -301,7 +346,7 @@ deflate_level=1 FSNOL = 99999 FSNOS = 99999 FSICL = @[FSICL] - FSICS = 99999 + FSICS = @[FSICS] FTSFL = 99999 FVETL = 99999 FSOTL = 99999 @@ -316,61 +361,18 @@ deflate_level=1 / &nam_stochy - STOCHINI=@[STOCHINI] - SKEBNORM=1 - SKEB_NPASS=30 - SKEB_VDOF=5 - SKEB=@[SKEB] - SKEB_TAU=2.16E4 - SKEB_LSCALE=1000.E3 - SKEBINT=1800 - SHUM=@[SHUM] - SHUM_TAU=21600 - SHUM_LSCALE=500000 - SHUMINT=3600 - SPPT=@[SPPT] - SPPT_TAU=21600 - SPPT_LSCALE=500000 - SPPT_LOGIT=.TRUE. - SPPT_SFCLIMIT=.TRUE. - SPPTINT=1800 - ISEED_SHUM=1 - ISEED_SKEB=2 - ISEED_SPPT=3 / &nam_sfcperts lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600 - LNDP_LSCALE=500000 - ISEED_LNDP=2010 + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, lndp_var_list = @[LNDP_VAR_LIST] lndp_prt_list = @[LNDP_PRT_LIST] / -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ - &MOM_input_nml output_directory = 'MOM6_OUTPUT/', input_filename = '@[MOM6_RESTART_SETTING]' @@ -378,4 +380,3 @@ deflate_level=1 restart_output_dir = 'RESTART/', parameter_filename = 'INPUT/MOM_input', 'INPUT/MOM_override'/ - diff --git a/tests/parm/cpld_control_rrtmgp.nml.IN b/tests/parm/cpld_control_rrtmgp.nml.IN deleted file mode 100644 index 6c8d026b3c..0000000000 --- a/tests/parm/cpld_control_rrtmgp.nml.IN +++ /dev/null @@ -1,395 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = 3000000 - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .false. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10. - rf_cutoff = 7.5e2 - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 1. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = 2 - iovr = 3 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = @[IOPT_SFC] - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = @[IOPT_STC] - debug = .false. - oz_phys = .false. - oz_phys_2015 = .true. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = .true. - cplchm = @[CPLCHM] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - frac_grid = @[FRAC_GRID] - effr_in = .true. - ldiag_ugwp = @[LDIAG_UGWP] - do_ugwp = .false. - do_tofd = .false. - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] - fscav_aero = @[FSCAV_AERO] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .false. -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG =.false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = 99999 - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy - STOCHINI=@[STOCHINI] - SKEBNORM=1 - SKEB_NPASS=30 - SKEB_VDOF=5 - SKEB=@[SKEB] - SKEB_TAU=2.16E4 - SKEB_LSCALE=1000.E3 - SKEBINT=1800 - SHUM=@[SHUM] - SHUM_TAU=21600 - SHUM_LSCALE=500000 - SHUMINT=3600 - SPPT=@[SPPT] - SPPT_TAU=21600 - SPPT_LSCALE=500000 - SPPT_LOGIT=.TRUE. - SPPT_SFCLIMIT=.TRUE. - SPPTINT=1800 - ISEED_SHUM=1 - ISEED_SKEB=2 - ISEED_SPPT=3 -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - LNDP_TAU=21600 - LNDP_LSCALE=500000 - ISEED_LNDP=2010 - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 2 - knob_ugwp_ndx4lh = 4 - knob_ugwp_palaunch = 275.0e2 - knob_ugwp_nslope = @[KNOB_UGWP_NSLOPE] - knob_ugwp_lzmax = 15.750e3 - knob_ugwp_lzmin = 0.75e3 - knob_ugwp_lzstar = 2.0e3 - knob_ugwp_taumin = 0.25e-3 - knob_ugwp_tauamp = 3.0e-3 - knob_ugwp_lhmet = 200.0e3 - knob_ugwp_orosolv = 'pss-1986' -/ - -&MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ - diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index 2356f1987a..6b9422259a 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -167,6 +167,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 oz_phys = .false. oz_phys_2015 = .true. debug = .false. diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index d14753dd8f..b03422b2ec 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -168,6 +168,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. ras = .false. diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index bc842861c8..53923ad26d 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -167,6 +167,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. ras = .false. diff --git a/tests/parm/diag_table/diag_table_GOCART b/tests/parm/diag_table/diag_table_GOCART index 1cb7a77f9f..0d2d779137 100644 --- a/tests/parm/diag_table/diag_table_GOCART +++ b/tests/parm/diag_table/diag_table_GOCART @@ -160,7 +160,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_aod b/tests/parm/diag_table/diag_table_aod index b16bbdfbd4..21a6a24dc5 100644 --- a/tests/parm/diag_table/diag_table_aod +++ b/tests/parm/diag_table/diag_table_aod @@ -133,7 +133,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_gfsv16 b/tests/parm/diag_table/diag_table_gfsv16 index 3b8a00dd63..9f45077058 100644 --- a/tests/parm/diag_table/diag_table_gfsv16 +++ b/tests/parm/diag_table/diag_table_gfsv16 @@ -46,7 +46,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_gfsv16_merra2 b/tests/parm/diag_table/diag_table_gfsv16_merra2 index 39d0b77efa..091492358c 100644 --- a/tests/parm/diag_table/diag_table_gfsv16_merra2 +++ b/tests/parm/diag_table/diag_table_gfsv16_merra2 @@ -46,7 +46,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag b/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag index aabfaae68c..43fcd7e5e5 100644 --- a/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag +++ b/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag @@ -46,7 +46,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hafs b/tests/parm/diag_table/diag_table_hafs index 7976b6f419..cfa7e4a362 100644 --- a/tests/parm/diag_table/diag_table_hafs +++ b/tests/parm/diag_table/diag_table_hafs @@ -175,7 +175,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index 4932d304c6..c0df92f55c 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -2,11 +2,13 @@ ufs.hafs @[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 #output files -"grid_spec", -1, "months", 1, "days", "time" + "grid_spec", -1, "months", 1, "days", "time" #"atmos_4xdaily", 1, "hours", 1, "days", "time" -"atmos_static", -1, "hours", 1, "hours", "time" -"fv3_history", 0, "hours", 1, "hours", "time" -"fv3_history2d", 0, "hours", 1, "hours", "time" + "atmos_static", -1, "hours", 1, "hours", "time" + "grid_mspec%4yr%2mo%2dy%2hr", 3, "hours", 1, "hours", "time", 3, "hours" + "atmos_diag%4yr%2mo%2dy%2hr", 3, "hours", 1, "hours", "time", 3, "hours" + "fv3_history", 0, "hours", 1, "hours", "time" + "fv3_history2d", 0, "hours", 1, "hours", "time" #"ref3D", 0, "hours", 1, "hours", "time" #"maxmin2D", 1, "hours", 1, "hours", "time" @@ -17,11 +19,21 @@ ufs.hafs ### # grid_spec ### - "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, - "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, - "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# grid_mspec +### + "dynamics", "grid_mlon", "grid_lon", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "grid_mlat", "grid_lat", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "grid_mlont", "grid_lont", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "grid_mlatt", "grid_latt", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "marea", "area", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, +#"dynamics", "mdx", "dx", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, +#"dynamics", "mdy", "dy", "grid_mspec%4yr%2mo%2dy%2hr", "all", .false., "none", 2, ### # 4x daily output ### @@ -107,6 +119,35 @@ ufs.hafs "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 ### +# GFDL tracker needed variables +### +#"dynamics", "grid_lon", "grid_lon", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2, +#"dynamics", "grid_lat", "grid_lat", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "grid_mlon", "grid_lon", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "grid_mlat", "grid_lat", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2, + "dynamics", "vort850", "vort850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "vort700", "vort700", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "us", "us", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "u850", "u850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "u700", "u700", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "u500", "u500", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "vs", "vs", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "v850", "v850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "v700", "v700", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "v500", "v500", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "t850", "t850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "t500", "t500", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "t300", "t300", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "slp", "slp", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "z850", "z850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "z700", "z700", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "z500", "z500", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "z200", "z200", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "rh850", "rh850", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "dynamics", "rh500", "rh500", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +#"gfs_phys", "u10m", "u10m", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +#"gfs_phys", "v10m", "v10m", "atmos_diag%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +### # FV3 variabls needed for NGGPS evaluation ### "gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 @@ -176,7 +217,7 @@ ufs.hafs "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hrrr b/tests/parm/diag_table/diag_table_hrrr index 3a2c46b376..ba355a93e4 100644 --- a/tests/parm/diag_table/diag_table_hrrr +++ b/tests/parm/diag_table/diag_table_hrrr @@ -151,7 +151,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hrrr_stoch b/tests/parm/diag_table/diag_table_hrrr_stoch index 0fc146de4f..813861f854 100644 --- a/tests/parm/diag_table/diag_table_hrrr_stoch +++ b/tests/parm/diag_table/diag_table_hrrr_stoch @@ -151,7 +151,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_lam b/tests/parm/diag_table/diag_table_lam index 3052f4d6ba..953e6dfd2f 100644 --- a/tests/parm/diag_table/diag_table_lam +++ b/tests/parm/diag_table/diag_table_lam @@ -168,7 +168,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_p7.2_template b/tests/parm/diag_table/diag_table_p7.2_template new file mode 100644 index 0000000000..59f0d9e37f --- /dev/null +++ b/tests/parm/diag_table/diag_table_p7.2_template @@ -0,0 +1,303 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +# chemical tracers advected by FV3 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_rap b/tests/parm/diag_table/diag_table_rap index f34236a19e..73572a1d97 100644 --- a/tests/parm/diag_table/diag_table_rap +++ b/tests/parm/diag_table/diag_table_rap @@ -131,7 +131,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_rap_noah b/tests/parm/diag_table/diag_table_rap_noah index b801d99e39..f964f995f1 100644 --- a/tests/parm/diag_table/diag_table_rap_noah +++ b/tests/parm/diag_table/diag_table_rap_noah @@ -131,7 +131,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_regional b/tests/parm/diag_table/diag_table_regional index 3cdfbcfd0e..e519db93b0 100644 --- a/tests/parm/diag_table/diag_table_regional +++ b/tests/parm/diag_table/diag_table_regional @@ -167,7 +167,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_template b/tests/parm/diag_table/diag_table_template index 06fda1c015..184005e457 100644 --- a/tests/parm/diag_table/diag_table_template +++ b/tests/parm/diag_table/diag_table_template @@ -104,7 +104,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_thompson b/tests/parm/diag_table/diag_table_thompson index d97e61c54f..c5468b9f6c 100644 --- a/tests/parm/diag_table/diag_table_thompson +++ b/tests/parm/diag_table/diag_table_thompson @@ -142,7 +142,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_wam b/tests/parm/diag_table/diag_table_wam index c4dc258eb8..02becf1843 100644 --- a/tests/parm/diag_table/diag_table_wam +++ b/tests/parm/diag_table/diag_table_wam @@ -45,7 +45,7 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 033dc1d1bd..7a571e8f71 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -225,6 +225,30 @@ canonical_units: kg kg -1 description: atmosphere export - specifc humidity height 2m # + - standard_name: canopy_moisture_storage + canonical_units: m + description: canopy moisture content + # + - standard_name: inst_aerodynamic_conductance + canonical_units: m + description: aerodynamic conductance + # + - standard_name: inst_canopy_resistance + canonical_units: s m-1 + description: canopy aerodynamic resistance + # + - standard_name: leaf_area_index + canonical_units: 1 + description: leaf area index + # + - standard_name: temperature_of_soil_layer + canonical_units: K + description: temperature in soil layer + # + - standard_name: height + canonical_units: m + description: orography + # #----------------------------------- # section: sea-ice export #----------------------------------- @@ -722,6 +746,7 @@ - standard_name: lake_fraction canonical_units: 1 - standard_name: ice_fraction_in_atm + alias: sea_ice_area_fraction canonical_units: 1 - standard_name: ocean_fraction canonical_units: 1 @@ -973,3 +998,7 @@ - standard_name: t2m canonical_units: K description: two meter temperature + # + - standard_name: inst_tracer_diag_aod + canonical_units: 1 + description: AOD diff --git a/tests/parm/field_table/field_table_nssl_nohailnoccn_tke b/tests/parm/field_table/field_table_nssl_nohailnoccn_tke new file mode 100644 index 0000000000..674bd9dc06 --- /dev/null +++ b/tests/parm/field_table/field_table_nssl_nohailnoccn_tke @@ -0,0 +1,71 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic snow number concentration + "TRACER", "atmos_mod", "snow_nc" + "longname", "snow number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic graupel number concentration + "TRACER", "atmos_mod", "graupel_nc" + "longname", "graupel number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic graupel volume + "TRACER", "atmos_mod", "graupel_vol" + "longname", "graupel volume" + "units", "m3/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_nssl_tke b/tests/parm/field_table/field_table_nssl_tke new file mode 100644 index 0000000000..bd80393236 --- /dev/null +++ b/tests/parm/field_table/field_table_nssl_tke @@ -0,0 +1,91 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic hail water mixing ratio +"TRACER", "atmos_mod", "hailwat" + "longname", "hail mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic snow number concentration + "TRACER", "atmos_mod", "snow_nc" + "longname", "snow number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic graupel number concentration + "TRACER", "atmos_mod", "graupel_nc" + "longname", "graupel number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic hail number concentration + "TRACER", "atmos_mod", "hail_nc" + "longname", "hail number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic graupel volume + "TRACER", "atmos_mod", "graupel_vol" + "longname", "graupel volume" + "units", "m3/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic hail volume + "TRACER", "atmos_mod", "hail_vol" + "longname", "hail volume" + "units", "m3/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic CCN number concentration + "TRACER", "atmos_mod", "ccn_nc" + "longname", "CCN number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART b/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART new file mode 100644 index 0000000000..748da1e2c2 --- /dev/null +++ b/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART @@ -0,0 +1,192 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration - not for non-aerosol runs +# "TRACER", "atmos_mod", "water_nc" +# "longname", "cloud liquid water number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) - not for non-aerosol runs +# "TRACER", "atmos_mod", "liq_aero" +# "longname", "water-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# "TRACER", "atmos_mod", "ice_aero" +# "longname", "ice-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic aerosols + "TRACER", "atmos_mod", "so2" + "longname", "so2 mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "so4" + "longname", "sulfate mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dms" + "longname", "DMS mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "msa" + "longname", "msa mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc1" + "longname", "hydrophobic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc2" + "longname", "hydrophillic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc1" + "longname", "hydrophobic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc2" + "longname", "hydrophillic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust1" + "longname", "fine dust1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust2" + "longname", "fine dust2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust3" + "longname", "coarse dust3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust4" + "longname", "coarse dust4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust5" + "longname", "coarse dust5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas1" + "longname", "seasalt1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas2" + "longname", "seasalt2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas3" + "longname", "seasalt3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas4" + "longname", "seasalt4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas5" + "longname", "seasalt5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh3" + "longname", "primary NH3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh4a" + "longname", "primary NH4a mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an1" + "longname", "primary NO3an1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an2" + "longname", "primary NO3an2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an3" + "longname", "primary NO3an3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / +# diagnostic PM tracers + "TRACER", "atmos_mod", "pm25" + "longname", "primary PM25 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "pm10" + "longname", "primary PM10 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index 243c06da96..16387f8005 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -126,6 +126,15 @@ nest_joffsets= @[NEST_JOFFSETS] / + &fv_moving_nest_nml + surface_dir = "INPUT/moving_nest" + is_moving_nest = @[IS_MOVING_NEST] + vortex_tracker = @[VORTEX_TRACKER] + ntrack = @[NTRACK] + move_cd_x = @[MOVE_CD_X] + move_cd_y = @[MOVE_CD_Y] +/ + &surf_map_nml zero_ocean = .false. cd4 = 0.15 @@ -203,6 +212,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 58db081e05..820e687e50 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -159,6 +159,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 0ce53df025..9196de1971 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -192,6 +192,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 87beae25d4..09f80e56c4 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -130,6 +130,15 @@ nest_joffsets= @[NEST_JOFFSETS] / + &fv_moving_nest_nml + surface_dir = "INPUT/moving_nest" + is_moving_nest = @[IS_MOVING_NEST] + vortex_tracker = @[VORTEX_TRACKER] + ntrack = @[NTRACK] + move_cd_x = @[MOVE_CD_X] + move_cd_y = @[MOVE_CD_Y] +/ + &surf_map_nml zero_ocean = .false. cd4 = 0.15 @@ -159,10 +168,12 @@ use_ufo = .true. pre_rad = .false. imp_physics = @[IMP_PHYSICS] - ltaerosol = .false. - lradar = .true. - ttendlim = 0.004 - sedi_semi = .false. + ltaerosol = .false. + lradar = .true. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] ext_diag_thompson = .false. pdfcld = .false. fhswr = @[FHSWR] @@ -212,6 +223,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 9457ba8333..099e4e2d98 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -18,6 +18,7 @@ write_tasks_per_group: @[WRTTASK_PER_GROUP] itasks: @[ITASKS] output_history: @[OUTPUT_HISTORY] write_dopost: @[WRITE_DOPOST] +write_nsflip: @[WRITE_NSFLIP] num_files: @[NUM_FILES] filename_base: @[FILENAME_BASE] output_grid: @[OUTPUT_GRID] diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 2f2eeb3321..4ab33e554e 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -1,59 +1,150 @@ -start_year: 2018 -start_month: 10 -start_day: 15 -start_hour: 00 +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] start_minute: 0 start_second: 0 -nhours_fcst: 24 - -dt_atmos: 225 +nhours_fcst: @[FHMAX] +dt_atmos: @[DT_ATMOS] calendar: 'julian' -restart_interval: 0 +restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. -quilting: .true. -write_groups: 1 -write_tasks_per_group: 8 +quilting: @[QUILTING] +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +num_files: @[NUM_FILES] +filename_base: @[FILENAME_BASE] +output_file: @[OUTPUT_FILE] write_dopost: @[WRITE_DOPOST] -num_files: 2 -filename_base: 'dyn' 'phy' -output_file: 'netcdf' - -# output_grid: 'gaussian_grid' -# imo: 384 -# jmo: 190 - - output_grid: 'regional_latlon' - lon1: 225.0 - lon2: 300.0 - lat1: 10.0 - lat2: 60.0 - dlon: 0.2 - dlat: 0.2 +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 +ideflate: @[IDEFLATE] +nbits: @[NBITS] -# output_grid: 'rotated_latlon' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.5 # central latitude -# lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) -# lat1: -22.0 # latitude of lower-left . . . . -# lon2: 24.0 # longitude of upper-right . . . . -# lat2: 22.0 # latitude of upper-right . . . . -# dlon: 0.2 -# dlat: 0.2 +output_grid: @[OUTPUT_GRID] # gaussian_grid, global_latlon, regional_latlon[_moving], rotated_latlon[_moving], lambert_conformal, cubed_sphere_grid +imo: @[IMO] # number of grid points along longitude/latitude direction +jmo: @[JMO] # needed for gaussian_grid, global_latlon, regional_latlon_moving, or rotated_latlon_moving +cen_lon: @[CEN_LON] # central longitude/latitude (degrees) +cen_lat: @[CEN_LAT] # needed for rotated_latlon, lambert_conformal +lon1: @[LON1] # longitude/latitude of lower-left corner +lat1: @[LAT1] # needed for regional_latlon, rotated_latlon, lambert_conformal +lon2: @[LON2] # longitude/latitude of upper-right corner +lat2: @[LAT2] # needed for regional_latlon, rotated_latlon +dlon: @[DLON] # grid spacing in longitude/latitude direction (degrees) +dlat: @[DLAT] # needed for regional_latlon[_moving], rotated_latlon[_moving] +stdlat1: @[STDLAT1] # latitude of first/second standard parallel (degrees) +stdlat2: @[STDLAT2] # needed for lambert_conformal +nx: @[NX] # number of grid cells along x/y-axis +ny: @[NY] # needed for lambert_conformal +dx: @[DX] # grid cell size in x/y direction (meters) +dy: @[DY] # needed for lambert_conformal -# output_grid: 'lambert_conformal' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.0 # central latitude -# stdlat1: 30.0 -# stdlat2: 60.0 -# nx: 450 # Number of points along x-axis. -# ny: 430 # Number of points along y-axis. -# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) -# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) -# dx: 10000.0 # x-direction grid length -# dy: 10000.0 # y-direction grid length + +output_grid: @[OUTPUT_GRID_2] +imo: @[IMO_2] +jmo: @[JMO_2] +cen_lon: @[CEN_LON_2] +cen_lat: @[CEN_LAT_2] +lon1: @[LON1_2] +lat1: @[LAT1_2] +lon2: @[LON2_2] +lat2: @[LAT2_2] +dlon: @[DLON_2] +dlat: @[DLAT_2] +stdlat1: @[STDLAT1_2] +stdlat2: @[STDLAT2_2] +nx: @[NX_2] +ny: @[NY_2] +dx: @[DX_2] +dy: @[DY_2] + + +output_grid: @[OUTPUT_GRID_3] +imo: @[IMO_3] +jmo: @[JMO_3] +cen_lon: @[CEN_LON_3] +cen_lat: @[CEN_LAT_3] +lon1: @[LON1_3] +lat1: @[LAT1_3] +lon2: @[LON2_3] +lat2: @[LAT2_3] +dlon: @[DLON_3] +dlat: @[DLAT_3] +stdlat1: @[STDLAT1_3] +stdlat2: @[STDLAT2_3] +nx: @[NX_3] +ny: @[NY_3] +dx: @[DX_3] +dy: @[DY_3] + + +output_grid: @[OUTPUT_GRID_4] +imo: @[IMO_4] +jmo: @[JMO_4] +cen_lon: @[CEN_LON_4] +cen_lat: @[CEN_LAT_4] +lon1: @[LON1_4] +lat1: @[LAT1_4] +lon2: @[LON2_4] +lat2: @[LAT2_4] +dlon: @[DLON_4] +dlat: @[DLAT_4] +stdlat1: @[STDLAT1_4] +stdlat2: @[STDLAT2_4] +nx: @[NX_4] +ny: @[NY_4] +dx: @[DX_4] +dy: @[DY_4] + + +output_grid: @[OUTPUT_GRID_5] +imo: @[IMO_5] +jmo: @[JMO_5] +cen_lon: @[CEN_LON_5] +cen_lat: @[CEN_LAT_5] +lon1: @[LON1_5] +lat1: @[LAT1_5] +lon2: @[LON2_5] +lat2: @[LAT2_5] +dlon: @[DLON_5] +dlat: @[DLAT_5] +stdlat1: @[STDLAT1_5] +stdlat2: @[STDLAT2_5] +nx: @[NX_5] +ny: @[NY_5] +dx: @[DX_5] +dy: @[DY_5] + + +output_grid: @[OUTPUT_GRID_6] +imo: @[IMO_6] +jmo: @[JMO_6] +cen_lon: @[CEN_LON_6] +cen_lat: @[CEN_LAT_6] +lon1: @[LON1_6] +lat1: @[LAT1_6] +lon2: @[LON2_6] +lat2: @[LAT2_6] +dlon: @[DLON_6] +dlat: @[DLAT_6] +stdlat1: @[STDLAT1_6] +stdlat2: @[STDLAT2_6] +nx: @[NX_6] +ny: @[NY_6] +dx: @[DX_6] +dy: @[DY_6] + -nfhout: 3 -nfhmax_hf: 12 -nfhout_hf: 1 -nsout: -1 +nfhout: @[NFHOUT] # Output frequency in hours after forecast hour nfhmax_hf +nfhmax_hf: @[NFHMAX_HF] # Number of forecast hours until output frequency nfhout takes affect +nfhout_hf: @[NFHOUT_HF] # Output frequency in hours until forecast hour nfhmax_hf +nsout: @[NSOUT] # Output frequency in time steps (positive values override nfhout and nfhout_hf) +output_fh: @[OUTPUT_FH] # Output forecast hours controlled by output_fh (see notes below) +# a) An array of output_fh means to output history files at those forecast time (e.g., "output_fh: 0 1 2 3 12 24 48") +# If the first elelment is zero, it means the first time step output +# b) If there are two elements in output_fh and the second one is -1, then the first element is output frequency. e.g. +# For example, "output_fh: 6 -1" will output the history file every 6 hours. diff --git a/tests/parm/model_configure_hafs_shared.IN b/tests/parm/model_configure_hafs_shared.IN deleted file mode 100644 index cc96695997..0000000000 --- a/tests/parm/model_configure_hafs_shared.IN +++ /dev/null @@ -1,150 +0,0 @@ -start_year: @[SYEAR] -start_month: @[SMONTH] -start_day: @[SDAY] -start_hour: @[SHOUR] -start_minute: 0 -start_second: 0 -nhours_fcst: @[FHMAX] -dt_atmos: @[DT_ATMOS] -calendar: 'julian' -restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. - -quilting: @[QUILTING] -write_groups: @[WRITE_GROUP] -write_tasks_per_group: @[WRTTASK_PER_GROUP] -num_files: @[NUM_FILES] -filename_base: @[FILENAME_BASE] -output_file: @[OUTPUT_FILE] -write_dopost: @[WRITE_DOPOST] -ichunk2d: -1 -jchunk2d: -1 -ichunk3d: -1 -jchunk3d: -1 -kchunk3d: -1 -ideflate: @[IDEFLATE] -nbits: @[NBITS] - -output_grid: @[OUTPUT_GRID] # gaussian_grid, global_latlon, regional_latlon, rotated_latlon, lambert_conformal, cubed_sphere_grid -imo: @[IMO] # number of grid points along longitude/latitude direction -jmo: @[JMO] # needed for gaussian_grid or global_latlon -cen_lon: @[CEN_LON] # central longitude/latitude (degrees) -cen_lat: @[CEN_LAT] # needed for rotated_latlon, lambert_conformal -lon1: @[LON1] # longitude/latitude of lower-left corner -lat1: @[LAT1] # needed for regional_latlon, rotated_latlon, lambert_conformal -lon2: @[LON2] # longitude/latitude of upper-right corner -lat2: @[LAT2] # needed for regional_latlon, rotated_latlon -dlon: @[DLON] # grid spacing in longitude/latitude direction (degrees) -dlat: @[DLAT] # needed for regional_latlon, rotated_latlon -stdlat1: @[STDLAT1] # latitude of first/second standard parallel (degrees) -stdlat2: @[STDLAT2] # needed for lambert_conformal -nx: @[NX] # number of grid cells along x/y-axis -ny: @[NY] # needed for lambert_conformal -dx: @[DX] # grid cell size in x/y direction (meters) -dy: @[DY] # needed for lambert_conformal - - -output_grid: @[OUTPUT_GRID_2] -imo: @[IMO_2] -jmo: @[JMO_2] -cen_lon: @[CEN_LON_2] -cen_lat: @[CEN_LAT_2] -lon1: @[LON1_2] -lat1: @[LAT1_2] -lon2: @[LON2_2] -lat2: @[LAT2_2] -dlon: @[DLON_2] -dlat: @[DLAT_2] -stdlat1: @[STDLAT1_2] -stdlat2: @[STDLAT2_2] -nx: @[NX_2] -ny: @[NY_2] -dx: @[DX_2] -dy: @[DY_2] - - -output_grid: @[OUTPUT_GRID_3] -imo: @[IMO_3] -jmo: @[JMO_3] -cen_lon: @[CEN_LON_3] -cen_lat: @[CEN_LAT_3] -lon1: @[LON1_3] -lat1: @[LAT1_3] -lon2: @[LON2_3] -lat2: @[LAT2_3] -dlon: @[DLON_3] -dlat: @[DLAT_3] -stdlat1: @[STDLAT1_3] -stdlat2: @[STDLAT2_3] -nx: @[NX_3] -ny: @[NY_3] -dx: @[DX_3] -dy: @[DY_3] - - -output_grid: @[OUTPUT_GRID_4] -imo: @[IMO_4] -jmo: @[JMO_4] -cen_lon: @[CEN_LON_4] -cen_lat: @[CEN_LAT_4] -lon1: @[LON1_4] -lat1: @[LAT1_4] -lon2: @[LON2_4] -lat2: @[LAT2_4] -dlon: @[DLON_4] -dlat: @[DLAT_4] -stdlat1: @[STDLAT1_4] -stdlat2: @[STDLAT2_4] -nx: @[NX_4] -ny: @[NY_4] -dx: @[DX_4] -dy: @[DY_4] - - -output_grid: @[OUTPUT_GRID_5] -imo: @[IMO_5] -jmo: @[JMO_5] -cen_lon: @[CEN_LON_5] -cen_lat: @[CEN_LAT_5] -lon1: @[LON1_5] -lat1: @[LAT1_5] -lon2: @[LON2_5] -lat2: @[LAT2_5] -dlon: @[DLON_5] -dlat: @[DLAT_5] -stdlat1: @[STDLAT1_5] -stdlat2: @[STDLAT2_5] -nx: @[NX_5] -ny: @[NY_5] -dx: @[DX_5] -dy: @[DY_5] - - -output_grid: @[OUTPUT_GRID_6] -imo: @[IMO_6] -jmo: @[JMO_6] -cen_lon: @[CEN_LON_6] -cen_lat: @[CEN_LAT_6] -lon1: @[LON1_6] -lat1: @[LAT1_6] -lon2: @[LON2_6] -lat2: @[LAT2_6] -dlon: @[DLON_6] -dlat: @[DLAT_6] -stdlat1: @[STDLAT1_6] -stdlat2: @[STDLAT2_6] -nx: @[NX_6] -ny: @[NY_6] -dx: @[DX_6] -dy: @[DY_6] - - -nfhout: @[NFHOUT] # Output frequency in hours after forecast hour nfhmax_hf -nfhmax_hf: @[NFHMAX_HF] # Number of forecast hours until output frequency nfhout takes affect -nfhout_hf: @[NFHOUT_HF] # Output frequency in hours until forecast hour nfhmax_hf -nsout: @[NSOUT] # Output frequency in time steps (positive values override nfhout and nfhout_hf) -output_fh: @[OUTPUT_FH] # Output forecast hours controlled by output_fh (see notes below) -# a) An array of output_fh means to output history files at those forecast time (e.g., "output_fh: 0 1 2 3 12 24 48") -# If the first elelment is zero, it means the first time step output -# b) If there are two elements in output_fh and the second one is -1, then the first element is output frequency. e.g. -# For example, "output_fh: 6 -1" will output the history file every 6 hours. diff --git a/tests/parm/model_configure_regional_3km.IN b/tests/parm/model_configure_regional_3km.IN new file mode 100644 index 0000000000..d956cf80bb --- /dev/null +++ b/tests/parm/model_configure_regional_3km.IN @@ -0,0 +1,57 @@ +start_year: 2022 +start_month: 2 +start_day: 18 +start_hour: 0 +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +fhrot: @[FHROT] + +dt_atmos: 40 +calendar: 'julian' +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. + +quilting: @[QUILTING] +write_groups: 1 +write_tasks_per_group: 10 +itasks: @[ITASKS] +write_dopost: @[WRITE_DOPOST] +num_files: 2 +filename_base: 'dyn' 'phy' +output_file: 'netcdf' 'netcdf' +ideflate: 0 +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 + +output_grid: 'lambert_conformal' +# +# Parameter definitions for an output grid of type "lambert_conformal": +# +# cen_lon: Longitude of center of grid (degrees). +# cen_lat: Latitude of center of grid (degrees). +# stdlat1: Latitude of first standard parallel (degrees). +# stdlat2: Latitude of second standard parallel (degrees). +# nx: Number of grid cells along x-axis in Lambert conformal (x,y) plane. +# ny: Number of grid cells along y-axis in Lambert conformal (x,y) plane. +# lon1: Longitude of center of grid cell at bottom-left corner of grid (degrees). +# lat1: Latitude of center of grid cell at bottom-left corner of grid (degrees). +# dx: Grid cell size in x direction (meters). +# dy: Grid cell size in y direction (meters). +# +cen_lon: -120.0 +cen_lat: 38.0 +stdlat1: 38.0 +stdlat2: 38.0 +nx: 320 +ny: 192 +lon1: -125.25 +lat1: 35.3 +dx: 3000.0 +dy: 3000.0 + +output_fh: @[OUTPUT_FH] +nsout: -1 diff --git a/tests/parm/nems.configure.cpld_aero.IN b/tests/parm/nems.configure.cpld_aero.IN new file mode 100644 index 0000000000..48388bd808 --- /dev/null +++ b/tests/parm/nems.configure.cpld_aero.IN @@ -0,0 +1,123 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHOCN_ICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/nems.configure.cpld_aero_wave.IN b/tests/parm/nems.configure.cpld_aero_wave.IN new file mode 100644 index 0000000000..166fa4419a --- /dev/null +++ b/tests/parm/nems.configure.cpld_aero_wave.IN @@ -0,0 +1,137 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHOCN_ICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN -> WAV + WAV -> OCN :srcMaskValues=1 + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + WAV -> ATM :srcMaskValues=1 + ATM -> WAV + ICE -> WAV + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/nems.configure.hafs_atm.IN b/tests/parm/nems.configure.hafs_atm.IN index b71ff6e3ea..dea3fdbab1 100644 --- a/tests/parm/nems.configure.hafs_atm.IN +++ b/tests/parm/nems.configure.hafs_atm.IN @@ -1,4 +1,4 @@ - logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + logKindFlag: ESMF_LOGKIND_MULTI EARTH_component_list: ATM diff --git a/tests/parm/nems.configure.hafs_atm_docn.IN b/tests/parm/nems.configure.hafs_atm_docn.IN index 038f11141b..a19713c65e 100644 --- a/tests/parm/nems.configure.hafs_atm_docn.IN +++ b/tests/parm/nems.configure.hafs_atm_docn.IN @@ -3,7 +3,7 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR +logKindFlag: ESMF_LOGKIND_MULTI # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/nems.configure.hafs_atm_ocn.IN index 4173a503a4..b130b21b2e 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn.IN @@ -3,7 +3,7 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR +logKindFlag: ESMF_LOGKIND_MULTI # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index 98688a3c7f..bc17c35015 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -3,7 +3,7 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR +logKindFlag: ESMF_LOGKIND_MULTI # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index 9c4d3c7744..adb601027c 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -3,7 +3,7 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR +logKindFlag: ESMF_LOGKIND_MULTI # EARTH # EARTH_component_list: MED ATM WAV diff --git a/tests/parm/post_itag b/tests/parm/post_itag index 9a9a3bddec..f9246e0458 100644 --- a/tests/parm/post_itag +++ b/tests/parm/post_itag @@ -1,3 +1,6 @@ +&MODEL_INPUTS +MODELNAME='GFS' +/ &NAMPGB KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, / diff --git a/tests/parm/post_itag_fv3lam b/tests/parm/post_itag_fv3lam index 2fe39018b3..108efc24f8 100644 --- a/tests/parm/post_itag_fv3lam +++ b/tests/parm/post_itag_fv3lam @@ -1,3 +1,6 @@ +&MODEL_INPUTS +MODELNAME='FV3R' +/ &NAMPGB KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., / diff --git a/tests/parm/post_itag_hafs b/tests/parm/post_itag_hafs index 87ad99e6dd..9561a1c1f0 100644 --- a/tests/parm/post_itag_hafs +++ b/tests/parm/post_itag_hafs @@ -1,3 +1,6 @@ +&MODEL_INPUTS +MODELNAME='FV3R' +/ &NAMPGB KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., / diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 8fc5114315..9553f3d7ae 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -58,7 +58,7 @@ deflate_level=1 p_fac = 0.1 k_split = 2 n_split = 6 - nwat = 6 + nwat = @[NWAT] na_init = @[NA_INIT] d_ext = 0. dnats = @[DNATS] @@ -107,6 +107,7 @@ deflate_level=1 / &gfs_physics_nml + sfclay_compute_flux = @[SFCLAY_COMPUTE_FLUX] fhzero = @[FHZERO] h2o_phys = .true. ldiag3d = @[LDIAG3D] @@ -118,6 +119,14 @@ deflate_level=1 imp_physics = @[IMP_PHYSICS] ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + nssl_cccn = @[NSSL_CCCN] + nssl_alphah = @[NSSL_ALPHAH] + nssl_alphahl = @[NSSL_ALPHAHL] + nssl_hail_on = @[NSSL_HAIL_ON] + nssl_ccn_on = @[NSSL_CCN_ON] + nssl_invertccn = @[NSSL_INVERTCCN] dt_inner = 60 ttendlim = -999 pdfcld = .false. @@ -162,18 +171,19 @@ deflate_level=1 lsoil = 4 lsoil_lsm = @[LSOIL_LSM] kice = @[KICE] - iopt_dveg = 1 - iopt_crs = 1 + iopt_dveg = 4 + iopt_crs = 2 iopt_btr = 1 iopt_run = 1 - iopt_sfc = 1 + iopt_sfc = 3 iopt_frz = 1 iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 + iopt_rad = 3 + iopt_alb = 1 iopt_snf = 4 iopt_tbot = 2 - iopt_stc = 1 + iopt_stc = 3 + iopt_trs = 2 debug = .false. oz_phys = .false. oz_phys_2015 = .true. @@ -204,7 +214,6 @@ deflate_level=1 do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] - lndp_each_step = @[LNDP_EACH_STEP] fscav_aero = @[FSCAV_AERO] icloud_bl = 1 bl_mynn_tkeadvect = .true. @@ -223,10 +232,6 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] - use_LW_jacobian = @[USE_LW_JACOBIAN] - damp_LW_fluxadj = @[DAMP_LW_FLUXADJ] - lfnc_k = @[LFNC_K] - lfnc_p0 = @[LFNC_P0] / &gfdl_cloud_microphysics_nml @@ -356,11 +361,12 @@ deflate_level=1 &nam_sfcperts lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, lndp_var_list = 'smc', 'vgf', 'alb', 'sal', 'emi', 'zol' - lndp_prt_list = 0.200, 0.001, 0.001, 0.001, 0.001, 0.001 + lndp_prt_list = 0.017, 0.001, 0.001, 0.001, 0.001, 0.001 / &cires_ugwp_nml @@ -377,4 +383,3 @@ deflate_level=1 knob_ugwp_version = 0 launch_level = 54 / - diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index ecd9b07835..caed1c34ec 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -131,6 +131,8 @@ imp_physics = 8 ltaerosol = .false. ttendlim = -999.0 + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] pdfcld = .false. fhswr = 900. fhlwr = 900. @@ -179,6 +181,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = @[OZ_PHYS_OLD] oz_phys_2015 = @[OZ_PHYS_NEW] @@ -198,6 +201,19 @@ bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] / &interpolator_nml diff --git a/tests/parm/regional_3km.nml.IN b/tests/parm/regional_3km.nml.IN new file mode 100644 index 0000000000..d857c21490 --- /dev/null +++ b/tests/parm/regional_3km.nml.IN @@ -0,0 +1,271 @@ +&atmos_model_nml + avg_max_length = 3600.0 + blocksize = 32 + ccpp_suite = '@[CCPP_SUITE]' + chksum_debug = .false. + dycore_only = .false. +/ + +&cires_ugwp_nml + knob_ugwp_azdir = 2, 4, 4, 4 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_effac = 1, 1, 1, 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_solver = 2 + knob_ugwp_source = 1, 1, 0, 0 + knob_ugwp_stoch = 0, 0, 0, 0 + knob_ugwp_version = 0 + knob_ugwp_wvspec = 1, 25, 25, 25 + launch_level = 25 +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&external_ic_nml + checker_tr = .false. + filtered_terrain = .true. + gfs_dwinds = .true. + levp = 65 + nt_checker = 0 +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv_core_nml + a_imp = 1.0 + adjust_dry_mass = .false. + agrid_vel_rst = .true. + bc_update_interval = 3 + beta = 0.0 + consv_am = .false. + consv_te = 0.0 + d2_bg = 0.0 + d2_bg_k1 = 0.2 + d2_bg_k2 = 0.04 + d4_bg = 0.15 + d_con = 1.0 + d_ext = 0.0 + dddmp = 0.1 + delt_max = 0.008 + dnats = 0 + do_sat_adj = .false. + do_schmidt = .true. + do_vort_damp = .true. + dwind_2d = .false. + dz_min = 2 + external_eta = .true. + external_ic = .true. + fill = .true. + fv_debug = .false. + fv_sg_adj = 300 + gfs_phil = .false. + hord_dp = 6 + hord_mt = 6 + hord_tm = 6 + hord_tr = 10 + hord_vt = 6 + hydrostatic = .false. + io_layout = 1, 1 + k_split = 2 + ke_bg = 0.0 + kord_mt = 9 + kord_tm = -9 + kord_tr = 9 + kord_wz = 9 + layout = @[INPES],@[JNPES] + make_nh = .true. + mountain = .false. + n_split = 5 + n_sponge = 9 + n_zs_filter = 0 + na_init = 1 + ncep_ic = .false. + nggps_ic = .true. + no_dycore = .false. + nord = 2 + npx = 321 + npy = 193 + npz = 64 + npz_type = '' + nrows_blend = 10 + ntiles = 1 + nudge_qv = .false. + nwat = 6 + p_fac = 0.1 + phys_hydrostatic = .false. + print_freq = 6 + psm_bc = 1 + range_warn = .true. + read_increment = .false. + regional = .true. + regional_bcs_from_gsi = .false. + res_latlon_dynamics = 'fv3_increment.nc' + reset_eta = .false. + rf_cutoff = 2000.0 + rf_fast = .false. + sg_cutoff = 10000.0 + stretch_fac = 0.999 + target_lat = 38.0 + target_lon = -120.0 + tau = 5.0 + use_hydro_pressure = .false. + vtdm4 = 0.02 + warm_start = .false. + write_restart_with_bcs = .false. + z_tracer = .true. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&gfs_physics_nml + avg_max_length = 3600.0 + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 + bl_mynn_tkeadvect = .true. + cal_pre = .false. + cdmbgwd = 0.88, 0.04 + cnvcld = .false. + cnvgwd = .false. + cplflx = .false. + debug = .false. + do_deep = .false. + do_mynnedmf = .true. + do_mynnsfclay = .true. + do_shum = .false. + do_skeb = .false. + do_sppt = .false. + do_ugwp = .false. + do_tofd = .false. + dspheat = .true. + effr_in = .true. + fhcyc = 0.0 + fhlwr = 900.0 + fhswr = 900.0 + fhzero = 1.0 + h2o_phys = .true. + hybedmf = .false. + iaer = 1011 + ialb = 1 + iau_delthrs = 6 + iau_inc_files = '' + iaufhrs = 30 + iccn = 2 + icliq_sw = 2 + icloud_bl = 1 + ico2 = 2 + iems = 1 + imfdeepcnv = 2 + imfshalcnv = 2 + imp_physics = 8 + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + iopt_alb = 2 + iopt_btr = 1 + iopt_crs = 1 + iopt_dveg = 2 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_snf = 4 + iopt_stc = 1 + iopt_trs = 2 + iopt_tbot = 2 + iovr = 3 + isol = 2 + isot = 1 + isubc_lw = 2 + isubc_sw = 2 + ivegsrc = 1 + ldiag3d = .false. + ldiag_ugwp = .false. + lgfdlmprad = .false. + lheatstrg = .false. + lndp_type = 0 + lradar = .true. + lsm = 1 + ltaerosol = .false. + lwhtr = .true. + n_var_lndp = 0 + nsradar_reset = 3600 + nst_anl = .true. + nstf_name = 2, 0, 0, 0, 0 + oz_phys = .false. + oz_phys_2015 = .true. + pdfcld = .false. + pre_rad = .false. + print_diff_pgr = .true. + prslrd0 = 0.0 + random_clds = .false. + redrag = .true. + satmedmf = .false. + shal_cnv = .false. + swhtr = .true. + trans_trac = .true. + ttendlim = -999 + use_ufo = .true. + xkzm_h = 1.0 + xkzm_m = 1.0 + xkzminv = 0.3 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + fabsl = 99999 + faisl = 99999 + faiss = 99999 + fnabsc = 'C3337.maximum_snow_albedo.tileX.nc' + fnacna = '' + fnaisc = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + fnalbc = 'C3337.snowfree_albedo.tileX.nc' + fnalbc2 = 'C3337.facsf.tileX.nc' + fnglac = 'global_glacier.2x2.grb' + fnmskh = 'seaice_newland.grb' + fnmxic = 'global_maxice.2x2.grb' + fnslpc = 'C3337.slope_type.tileX.nc' + fnsmcc = 'global_soilmgldas.t126.384.190.grb' + fnsnoa = '' + fnsnoc = 'global_snoclim.1.875.grb' + fnsotc = 'C3337.soil_type.tileX.nc' + fntg3c = 'C3337.substrate_temperature.tileX.nc' + fntsfa = '' + fntsfc = 'RTGSST.1982.2012.monthly.clim.grb' + fnvegc = 'C3337.vegetation_greenness.tileX.nc' + fnvetc = 'C3337.vegetation_type.tileX.nc' + fnvmnc = 'C3337.vegetation_greenness.tileX.nc' + fnvmxc = 'C3337.vegetation_greenness.tileX.nc' + fnzorc = 'igbp' + fsicl = 99999 + fsics = 99999 + fslpl = 99999 + fsmcl = 99999, 99999, 99999 + fsnol = 99999 + fsnos = 99999 + fsotl = 99999 + ftsfl = 99999 + ftsfs = 90 + fvetl = 99999 + fvmnl = 99999 + fvmxl = 99999 + ldebug = .true. +/ diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN index 18885fe828..998ae21b30 100644 --- a/tests/parm/regional_c768.nml.IN +++ b/tests/parm/regional_c768.nml.IN @@ -162,6 +162,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. oz_phys = @[OZ_PHYS_OLD] oz_phys_2015 = @[OZ_PHYS_NEW] diff --git a/tests/parm/regional_rrtmgp.nml.IN b/tests/parm/regional_rrtmgp.nml.IN deleted file mode 100644 index 8127583e85..0000000000 --- a/tests/parm/regional_rrtmgp.nml.IN +++ /dev/null @@ -1,334 +0,0 @@ - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = 211 - npy = 193 - ntiles = 1, - npz = 60 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = 9 - nudge_qv = .false. - tau = 5.0 - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 0 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.15 - vtdm4 = 0.075 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 10 - adjust_dry_mass = .false. - consv_te = 0. - do_sat_adj = .false. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 - regional_bcs_from_gsi = .false. - write_restart_with_bcs = @[WRITE_RESTART_WITH_BCS] - nrows_blend = 0 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 6. - ldiag3d = .false. - lradar = .true. - avg_max_length = 3600. - nsradar_reset = 3600. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - fhcyc = 0 - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 8 - ltaerosol = .false. - ttendlim = -999.0 - pdfcld = .false. - fhswr = 900. - fhlwr = 900. - ialb = 1 - iems = 1 - IAER = 5111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - do_deep = .false. - cal_pre = .true. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - do_mynnedmf = .true. - do_mynnsfclay = .true. - lgfdlmprad = .false. - effr_in = .true. - random_clds = .true. - trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 2.0, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - debug = .false. - oz_phys = @[OZ_PHYS_OLD] - oz_phys_2015 = @[OZ_PHYS_NEW] - h2o_phys = @[H2O_PHYS] - nstf_name = 2,0,0,0,0 - cplflx = .false. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - xkzminv = 0.3 - xkzm_m = 1.0 - xkzm_h = 1.0 - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - icloud_bl = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf = 1 - bl_mynn_edmf_mom = 1 - do_RRTMGP = .true. - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = .true. - doGP_lwscat = .true. - use_LW_jacobian = .true. - damp_LW_fluxadj = .true. - lfnc_k = 3125. - lfnc_p0 = 60000. -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNALBC2 = "C96.facsf.tileX.nc", - FNALBC = "C96.snowfree_albedo.tileX.nc", - FNTG3C = "C96.substrate_temperature.tileX.nc", - FNVEGC = "C96.vegetation_greenness.tileX.nc", - FNVETC = "C96.vegetation_type.tileX.nc", - FNSOTC = "C96.soil_type.tileX.nc", - FNVMNC = "C96.vegetation_greenness.tileX.nc", - FNVMXC = "C96.vegetation_greenness.tileX.nc", - FNSLPC = "C96.slope_type.tileX.nc", - FNABSC = "C96.maximum_snow_albedo.tileX.nc", - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional_stoch.nml.IN b/tests/parm/regional_stoch.nml.IN index 78f5ef186f..8368c6acf3 100644 --- a/tests/parm/regional_stoch.nml.IN +++ b/tests/parm/regional_stoch.nml.IN @@ -140,6 +140,7 @@ / &gfs_physics_nml + sfclay_compute_flux = @[SFCLAY_COMPUTE_FLUX] bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 bl_mynn_tkeadvect = .true. @@ -180,6 +181,8 @@ imfdeepcnv = -1 imfshalcnv = -1 imp_physics = 8 + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] iopt_alb = 2 iopt_btr = 1 iopt_crs = 1 @@ -191,6 +194,7 @@ iopt_sfc = 1 iopt_snf = 4 iopt_stc = 1 + iopt_trs = 2 iopt_tbot = 2 iovr = 3 isol = 2 @@ -201,7 +205,6 @@ kice = 9 ldiag3d = .false. lheatstrg = @[LHEATSTRG] - lndp_each_step = .true. lndp_type = 0 lradar = .true. lsm = 3 @@ -236,6 +239,7 @@ &nam_sfcperts iseed_lndp = 2010 + lndp_model_type = 2 lndp_lscale = 500000 lndp_prt_list = 0.2, 0.1 lndp_tau = 21600 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 136b8e0b76..91d89c0a28 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -1,3 +1,6 @@ +! This configuration is supposed to match the rrfs_dev1 parallel, so +! do not change the namelist without checking the current parallel. + &atmos_model_nml blocksize = 32 ccpp_suite = '@[CCPP_SUITE]' @@ -41,7 +44,7 @@ &fms_nml clock_grain = 'ROUTINE' - domains_stack_size = 3000000 + domains_stack_size = 5000000 ! Smoke needs a higher value than 3000000 default. print_memory_usage = .false. / @@ -132,7 +135,9 @@ grid_file = 'INPUT/grid_spec.nc' / + &gfs_physics_nml + sfclay_compute_flux = @[SFCLAY_COMPUTE_FLUX] fh_dfi_radar = @[FH_DFI_RADAR] bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 @@ -201,6 +206,8 @@ imfdeepcnv = @[IMFDEEPCNV] imfshalcnv = @[IMFSHALCNV] imp_physics = @[IMP_PHYSICS] + ! Yes, really, I mean it. Stop changing the iopt settings too. + ! They need to match the RRFS_dev1 parallel. iopt_alb = 2 iopt_btr = 1 iopt_crs = 1 @@ -213,6 +220,8 @@ iopt_snf = 4 iopt_stc = 1 iopt_tbot = 2 + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] iovr = @[IOVR] isol = 2 isot = 1 @@ -226,9 +235,9 @@ ! lfnc_p0 = @[LFNC_P0] lheatstrg = @[LHEATSTRG] ! lkm = @[LKM] -! lndp_each_step = @[LNDP_EACH_STEP] lndp_type = @[LNDP_TYPE] lradar = @[LRADAR] + lrefres = .true. ! lseaspray = @[LSEASPRAY] lsm = @[LSM] lsoil = 9 diff --git a/tests/parm/stretched-input.nml.IN b/tests/parm/stretched-input.nml.IN index db75176962..e3d14b3f9f 100644 --- a/tests/parm/stretched-input.nml.IN +++ b/tests/parm/stretched-input.nml.IN @@ -160,6 +160,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/stretched-nest-input.nml.IN b/tests/parm/stretched-nest-input.nml.IN index 41cfbc56b5..4e4bd0eb68 100644 --- a/tests/parm/stretched-nest-input.nml.IN +++ b/tests/parm/stretched-nest-input.nml.IN @@ -169,6 +169,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. nstf_name = @[NSTF_NAME] xkzminv = 0.3 diff --git a/tests/parm/wam.nml.IN b/tests/parm/wam.nml.IN index 3f283c37d1..bffc64b175 100644 --- a/tests/parm/wam.nml.IN +++ b/tests/parm/wam.nml.IN @@ -170,6 +170,7 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 + iopt_trs = 2 debug = .false. levr = 90 h2o_phys = @[H2O_PHYS] diff --git a/tests/rt.conf b/tests/rt.conf index 81c8e6d8a3..09e2288acf 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,35 +2,33 @@ # S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | RUN | cpld_control_p8 | - wcoss_cray | fv3 | RUN | cpld_2threads_p8 | - wcoss_cray | | RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | RUN | cpld_mpi_p8 | - wcoss_cray | | -RUN | cpld_control_p7_rrtmgp | - wcoss_cray | fv3 | -RUN | cpld_bmark_p7 | - wcoss_cray | fv3 | -RUN | cpld_bmark_p8 | - wcoss_cray | fv3 | -RUN | cpld_bmark_mpi_p8 | - wcoss_cray | | +RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | # Waves off for restart and debug tests RUN | cpld_control_c96_p8 | - wcoss_cray | fv3 | RUN | cpld_restart_c96_p8 | - wcoss_cray | | cpld_control_c96_p8 -RUN | cpld_control_c192_p8 | - wcoss_cray | fv3 | -RUN | cpld_restart_c192_p8 | - wcoss_cray | | cpld_control_c192_p8 -RUN | cpld_control_c384_p8 | - wcoss_cray | fv3 | -RUN | cpld_restart_c384_p8 | - wcoss_cray | | cpld_control_c384_p8 +RUN | cpld_control_c192_p8 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c192_p8 | - wcoss_cray jet.intel | | cpld_control_c192_p8 -COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 | - wcoss_cray | fv3 | +RUN | cpld_control_c384_p8 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_restart_c384_p8 | - wcoss_cray jet.intel | | cpld_control_c384_p8 + +COMPILE | -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | RUN | cpld_debug_p8 | - wcoss_cray | fv3 | ################################################################################################################################################################################### # PROD tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON | | fv3 | RUN | control | | fv3 | RUN | control_decomp | | | RUN | control_2dwrtdecomp | | | @@ -52,22 +50,25 @@ RUN | control_iovr4 RUN | control_iovr5 | | fv3 | RUN | control_p8 | | fv3 | +RUN | control_p8_lndp | | fv3 | RUN | control_restart_p8 | | | control_p8 RUN | control_decomp_p8 | | | RUN | control_2threads_p8 | - wcoss_cray | | -RUN | control_p7_rrtmgp | | fv3 | + +RUN | control_p8_rrtmgp | | fv3 | RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control RUN | regional_control_2dwrtdecomp | | | RUN | regional_noquilt | | fv3 | RUN | regional_2threads | - wcoss_cray jet.intel | | -RUN | regional_hafs | | fv3 | RUN | regional_netcdf_parallel | - wcoss2 | fv3 | -RUN | regional_RRTMGP | | fv3 | +RUN | regional_3km | | fv3 | + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | +RUN | rap_rrtmgp | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | # This test is not giving the same results (also not in REPRO mode) - needs to be fixed #RUN | rap_decomp | | | @@ -79,16 +80,14 @@ RUN | rap_sfcdiff RUN | rap_sfcdiff_restart | | | rap_sfcdiff RUN | hrrr_control | | fv3 | RUN | rrfs_v1beta | | fv3 | +RUN | rrfs_v1nssl | | fv3 | +RUN | rrfs_v1nssl_nohailnoccn | | fv3 | RUN | rrfs_conus13km_hrrr_warm | | fv3 | RUN | rrfs_conus13km_radar_tten_warm | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp | | 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 | control_rrtmgp | | fv3 | -#RUN | control_rrtmgp_2threads | | | -RUN | control_rrtmgp_c192 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp | | fv3 | RUN | control_csawmg | - gaea.intel | fv3 | RUN | control_csawmgt | | fv3 | RUN | control_flake | | fv3 | @@ -98,14 +97,14 @@ RUN | control_thompson RUN | control_thompson_no_aero | - wcoss_cray | fv3 | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | RUN | control_wam | | fv3 | ################################################################################################################################################################################### # DEBUG tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v16_p8 -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | RUN | control_debug | | fv3 | RUN | control_2threads_debug | - wcoss_cray | | @@ -113,7 +112,6 @@ RUN | control_CubedSphereGrid_debug RUN | control_wrtGauss_netcdf_parallel_debug | | fv3 | RUN | control_stochy_debug | | fv3 | RUN | control_lndp_debug | | fv3 | -RUN | control_rrtmgp_debug | | fv3 | RUN | control_csawmg_debug | | fv3 | RUN | control_csawmgt_debug | | fv3 | RUN | control_ras_debug | | fv3 | @@ -127,20 +125,22 @@ RUN | control_thompson_progcld_thompson_debug RUN | regional_debug | | fv3 | -COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON | | fv3 | RUN | rap_control_debug | | fv3 | RUN | rap_unified_drag_suite_debug | | | RUN | rap_diag_debug | | fv3 | RUN | rap_cires_ugwp_debug | | fv3 | RUN | rap_unified_ugwp_debug | | | +RUN | rap_lndp_debug | | fv3 | +RUN | rap_flake_debug | | fv3 | +RUN | rap_progcld_thompson_debug | | fv3 | + +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_noah_debug | | fv3 | RUN | rap_rrtmgp_debug | | fv3 | -RUN | rap_lndp_debug | | fv3 | RUN | rap_sfcdiff_debug | | fv3 | -RUN | rap_flake_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | -RUN | rap_progcld_thompson_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | @@ -150,7 +150,7 @@ RUN | control_wam_debug # HAFS tests # ################################################################################################################################################################################### # -COMPILE | -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON | - wcoss2 | fv3 | +COMPILE | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON | - wcoss2 | fv3 | RUN | hafs_regional_atm | - wcoss2 | fv3 | RUN | hafs_regional_atm_thompson_gfdlsf | - wcoss2 | fv3 | RUN | hafs_regional_atm_ocn | - wcoss2 | fv3 | @@ -160,8 +160,13 @@ RUN | hafs_regional_1nest_atm RUN | hafs_regional_telescopic_2nests_atm | - jet.intel wcoss2 | fv3 | RUN | hafs_global_1nest_atm | - jet.intel wcoss2 | fv3 | RUN | hafs_global_multiple_4nests_atm | - jet.intel wcoss_cray wcoss2 | fv3 | +RUN | hafs_regional_specified_moving_1nest_atm | - jet.intel wcoss2 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm | - jet.intel wcoss2 hera.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet.intel wcoss2 | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet.intel wcoss2 | fv3 | +RUN | hafs_global_storm_following_1nest_atm | - jet.intel wcoss2 | fv3 | -COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss_cray wcoss2 | fv3 | +COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss_cray wcoss2 | fv3 | RUN | hafs_regional_docn | - wcoss_cray wcoss2 | fv3 | RUN | hafs_regional_docn_oisst | - wcoss_cray wcoss2 | fv3 | RUN | hafs_regional_datm_cdeps | - wcoss_cray wcoss2 | fv3 | @@ -174,6 +179,7 @@ COMPILE | -DAPP=NG-GODAS RUN | datm_cdeps_control_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_restart_cfsr | - wcoss_cray | | datm_cdeps_control_cfsr RUN | datm_cdeps_control_gefs | - wcoss_cray | fv3 | +RUN | datm_cdeps_iau_gefs | - wcoss_cray | fv3 | RUN | datm_cdeps_stochy_gefs | - wcoss_cray | fv3 | RUN | datm_cdeps_bulk_cfsr | - wcoss_cray | fv3 | @@ -184,6 +190,7 @@ RUN | datm_cdeps_mx025_gefs RUN | datm_cdeps_multiple_files_cfsr | - wcoss_cray | | RUN | datm_cdeps_3072x1536_cfsr | - wcoss_cray | fv3 | +RUN | datm_cdeps_gfs | - wcoss_cray | fv3 | COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss_cray | fv3 | RUN | datm_cdeps_debug_cfsr | - wcoss_cray | fv3 | @@ -200,6 +207,5 @@ RUN | control_c384gdas_wav # ATM-GOCART tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 | + hera.intel | fv3 | -RUN | control_atm_aerosols | + hera.intel | fv3 | - +COMPILE | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 | - wcoss_cray | fv3 | +RUN | control_atm_aerosols | - wcoss_cray | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 487a92613c..f53070f74d 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -302,12 +302,12 @@ elif [[ $MACHINE_ID = jet.* ]]; then export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages - ECFLOW_START=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + module load ecflow + ECFLOW_START=/apps/ecflow/5.5.3/bin/ecflow_start.sh QUEUE=batch COMPILE_QUEUE=batch - ACCNR=${ACCNR:-h-nems} + ACCNR="${ACCNR:-h-nems}" PARTITION=xjet DISKNM=/lfs4/BMC/wrfruc/RT dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER} @@ -356,7 +356,7 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then COMPILE_QUEUE=regular PARTITION= dprefix=/glade/scratch - DISKNM=/glade/p/ral/jntp/GMTB/ufs-weather-model/RT + DISKNM=/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT STMP=$dprefix PTMP=$dprefix SCHEDULER=pbs @@ -486,16 +486,16 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220325 +BL_DATE=20220516 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/gsl-develop-${BL_DATE}/${RT_COMPILER^^}} else RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/gsl-develop-${BL_DATE}} fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-gsl-develop-20220414} +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20220414} INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20211113 -INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210717} +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -523,7 +523,6 @@ source default_vars.sh JOB_NR=0 TEST_NR=0 COMPILE_NR=0 -COMPILE_PREV_WW3_NR='' rm -f fail_test* fail_compile* export LOG_DIR=${PATHRT}/log_$MACHINE_ID @@ -733,19 +732,8 @@ EOF ./run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${MAKE_OPT}" ${COMPILE_NR} > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 fi - # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX - # (regression test baseline directories) for REPRO or PROD runs - if [[ ${MAKE_OPT^^} =~ "-DREPRO=ON" ]]; then - RT_SUFFIX="_repro" - BL_SUFFIX="_repro" - else - RT_SUFFIX="" - BL_SUFFIX="" - fi - - if [[ ${MAKE_OPT^^} =~ "-DAPP=ATMW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=S2SW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFSW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFS-ALL" ]] ; then - COMPILE_PREV_WW3_NR=${COMPILE_NR} - fi + RT_SUFFIX="" + BL_SUFFIX="" continue @@ -791,6 +779,7 @@ EOF ( source ${PATHRT}/tests/$TEST_NAME + TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then NODES=$(( NODES + 1 )) @@ -822,6 +811,12 @@ EOF export skip_check_results=${skip_check_results} export delete_rundir=${delete_rundir} EOF + if [[ $MACHINE_ID = jet.* ]]; then + cat << EOF >> ${RUNDIR_ROOT}/run_test_${TEST_NR}.env + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +EOF + fi if [[ $ROCOTO == true ]]; then rocoto_create_run_task diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 8b60bad8fd..d8e500daea 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -2,7 +2,7 @@ # CPLD Benchmark 35d tests # ############################################################################################################################################################################### -COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 | + hera.intel | fv3 | | +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera.intel | fv3 | | RUN | cpld_bmark_p8_35d | | fv3 | | 2012010100 RUN | cpld_bmark_p8_35d | | fv3 | | 2012040100 RUN | cpld_bmark_p8_35d | | fv3 | | 2012070100 diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 4d452168ac..e98cb9cddf 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,20 +2,19 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | RUN | control | | fv3 | RUN | control_restart | | | control RUN | control_c48 | | fv3 | RUN | control_stochy | | fv3 | RUN | control_flake | | fv3 | -RUN | control_rrtmgp | | fv3 | RUN | control_thompson | | fv3 | RUN | control_thompson_no_aero | | fv3 | RUN | control_ras | | fv3 | RUN | control_p8 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | # This test is not giving the same results (also not in REPRO mode) - needs to be fixed @@ -50,7 +49,6 @@ RUN | control_thompson_debug RUN | control_thompson_no_aero_debug | | fv3 | RUN | control_thompson_extdiag_debug | | fv3 | RUN | control_thompson_progcld_thompson_debug | | fv3 | -RUN | control_rrtmgp_debug | | fv3 | RUN | control_ras_debug | | fv3 | RUN | control_stochy_debug | | fv3 | RUN | control_debug_p8 | | fv3 | @@ -63,8 +61,15 @@ RUN | control_wam_debug ################################################################################################################################################################## # Waves off -COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 | | fv3 | -RUN | cpld_control_c96_p8 | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c96_noaero_p8 | | fv3 | -COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 | | fv3 | -RUN | cpld_debug_p8 | | fv3 | +COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_debug_noaero_p8 | | fv3 | + +################################################################################################################################################################## +# CDEPS Data Atmosphere test # +################################################################################################################################################################## + +COMPILE | -DAPP=NG-GODAS | | fv3 | +RUN | datm_cdeps_control_cfsr | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 6719a5e84c..b65e222a32 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -286,7 +286,7 @@ check_results() { if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." - ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i >/dev/null 2>&1 && d=$? || d=$? + ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? if [[ $d -eq 1 ]]; then echo "....ERROR" >> ${REGRESSIONTEST_LOG} echo "....ERROR" @@ -387,14 +387,6 @@ rocoto_create_compile_task() { echo " " >> $ROCOTO_XML fi - # serialize WW3 builds. FIXME - DEP_STRING="" - if [[ ${COMPILE_PREV_WW3_NR} != '' ]]; then - if [[ ${MAKE_OPT^^} =~ "-DAPP=ATMW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=S2SW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFSW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFS-ALL" ]] ; then - DEP_STRING="" - fi - fi - NATIVE="" BUILD_CORES=8 BUILD_WALLTIME="00:30:00" @@ -410,6 +402,9 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == jet.* ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == hera.* ]]; then + BUILD_WALLTIME="01:00:00" + fi if [[ ${MACHINE_ID} == orion.* ]]; then BUILD_WALLTIME="01:00:00" fi @@ -419,7 +414,6 @@ rocoto_create_compile_task() { cat << EOF >> $ROCOTO_XML - $DEP_STRING &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_NR} compile_${COMPILE_NR} ${ACCNR} @@ -556,12 +550,6 @@ EOF echo " label job_id ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " inlimit max_builds" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - # serialize WW3 builds. FIXME - if [[ ${MAKE_OPT^^} =~ "-DAPP=ATMW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=S2SW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFSW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=HAFS-ALL" ]] ; then - if [[ ${COMPILE_PREV_WW3_NR} != '' ]]; then - echo " trigger compile_${COMPILE_PREV_WW3_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def - fi - fi } ecflow_create_run_task() { @@ -592,7 +580,7 @@ ecflow_run() { # in rare instances when UID is greater then 58500 (like Ratko's UID on theia) [[ $ECF_PORT -gt 49151 ]] && ECF_PORT=12179 - ECF_HOST=$( hostname ) + ECF_HOST="${ECF_HOST:-$HOSTNAME}" set +e ecflow_client --ping --host=${ECF_HOST} --port=${ECF_PORT} @@ -602,6 +590,11 @@ ecflow_run() { if [[ ${MACHINE_ID} == wcoss2 ]]; then # Annoying "Has NCO assigned port $ECF_PORT for use by this account? (yes/no) ". echo yes | ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server + elif [[ ${MACHINE_ID} == jet.* ]]; then + module load ecflow + echo "Using special Jet ECFLOW start procedure" + MYCOMM="bash -l -c \"module load ecflow && ${ECFLOW_START} -d ${RUNDIR_ROOT}/ecflow_server\"" + ssh $ECF_HOST "${MYCOMM}" else ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server fi diff --git a/tests/rt_weekly.conf b/tests/rt_weekly.conf index 85e25b683b..ab847ab7ef 100644 --- a/tests/rt_weekly.conf +++ b/tests/rt_weekly.conf @@ -2,17 +2,22 @@ # Weekly tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON | | fv3 | -RUN | control_c768 | - wcoss_cray | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON | + hera.intel | fv3 | +RUN | control_c768 | + hera.intel | fv3 | # CPLD Benchmark 35d tests # The length of forecast is 5 days for the weekly tests. -COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 | + hera.intel | fv3 | | -RUN | cpld_bmark_p8_35d | | fv3 | | 2012010100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2012040100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2012070100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2012100100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2013010100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2013040100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2013070100 -RUN | cpld_bmark_p8_35d | | fv3 | | 2013100100 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera.intel | fv3 | | +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012010100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012040100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012070100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012100100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013010100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013040100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013070100 +RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013100100 +# The coupled p8 tests +COMPILE | -DAPP=S2SW -DUFS_GOCART=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + jet.intel | fv3 | +RUN | cpld_bmark_p8 | + jet.intel | fv3 | +RUN | cpld_control_c192_p8 | + jet.intel | fv3 | +RUN | cpld_control_c384_p8 | + jet.intel | fv3 | diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1b690989a8..ed7ae7ce11 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -89,7 +89,7 @@ cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt # End compile job ################################################################################ -echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo " $( date +%s ), 1" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt elapsed=$SECONDS echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 91c75e53f0..4d3ed3bb8b 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -23,6 +23,60 @@ write_fail_test() { exit 1 } +function compute_petbounds() { + + # each test MUST define ${COMPONENT}_tasks variable for all components it is using + # and MUST NOT define those that it's not using or set the value to 0. + + # ATM is a special case since it is running on the sum of compute and io tasks. + # CHM component and mediator are running on ATM compute tasks only. + + local n=0 + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds + + # ATM + ATM_io_tasks=${ATM_io_tasks:-0} + if [[ $((ATM_compute_tasks + ATM_io_tasks)) -gt 0 ]]; then + atm_petlist_bounds="${n} $((n + ATM_compute_tasks + ATM_io_tasks -1))" + n=$((n + ATM_compute_tasks + ATM_io_tasks)) + fi + + # OCN + if [[ ${OCN_tasks:-0} -gt 0 ]]; then + ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" + n=$((n + OCN_tasks)) + fi + + # ICE + if [[ ${ICE_tasks:-0} -gt 0 ]]; then + ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" + n=$((n + ICE_tasks)) + fi + + # WAV + if [[ ${WAV_tasks:-0} -gt 0 ]]; then + wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" + n=$((n + WAV_tasks)) + fi + + # CHM + chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # MED + med_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + UFS_tasks=${n} + + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + +} + if [[ $# != 5 ]]; then echo "Usage: $0 PATHRT RUNDIR_ROOT TEST_NAME TEST_NR COMPILE_NR" exit 1 @@ -107,8 +161,25 @@ fi atparse < ${PATHRT}/parm/${MODEL_CONFIGURE:-model_configure.IN} > model_configure +if [[ $DATM_CDEPS = 'false' ]]; then + if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then + ATM_compute_tasks=$((INPES * JNPES * NTILES)) + fi + if [[ $QUILTING = '.true.' ]]; then + ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) + fi +fi + +compute_petbounds + atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure +# remove after all tests pass +if [[ $TASKS -ne $UFS_tasks ]]; then + echo "$TASKS -ne $UFS_tasks " + exit 1 +fi + if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02 NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02 @@ -213,26 +284,20 @@ if [[ $DOCN_CDEPS = 'true' ]]; then atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams fi +TPN=$(( TPN / THRD )) +if (( TASKS < TPN )); then + TPN=${TASKS} +fi +NODES=$(( TASKS / TPN )) +if (( NODES * TPN < TASKS )); then + NODES=$(( NODES + 1 )) +fi + if [[ $SCHEDULER = 'pbs' ]]; then - NODES=$(( TASKS / TPN )) - if (( NODES * TPN < TASKS )); then - NODES=$(( NODES + 1 )) - fi atparse < $PATHRT/fv3_conf/fv3_qsub.IN > job_card elif [[ $SCHEDULER = 'slurm' ]]; then - NODES=$(( TASKS / TPN )) - if (( NODES * TPN < TASKS )); then - NODES=$(( NODES + 1 )) - fi atparse < $PATHRT/fv3_conf/fv3_slurm.IN > job_card elif [[ $SCHEDULER = 'lsf' ]]; then - if (( TASKS < TPN )); then - TPN=${TASKS} - fi - NODES=$(( TASKS / TPN )) - if (( NODES * TPN < TASKS )); then - NODES=$(( NODES + 1 )) - fi atparse < $PATHRT/fv3_conf/fv3_bsub.IN > job_card fi @@ -281,7 +346,7 @@ fi # End test ################################################################################ -echo " $( date +%s )" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt +echo " $( date +%s ), ${NODES}" >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt ################################################################################ # Remove RUN_DIRs if they are no longer needed by other tests diff --git a/tests/tests/control_2threads b/tests/tests/control_2threads index eee66c827e..64269d3dd9 100644 --- a/tests/tests/control_2threads +++ b/tests/tests/control_2threads @@ -65,7 +65,6 @@ export IOVR=3 export THRD=2 export TASKS=$TASKS_thrd -export TPN=$TPN_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/control_2threads_debug b/tests/tests/control_2threads_debug index fa4c9b89df..62f8309ab3 100644 --- a/tests/tests/control_2threads_debug +++ b/tests/tests/control_2threads_debug @@ -30,7 +30,6 @@ export OUTPUT_FH="0 1" export THRD=2 export TASKS=$TASKS_thrd -export TPN=$TPN_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 12216fd348..0df0d55444 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -58,12 +58,10 @@ export SMONTH=03 export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export THRD=2 export TASKS=$TASKS_thrd -export TPN=$TPN_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 @@ -79,11 +77,11 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 # P8 export DDDMP=0.1 @@ -98,17 +96,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -139,7 +136,14 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 @@ -148,8 +152,17 @@ export MOM6_RESTART_SETTING=n # P8 (not used for standalone) export USE_CICE_ALB=.false. +export WRITE_NSFLIP=.true. + export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p8 +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_atm_aerosols b/tests/tests/control_atm_aerosols index fb70757a03..3adbeed54e 100644 --- a/tests/tests/control_atm_aerosols +++ b/tests/tests/control_atm_aerosols @@ -73,9 +73,7 @@ export DNATS=3 export CPL=.true. export CPLCHM=.true. export atm_model='fv3' -export atm_petlist_bounds="0 149" export chm_model='gocart' -export chm_petlist_bounds="0 143" export coupling_interval_sec=${DT_ATMOS} export NEMS_CONFIGURE="nems.configure.atm_aerosols.IN" diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav index 6313fb54d7..99bb848da8 100644 --- a/tests/tests/control_atmwav +++ b/tests/tests/control_atmwav @@ -70,14 +70,12 @@ export WW3RSTDTHR=3 export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" export TASKS=$TASKS_cpl_atmw -export TPN=$TPN_cpl_atmw export INPES=$INPES_cpl_atmw export JNPES=$JNPES_cpl_atmw export THRD=$THRD_cpl_atmw export WRTTASK_PER_GROUP=$WPG_cpl_atmw -export atm_petlist_bounds=$APB_cpl_atmw -export wav_petlist_bounds=$WPB_cpl_atmw +WAV_tasks=${WAV_tasks_atmw} export CPL=.true. export CPLWAV=.true. diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 4ae6066785..6ca93eb0ab 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -19,7 +19,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export TASKS=${TASKS_c384} -export TPN=${TPN_c384} +export THRD=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index 102e91e8e3..b051fb7bf1 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -51,7 +51,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export TASKS=${TASKS_c384} -export TPN=${TPN_c384} +export THRD=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 diff --git a/tests/tests/control_c384gdas_debug b/tests/tests/control_c384gdas_debug index 94f180fb20..3f883ef459 100644 --- a/tests/tests/control_c384gdas_debug +++ b/tests/tests/control_c384gdas_debug @@ -47,7 +47,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export TASKS=${TASKS_c384} -export TPN=${TPN_c384} +export THRD=${THRD_c384} export INPES=${INPES_c384} export JNPES=${JNPES_c384} export WRITE_GROUP=1 diff --git a/tests/tests/control_c384gdas_wav b/tests/tests/control_c384gdas_wav index 5ba9dbc4a3..f40521a9e6 100644 --- a/tests/tests/control_c384gdas_wav +++ b/tests/tests/control_c384gdas_wav @@ -62,14 +62,12 @@ export NPY=385 export DT_ATMOS=225 export TASKS=$TASKS_cpl_atmw_gdas -export TPN=$TPN_cpl_atmw_gdas export INPES=$INPES_cpl_atmw_gdas export JNPES=$JNPES_cpl_atmw_gdas export THRD=$THRD_cpl_atmw_gdas export WRTTASK_PER_GROUP=$WPG_cpl_atmw_gdas -export atm_petlist_bounds=$APB_cpl_atmw_gdas -export wav_petlist_bounds=$WPB_cpl_atmw_gdas +WAV_tasks=${WAV_tasks_atmw_gdas} export SYEAR=2021 export SMONTH=03 diff --git a/tests/tests/control_c48 b/tests/tests/control_c48 index a85b83b963..b0d02e4533 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -47,7 +47,6 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export TASKS=8 -export TPN=8 export INPES=1 export JNPES=1 export WRTTASK_PER_GROUP=2 diff --git a/tests/tests/control_c768 b/tests/tests/control_c768 index f488ee962e..4d69d61a80 100644 --- a/tests/tests/control_c768 +++ b/tests/tests/control_c768 @@ -19,10 +19,9 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export TASKS=${TASKS_c768} -export TPN=${TPN_c768} export INPES=${INPES_c768} export JNPES=${JNPES_c768} -export THRD=2 +export THRD=${THRD_c768} export WRITE_GROUP=2 export WRTTASK_PER_GROUP=80 export FHMAX=03 diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 77cc239bbb..3fbd35ad81 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -22,7 +22,6 @@ export SMONTH=03 export SDAY=22 export SHOUR=06 export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' export FHMAX=1 export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. @@ -38,11 +37,11 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 # P8 export DDDMP=0.1 @@ -57,17 +56,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -98,7 +96,14 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 @@ -107,8 +112,17 @@ export MOM6_RESTART_SETTING=n # P8 (not used for standalone) export USE_CICE_ALB=.false. +export WRITE_NSFLIP=.true. + export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p8 +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 480f4a166f..390ee3d5b0 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -59,8 +59,8 @@ export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=0 export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' export INPES=6 export JNPES=4 @@ -76,11 +76,11 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 # P8 export DDDMP=0.1 @@ -95,17 +95,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -136,7 +135,14 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 @@ -145,8 +151,17 @@ export MOM6_RESTART_SETTING=n # P8 (not used for standalone) export USE_CICE_ALB=.false. +export WRITE_NSFLIP=.true. + export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p8 +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_lndp b/tests/tests/control_lndp index 68fe785443..51366f41ab 100644 --- a/tests/tests/control_lndp +++ b/tests/tests/control_lndp @@ -51,3 +51,4 @@ export LNDP_TYPE=2 export N_VAR_LNDP=2 export LNDP_VAR_LIST="'smc' , 'vgf'," export LNDP_PRT_LIST='0.2,0.1,' +export LNDP_MODEL_TYPE=1 diff --git a/tests/tests/control_lndp_debug b/tests/tests/control_lndp_debug index 7b2aa8ebaa..b47630da54 100644 --- a/tests/tests/control_lndp_debug +++ b/tests/tests/control_lndp_debug @@ -44,6 +44,7 @@ export ISEED_CA=1 export NSMOOTH=1 export CA_AMPLITUDE=0.35 export LNDP_TYPE=2 +export LNDP_MODEL_TYPE=1 export N_VAR_LNDP=2 export LNDP_VAR_LIST="'smc' , 'vgf'," export LNDP_PRT_LIST='0.2,0.1,' diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 12c3bcc827..5aa8171bb2 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -63,7 +63,6 @@ export SDAY=22 export SHOUR=06 export RESTART_INTERVAL="12 -1" export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' @@ -78,11 +77,11 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 # P8 export DDDMP=0.1 @@ -97,17 +96,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -138,7 +136,14 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 @@ -147,8 +152,17 @@ export MOM6_RESTART_SETTING=n # P8 (not used for standalone) export USE_CICE_ALB=.false. +export WRITE_NSFLIP=.true. + export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p8 +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp new file mode 100644 index 0000000000..b97b977ae2 --- /dev/null +++ b/tests/tests/control_p8_lndp @@ -0,0 +1,146 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_lndp + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + sfcf048.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + atmf048.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSFLX.GrbF48 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + GFSPRS.GrbF48" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export FHMAX=48 +export OUTPUT_FH='0 21 24 48' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.true. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_gfsv16_merra2 +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN +export LNDP_TYPE=2 +export N_VAR_LNDP=1 +export LNDP_VAR_LIST="'vgf'," +export LNDP_PRT_LIST='0.05,' +export LNDP_MODEL_TYPE=1 + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_p7_rrtmgp b/tests/tests/control_p8_rrtmgp similarity index 85% rename from tests/tests/control_p7_rrtmgp rename to tests/tests/control_p8_rrtmgp index f2fc14b812..4452e1cdea 100644 --- a/tests/tests/control_p7_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -1,12 +1,12 @@ ############################################################################### # -# Global control test GFSv16 atmosphere only at C96L127, P7 configuration + RRTMGP +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration # ############################################################################### export TEST_DESCR="Compare global control results with previous trunk version" -export CNTL_DIR=control_p7_rrtmgp +export CNTL_DIR=control_p8_rrtmgp export LIST_FILES="sfcf000.nc \ sfcf021.nc \ @@ -63,11 +63,10 @@ export SDAY=22 export SHOUR=06 export RESTART_INTERVAL="12 -1" export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export OUTPUT_FH='0 21 24' -#P7 default +# P7 default export IALB=2 export IEMS=2 export LSM=2 @@ -76,12 +75,15 @@ export IOPT_CRS=2 export IOPT_RAD=3 export IOPT_ALB=1 export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 +# P8 export DDDMP=0.1 # P7 Merra2 Aerosols & NSST @@ -94,17 +96,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -135,22 +136,33 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 -#P7 -export IOPT_SFC=1 +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing -export USE_CICE_ALB=.false. export MIN_SEAICE=0.15 export FRAC_GRID=.true. export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. -# RRTMGP -export DO_RRTMGP=.true. +export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p7_rrtmgp +export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 -export INPUT_NML=cpld_control_rrtmgp.nml.IN +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 33e8645cbf..66781b3863 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -76,11 +76,11 @@ export IOPT_ALB=1 export IOPT_STC=3 # P8 export IOPT_SFC=3 +export IOPT_TRS=2 # FV3 P7 settings export D2_BG_K1=0.20 export D2_BG_K2=0.04 -export DZ_MIN=2 export PSM_BC=1 # P8 export DDDMP=0.1 @@ -95,17 +95,16 @@ export LSEASPRAY=.true. # P7 UGWP1 export GWD_OPT=2 -export DO_UGWP_V1=.true. -export KNOB_UGWP_VERSION=1 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 export KNOB_UGWP_NSLOPE=1 -export DO_UGWP_V0=.false. -export DO_GSL_DRAG_LS_BL=.true. +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. -export CDMBWD='1.0,2.2,1.0,1.0' # P7 CA export DO_CA=.true. @@ -136,7 +135,14 @@ export FNVMXC="'C96.vegetation_greenness.tileX.nc'" export FNSLPC="'C96.slope_type.tileX.nc'" export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" export LANDICE=".false." -export FSICL=99999 +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 #required for NML.IN sharing export MIN_SEAICE=0.15 @@ -145,8 +151,17 @@ export MOM6_RESTART_SETTING=n # P8 (not used for standalone) export USE_CICE_ALB=.false. +export WRITE_NSFLIP=.true. + export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_p8 +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke export DIAG_TABLE=diag_table_gfsv16_merra2 # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN + +# P8 RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. diff --git a/tests/tests/control_rrtmgp b/tests/tests/control_rrtmgp index bb95ba9923..d755895072 100644 --- a/tests/tests/control_rrtmgp +++ b/tests/tests/control_rrtmgp @@ -30,8 +30,11 @@ export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export DO_RRTMGP=.true. - export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_2threads b/tests/tests/control_rrtmgp_2threads index 19106c4386..6e71ef2481 100644 --- a/tests/tests/control_rrtmgp_2threads +++ b/tests/tests/control_rrtmgp_2threads @@ -26,15 +26,17 @@ export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export DO_RRTMGP=.true. - export THRD=2 export TASKS=$TASKS_thrd -export TPN=$TPN_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_rrtmgp_c192 b/tests/tests/control_rrtmgp_c192 index ace17585b4..fae337642a 100644 --- a/tests/tests/control_rrtmgp_c192 +++ b/tests/tests/control_rrtmgp_c192 @@ -36,13 +36,16 @@ export IMO=768 export JMO=384 export FHMAX=12 -export DO_RRTMGP=.true. - export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_debug b/tests/tests/control_rrtmgp_debug index 8f7f12921a..1950d679d6 100644 --- a/tests/tests/control_rrtmgp_debug +++ b/tests/tests/control_rrtmgp_debug @@ -27,8 +27,11 @@ export IAER=5111 export FHMAX=1 export OUTPUT_FH="0 1" -export DO_RRTMGP=.true. - export FV3_RUN=control_run.IN +export INPUT_NML=control.nml.IN + +# RRTMGP export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export INPUT_NML=control_rrtmgp.nml.IN +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index addc411bdf..a2acc0c1dc 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -2,7 +2,7 @@ # cpld_2threads P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - 2 threads" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - 2 threads" export CNTL_DIR="cpld_control_p8" @@ -53,6 +53,7 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ 20210323.060000.out_grd.glo_1deg \ 20210323.060000.out_pnt.points \ 20210323.060000.restart.glo_1deg" @@ -64,23 +65,26 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export TASKS=$TASKS_cpl_thrd -export TPN=$TPN_cpl_thrd export INPES=$INPES_cpl_thrd export JNPES=$JNPES_cpl_thrd export THRD=$THRD_cpl_thrd export WRTTASK_PER_GROUP=$WPG_cpl_thrd -export med_petlist_bounds=$MPB_cpl_thrd -export atm_petlist_bounds=$APB_cpl_thrd -export ocn_petlist_bounds=$OPB_cpl_thrd -export ice_petlist_bounds=$IPB_cpl_thrd -export wav_petlist_bounds=$WPB_cpl_thrd +OCN_tasks=$OCN_tasks_cpl_thrd +ICE_tasks=$ICE_tasks_cpl_thrd +WAV_tasks=$WAV_tasks_cpl_thrd -export NPROC_ICE=$NPROC_ICE_cpl_thrd +export NPROC_ICE=${ICE_tasks} export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export eps_imesh=2.5e-1 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark_mpi_p8 b/tests/tests/cpld_bmark_mpi_p8 deleted file mode 100644 index 2bc16f65e9..0000000000 --- a/tests/tests/cpld_bmark_mpi_p8 +++ /dev/null @@ -1,142 +0,0 @@ -# -# cpld_bmark_p8 test WW3 mpi -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P8 test - WW3 MPI" - -export CNTL_DIR="cpld_bmark_p8" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" - -export_fv3 -export_cpl - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export RESTART_INTERVAL="${RESTART_N} -1" - -export TASKS=$TASKS_cpl_bmrk_mpi -export TPN=$TPN_cpl_bmrk_mpi -export INPES=$INPES_cpl_bmrk_mpi -export JNPES=$JNPES_cpl_bmrk_mpi -export THRD=$THRD_cpl_bmrk_mpi -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk_mpi - -export med_petlist_bounds=$MPB_cpl_bmrk_mpi -export atm_petlist_bounds=$APB_cpl_bmrk_mpi -export ocn_petlist_bounds=$OPB_cpl_bmrk_mpi -export ice_petlist_bounds=$IPB_cpl_bmrk_mpi -export wav_petlist_bounds=$WPB_cpl_bmrk_mpi - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk_mpi -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark_p7 b/tests/tests/cpld_bmark_p7 deleted file mode 100644 index 445438d934..0000000000 --- a/tests/tests/cpld_bmark_p7 +++ /dev/null @@ -1,147 +0,0 @@ -# -# cpld_bmark_p7 test -# -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P7 test" - -export CNTL_DIR="cpld_bmark_p7" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" - -export_fv3 -export_cpl - -export SYEAR=2013 -export SMONTH=04 -export SDAY=01 -export SHOUR=00 -export SECS=`expr $SHOUR \* 3600` -export BMIC=.true. - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export RESTART_INTERVAL="${RESTART_N} -1" - -export TASKS=$TASKS_cpl_bmrk -export TPN=$TPN_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk - -export med_petlist_bounds=$MPB_cpl_bmrk -export atm_petlist_bounds=$APB_cpl_bmrk -export ocn_petlist_bounds=$OPB_cpl_bmrk -export ice_petlist_bounds=$IPB_cpl_bmrk -export wav_petlist_bounds=$WPB_cpl_bmrk - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r - -#P7 -export USE_CICE_ALB=.false. -export MIN_SEAICE=1.0e-11 -export IOPT_SFC=1 - -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END -export RST_BEG=$RUN_BEG -export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 46cdd1ca6f..61caec1abf 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -1,12 +1,13 @@ # # cpld_bmark_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P8 test" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-GOCART-WW3 system - C384L127 MX025 - Benchmark P8 test" export CNTL_DIR="cpld_bmark_p8" export LIST_FILES="sfcf006.nc \ atmf006.nc \ + gocart.inst_aod.20130401_0600z.nc4 \ 20130401.060000.out_grd.gwes_30m \ 20130401.060000.out_pnt.points \ RESTART/coupler.res \ @@ -63,18 +64,19 @@ export FHMAX=6 export RESTART_N=`expr ${FHMAX} - ${FHROT}` export RESTART_INTERVAL="${RESTART_N} -1" -export TASKS=$TASKS_cpl_bmrk -export TPN=$TPN_cpl_bmrk -export INPES=$INPES_cpl_bmrk -export JNPES=$JNPES_cpl_bmrk -export THRD=$THRD_cpl_bmrk -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk +export WLCLK=45 -export med_petlist_bounds=$MPB_cpl_bmrk -export atm_petlist_bounds=$APB_cpl_bmrk -export ocn_petlist_bounds=$OPB_cpl_bmrk -export ice_petlist_bounds=$IPB_cpl_bmrk -export wav_petlist_bounds=$WPB_cpl_bmrk +export DOMAINS_STACK_SIZE=16000000 + +export TASKS=$TASKS_cpl_bmrk_aero +export INPES=$INPES_cpl_bmrk_aero +export JNPES=$JNPES_cpl_bmrk_aero +export THRD=$THRD_cpl_bmrk_aero +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk_aero + +OCN_tasks=$OCN_tasks_cpl_bmrk_aero +ICE_tasks=$ICE_tasks_cpl_bmrk_aero +WAV_tasks=$WAV_tasks_cpl_bmrk_aero # atm/ocn/ice resolution export ATMRES=C384 @@ -89,7 +91,7 @@ export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_bmrk +export NPROC_ICE=${ICE_tasks} export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -100,8 +102,10 @@ export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 +export CPLCHM=.true. + # nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} @@ -124,6 +128,9 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c384} +export DT_INNER=${DT_INNER_c384} + export MOM6_RIVER_RUNOFF=True export MOM6_RESTART_SETTING=r @@ -140,3 +147,4 @@ export RST_END=$RUN_END export RST_2_END=$RUN_END export FV3_RUN=cpld_control_run.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 38c2ceb6b6..2e9d1bcb24 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -23,17 +23,14 @@ export RESTART_N=`expr ${FHMAX} - ${FHROT}` export WLCLK=120 export TASKS=1700 -export TPN=$TPN_cpl_thrd export INPES=12 export JNPES=16 export THRD=2 export WRTTASK_PER_GROUP=88 -export med_petlist_bounds="0 299" -export atm_petlist_bounds="0 1239" -export ocn_petlist_bounds="1240 1459" -export ice_petlist_bounds="1460 1539" -export wav_petlist_bounds="1540 1699" +OCN_tasks=220 +ICE_tasks=80 +WAV_tasks=160 # atm/ocn/ice resolution export ATMRES=C384 @@ -83,6 +80,9 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c384} +export DT_INNER=${DT_INNER_c384} + export MOM6_RIVER_RUNOFF=True export MOM6_RESTART_SETTING=r @@ -98,4 +98,6 @@ export RST_2_BEG=$RUN_BEG export RST_END=$RUN_END export RST_2_END=$RUN_END +export DIAG_TABLE=diag_table_template + export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index 5d2f40b567..ef4083c513 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -1,7 +1,7 @@ # -# cpld_control_c192_p8 test +# cpld_control_c192_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - P8 test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C192 MX050 - P8 test" export CNTL_DIR="cpld_control_c192_p8" @@ -17,6 +17,7 @@ export LIST_FILES="sfcf036.tile1.nc \ atmf036.tile4.nc \ atmf036.tile5.nc \ atmf036.tile6.nc \ + gocart.inst_aod.20210323_1800z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -61,17 +62,16 @@ export FHMAX=36 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" +export DOMAINS_STACK_SIZE=16000000 + export TASKS=$TASKS_cpl_c192 -export TPN=$TPN_cpl_c192 export INPES=$INPES_cpl_c192 export JNPES=$JNPES_cpl_c192 export THRD=$THRD_cpl_c192 export WRTTASK_PER_GROUP=$WPG_cpl_c192 -export med_petlist_bounds=$MPB_cpl_c192 -export atm_petlist_bounds=$APB_cpl_c192 -export ocn_petlist_bounds=$OPB_cpl_c192 -export ice_petlist_bounds=$IPB_cpl_c192 +OCN_tasks=$OCN_tasks_cpl_c192 +ICE_tasks=$ICE_tasks_cpl_c192 # atm/ocn/ice resolution export ATMRES=C192 @@ -85,7 +85,7 @@ export OCNRES=050 export ICERES=0.50 export NX_GLB=720 export NY_GLB=576 -export NPROC_ICE=$NPROC_ICE_cpl_c192 +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -120,10 +120,15 @@ export FNVMXC="'C192.vegetation_greenness.tileX.nc'" export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c192} +export DT_INNER=${DT_INNER_c192} + export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c384_p8 b/tests/tests/cpld_control_c384_p8 index fd37f3641e..8ec4e40198 100644 --- a/tests/tests/cpld_control_c384_p8 +++ b/tests/tests/cpld_control_c384_p8 @@ -1,12 +1,13 @@ # # cpld_control_c384_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 test " +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 test " export CNTL_DIR="cpld_control_c384_p8" export LIST_FILES="sfcf006.nc \ atmf006.nc \ + gocart.inst_aod.20210322_1200z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -56,17 +57,16 @@ export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH="3 -1" export FHZERO=3 +export DOMAINS_STACK_SIZE=16000000 + export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 export JNPES=$JNPES_cpl_c384 export THRD=$THRD_cpl_c384 export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 +OCN_tasks=$OCN_tasks_cpl_c384 +ICE_tasks=$ICE_tasks_cpl_c384 # atm/ocn/ice resolution export ATMRES=C384 @@ -81,7 +81,7 @@ export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_c384 +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -116,10 +116,15 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c384} +export DT_INNER=${DT_INNER_c384} + export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_p7_rrtmgp b/tests/tests/cpld_control_c96_noaero_p8 similarity index 62% rename from tests/tests/cpld_control_p7_rrtmgp rename to tests/tests/cpld_control_c96_noaero_p8 index 38b01f41b7..0c57934c86 100644 --- a/tests/tests/cpld_control_p7_rrtmgp +++ b/tests/tests/cpld_control_c96_noaero_p8 @@ -1,12 +1,24 @@ # -# cpld_control P7 test with RRTMGP +# cpld_control C96 noaero P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 + RRTMGP" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" -export CNTL_DIR="cpld_control_p7_rrtmgp" +export CNTL_DIR="cpld_control_c96_noaero_p8" -export LIST_FILES="sfcf024.tile1.nc \ +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ sfcf024.tile2.nc \ sfcf024.tile3.nc \ sfcf024.tile4.nc \ @@ -52,24 +64,40 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/sfc_data.tile6.nc \ RESTART/MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +#TODO: add comparison of CA restart files? export_fv3 export_cpl export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TASKS=$TASKS_cpl_c96 +export INPES=$INPES_cpl_c96 +export JNPES=$JNPES_cpl_c96 +export THRD=$THRD_cpl_c96 +export WRTTASK_PER_GROUP=$WPG_cpl_c96 + +OCN_tasks=$OCN_tasks_cpl_c96 +ICE_tasks=$ICE_tasks_cpl_c96 +export NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False export eps_imesh=2.5e-1 -#P7 -export USE_CICE_ALB=.false. -export MIN_SEAICE=1.0e-11 -export IOPT_SFC=1 + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export DIAG_TABLE=diag_table_template +export NEMS_CONFIGURE=nems.configure.cpld.IN export FV3_RUN=cpld_control_run.IN -export DO_RRTMGP=.true. -export CCPP_SUITE=FV3_GFS_v16_coupled_p7_rrtmgp -export INPUT_NML=cpld_control_rrtmgp.nml.IN diff --git a/tests/tests/cpld_control_c96_p8 b/tests/tests/cpld_control_c96_p8 index 8808fff95b..db4ac9d9ad 100644 --- a/tests/tests/cpld_control_c96_p8 +++ b/tests/tests/cpld_control_c96_p8 @@ -2,7 +2,7 @@ # cpld_control C96 P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100" export CNTL_DIR="cpld_control_c96_p8" @@ -30,6 +30,7 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -76,27 +77,28 @@ export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' export TASKS=$TASKS_cpl_c96 -export TPN=$TPN_cpl_c96 export INPES=$INPES_cpl_c96 export JNPES=$JNPES_cpl_c96 export THRD=$THRD_cpl_c96 export WRTTASK_PER_GROUP=$WPG_cpl_c96 -export NPROC_ICE=$NPROC_ICE_cpl_c96 +OCN_tasks=$OCN_tasks_cpl_c96 +ICE_tasks=$ICE_tasks_cpl_c96 + +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` -export med_petlist_bounds=$MPB_cpl_c96 -export atm_petlist_bounds=$APB_cpl_c96 -export ocn_petlist_bounds=$OPB_cpl_c96 -export ice_petlist_bounds=$IPB_cpl_c96 - export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 23d7bfc350..40c27e2c5b 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -2,7 +2,7 @@ # cpld_control P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" export CNTL_DIR="cpld_control_p8" @@ -65,6 +65,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ 20210323.060000.out_grd.glo_1deg \ 20210323.060000.out_pnt.points \ 20210323.060000.restart.glo_1deg" @@ -72,10 +73,20 @@ export LIST_FILES="sfcf021.tile1.nc \ export_fv3 export_cpl +OCN_tasks=$OCN_tasks_cpl_dflt +ICE_tasks=$ICE_tasks_cpl_dflt +WAV_tasks=$WAV_tasks_cpl_dflt + export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + export eps_imesh=2.5e-1 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 new file mode 100644 index 0000000000..74f2d6c82b --- /dev/null +++ b/tests/tests/cpld_debug_noaero_p8 @@ -0,0 +1,90 @@ +# +# cpld_debug_noaero_p8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - P8 debug" + +export CNTL_DIR="cpld_debug_noaero_p8" + +export LIST_FILES="sfcf006.tile1.nc \ + sfcf006.tile2.nc \ + sfcf006.tile3.nc \ + sfcf006.tile4.nc \ + sfcf006.tile5.nc \ + sfcf006.tile6.nc \ + atmf006.tile1.nc \ + atmf006.tile2.nc \ + atmf006.tile3.nc \ + atmf006.tile4.nc \ + atmf006.tile5.nc \ + atmf006.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2021-03-22-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc" + +export_fv3 +export_cpl + +export DAYS=0.25 +export FHMAX=6 + +export RESTART_N=${FHMAX} +export eps_imesh=2.5e-1 + +export TASKS=$TASKS_cpl_c96 +export INPES=$INPES_cpl_c96 +export JNPES=$JNPES_cpl_c96 +export THRD=$THRD_cpl_c96 +export WRTTASK_PER_GROUP=$WPG_cpl_c96 + +OCN_tasks=$OCN_tasks_cpl_c96 +ICE_tasks=$ICE_tasks_cpl_c96 + +export NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False + +export DIAG_TABLE=diag_table_template +export NEMS_CONFIGURE=nems.configure.cpld.IN + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 323c148f7e..47179318a6 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -2,7 +2,7 @@ # cpld_debug_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - P8 debug" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100 - P8 debug" export CNTL_DIR="cpld_debug_p8" @@ -18,6 +18,7 @@ export LIST_FILES="sfcf006.tile1.nc \ atmf006.tile4.nc \ atmf006.tile5.nc \ atmf006.tile6.nc \ + gocart.inst_aod.20210322_1200z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -62,28 +63,31 @@ export FHMAX=6 export RESTART_N=${FHMAX} export eps_imesh=2.5e-1 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export TASKS=$TASKS_cpl_c96 -export TPN=$TPN_cpl_c96 export INPES=$INPES_cpl_c96 export JNPES=$JNPES_cpl_c96 export THRD=$THRD_cpl_c96 export WRTTASK_PER_GROUP=$WPG_cpl_c96 -export NPROC_ICE=$NPROC_ICE_cpl_c96 +OCN_tasks=$OCN_tasks_cpl_c96 +ICE_tasks=$ICE_tasks_cpl_c96 + +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` -export med_petlist_bounds=$MPB_cpl_c96 -export atm_petlist_bounds=$APB_cpl_c96 -export ocn_petlist_bounds=$OPB_cpl_c96 -export ice_petlist_bounds=$IPB_cpl_c96 - export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 7b762239fd..39e95ec7dc 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -2,7 +2,7 @@ # cpld_decomp P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - decomp test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - decomp test" export CNTL_DIR="cpld_control_p8" @@ -53,6 +53,7 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ 20210323.060000.out_grd.glo_1deg \ 20210323.060000.out_pnt.points \ 20210323.060000.restart.glo_1deg" @@ -64,23 +65,26 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export TASKS=$TASKS_cpl_dcmp -export TPN=$TPN_cpl_dcmp export INPES=$INPES_cpl_dcmp export JNPES=$JNPES_cpl_dcmp export THRD=$THRD_cpl_dcmp export WRTTASK_PER_GROUP=$WPG_cpl_dcmp -export med_petlist_bounds=$MPB_cpl_dcmp -export atm_petlist_bounds=$APB_cpl_dcmp -export ocn_petlist_bounds=$OPB_cpl_dcmp -export ice_petlist_bounds=$IPB_cpl_dcmp -export wav_petlist_bounds=$WPB_cpl_dcmp +OCN_tasks=$OCN_tasks_cpl_dcmp +ICE_tasks=$ICE_tasks_cpl_dcmp +WAV_tasks=$WAV_tasks_cpl_dcmp -export NPROC_ICE=$NPROC_ICE_cpl_dcmp +export NPROC_ICE=${ICE_tasks} export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + export eps_imesh=2.5e-1 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 0df728fb55..11bf3a64a1 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -2,7 +2,7 @@ # cpld_mpi P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - change mpi task test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - change mpi task test" export CNTL_DIR="cpld_control_p8" @@ -53,6 +53,7 @@ export LIST_FILES="sfcf024.tile1.nc \ RESTART/MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ 20210323.060000.out_grd.glo_1deg \ 20210323.060000.out_pnt.points \ 20210323.060000.restart.glo_1deg" @@ -64,23 +65,26 @@ export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export TASKS=$TASKS_cpl_mpi -export TPN=$TPN_cpl_mpi export INPES=$INPES_cpl_mpi export JNPES=$JNPES_cpl_mpi export THRD=$THRD_cpl_mpi export WRTTASK_PER_GROUP=$WPG_cpl_mpi -export med_petlist_bounds=$MPB_cpl_mpi -export atm_petlist_bounds=$APB_cpl_mpi -export ocn_petlist_bounds=$OPB_cpl_mpi -export ice_petlist_bounds=$IPB_cpl_mpi -export wav_petlist_bounds=$WPB_cpl_mpi +OCN_tasks=$OCN_tasks_cpl_mpi +ICE_tasks=$ICE_tasks_cpl_mpi +WAV_tasks=$WAV_tasks_cpl_mpi -export NPROC_ICE=$NPROC_ICE_cpl_mpi +export NPROC_ICE=${ICE_tasks} export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART + export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index f143104a2a..ed152ee35e 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -1,7 +1,7 @@ # -# cpld_restart_c192_p8 test +# cpld_restart_c192_p8_aero test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C192 MX050 - 24h P8 restart test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C192 MX050 - 24h P8 restart test" export CNTL_DIR="cpld_control_c192_p8" @@ -17,6 +17,7 @@ export LIST_FILES="sfcf036.tile1.nc \ atmf036.tile4.nc \ atmf036.tile5.nc \ atmf036.tile6.nc \ + gocart.inst_aod.20210323_1800z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -65,17 +66,16 @@ export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export DOMAINS_STACK_SIZE=16000000 + export TASKS=$TASKS_cpl_c192 -export TPN=$TPN_cpl_c192 export INPES=$INPES_cpl_c192 export JNPES=$JNPES_cpl_c192 export THRD=$THRD_cpl_c192 export WRTTASK_PER_GROUP=$WPG_cpl_c192 -export med_petlist_bounds=$MPB_cpl_c192 -export atm_petlist_bounds=$APB_cpl_c192 -export ocn_petlist_bounds=$OPB_cpl_c192 -export ice_petlist_bounds=$IPB_cpl_c192 +OCN_tasks=$OCN_tasks_cpl_c192 +ICE_tasks=$ICE_tasks_cpl_c192 # atm/ocn/ice resolution export ATMRES=C192 @@ -89,7 +89,7 @@ export OCNRES=050 export ICERES=0.50 export NX_GLB=720 export NY_GLB=576 -export NPROC_ICE=$NPROC_ICE_cpl_c192 +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -124,6 +124,9 @@ export FNVMXC="'C192.vegetation_greenness.tileX.nc'" export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c192} +export DT_INNER=${DT_INNER_c192} + # ATM warm start export WARM_START=.true. export MAKE_NH=.false. @@ -145,6 +148,8 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c384_p8 b/tests/tests/cpld_restart_c384_p8 index 26eb7b0404..a409c090ca 100644 --- a/tests/tests/cpld_restart_c384_p8 +++ b/tests/tests/cpld_restart_c384_p8 @@ -1,12 +1,13 @@ # -# cpld_restart_c384_p8 test +# cpld_restart_c384_p8_aero test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 restart" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 restart" export CNTL_DIR="cpld_control_c384_p8" export LIST_FILES="sfcf006.nc \ atmf006.nc \ + gocart.inst_aod.20210322_1200z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -56,21 +57,20 @@ export RESTART_N=$((FHMAX-$FHROT)) export OUTPUT_FH="3 -1" export FHZERO=3 +export DOMAINS_STACK_SIZE=16000000 + export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" export TASKS=$TASKS_cpl_c384 -export TPN=$TPN_cpl_c384 export INPES=$INPES_cpl_c384 export JNPES=$JNPES_cpl_c384 export THRD=$THRD_cpl_c384 export WRTTASK_PER_GROUP=$WPG_cpl_c384 -export med_petlist_bounds=$MPB_cpl_c384 -export atm_petlist_bounds=$APB_cpl_c384 -export ocn_petlist_bounds=$OPB_cpl_c384 -export ice_petlist_bounds=$IPB_cpl_c384 +OCN_tasks=$OCN_tasks_cpl_c384 +ICE_tasks=$ICE_tasks_cpl_c384 # atm/ocn/ice resolution export ATMRES=C384 @@ -85,7 +85,7 @@ export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=$NPROC_ICE_cpl_c384 +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -120,6 +120,9 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" +export CDMBWD=${CDMBWD_c384} +export DT_INNER=${DT_INNER_c384} + # ATM warm start export WARM_START=.true. export MAKE_NH=.false. @@ -141,6 +144,8 @@ export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c96_p8 b/tests/tests/cpld_restart_c96_p8 index a443d844e4..c3129a9608 100644 --- a/tests/tests/cpld_restart_c96_p8 +++ b/tests/tests/cpld_restart_c96_p8 @@ -1,8 +1,8 @@ # -# cpld_restart_c96_p8 test +# cpld_restart_c96_p8_aero test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - P8 restart" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100 - P8 restart" export CNTL_DIR="cpld_control_c96_p8" @@ -18,6 +18,7 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ RESTART/coupler.res \ RESTART/fv_core.res.nc \ RESTART/fv_core.res.tile1.nc \ @@ -82,27 +83,28 @@ export USE_RESTART_TIME=.true. export MOM6_RESTART_SETTING=r export TASKS=$TASKS_cpl_c96 -export TPN=$TPN_cpl_c96 export INPES=$INPES_cpl_c96 export JNPES=$JNPES_cpl_c96 export THRD=$THRD_cpl_c96 export WRTTASK_PER_GROUP=$WPG_cpl_c96 -export NPROC_ICE=$NPROC_ICE_cpl_c96 +OCN_tasks=$OCN_tasks_cpl_c96 +ICE_tasks=$ICE_tasks_cpl_c96 + +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` -export med_petlist_bounds=$MPB_cpl_c96 -export atm_petlist_bounds=$APB_cpl_c96 -export ocn_petlist_bounds=$OPB_cpl_c96 -export ice_petlist_bounds=$IPB_cpl_c96 - export CPLWAV=.false. export CPLWAV2ATM=.false. export MOM6_USE_WAVES=False export eps_imesh=2.5e-1 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True -export NEMS_CONFIGURE=nems.configure.cpld.IN +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.cpld_aero.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 2c90871ef2..c287298ec8 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -25,4 +25,7 @@ export atm_datamode=GFS export RESTART_N=12 export stream_files="DATM_INPUT/cfsr.2011100100_3072x1536.nc DATM_INPUT/cfsr.2011100106_3072x1536.nc DATM_INPUT/cfsr.2011100112_3072x1536.nc DATM_INPUT/cfsr.2011100118_3072x1536.nc DATM_INPUT/cfsr.2011100200_3072x1536.nc DATM_INPUT/cfsr.2011100206_3072x1536.nc" export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index e9642df4f8..f398b2f47b 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -18,4 +18,7 @@ export JATM=880 export RESTART_N=12 export flux_scheme='-1' export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 3564aa81e8..f404c4678e 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -27,4 +27,7 @@ export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" export RESTART_N=12 export flux_scheme='-1' export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index 7b5ef75cc4..11835d5555 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -17,4 +17,7 @@ export IATM=1760 export JATM=880 export RESTART_N=12 export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index a63917ac74..108b11142f 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -26,4 +26,6 @@ export MESH_ATM="DATM_INPUT/${mesh_file}" export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" export RESTART_N=12 export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 33d5aabc4f..62868e2e4a 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -19,4 +19,6 @@ export DAYS="0.25" export FHMAX=6 export RESTART_N=${FHMAX} export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs new file mode 100644 index 0000000000..f2dfaa0a1c --- /dev/null +++ b/tests/tests/datm_cdeps_gfs @@ -0,0 +1,37 @@ +# +# DATM_CDEPS_MOM6_CICE_CMEPS_GFS test +# + +export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GFS - control " + +export CNTL_DIR="datm_cdeps_gfs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc" + +export_datm_cdeps +export DATM_SRC="GFS" +export FILENAME_BASE='gfs.' +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export SECS=`expr $SHOUR \* 3600` +export IATM=3072 +export JATM=1536 +export ATM_NX_GLB=$IATM +export ATM_NY_GLB=$JATM +export ATMRES=3072x1536 +export mesh_file=gfs_mesh.nc +export MESH_ATM=DATM_INPUT/${mesh_file} +export atm_datamode=GFS +export KTHERM=2 +export TFREEZE_OPTION=mushy +export RESTART_N=12 +export stream_files="DATM_INPUT/gfs.202103.nc" +export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export FV3_RUN=cpld_datm_cdeps_gfs.IN diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs new file mode 100644 index 0000000000..3d2c947a17 --- /dev/null +++ b/tests/tests/datm_cdeps_iau_gefs @@ -0,0 +1,33 @@ +# +# DATM_CDEPS_MOM6_CICE_CMEPS_GEFS test +# + +export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - iau" + +export CNTL_DIR="datm_cdeps_iau_gefs" + +export LIST_FILES="RESTART/MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + +export_datm_cdeps +export atm_datamode="GEFS" + +# atm configure +export MOM_IAU="True" +export IATM=1536 +export JATM=768 +export ATM_NX_GLB=$IATM +export ATM_NY_GLB=$JATM +export ATMRES='1536x768' +export DATM_SRC="GEFS" +export FILENAME_BASE='gefs.' +export mesh_file="gefs_mesh.nc" +export MESH_ATM="DATM_INPUT/${mesh_file}" +export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" +export RESTART_N=12 +export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index f5c92c9ecf..afeb10ef40 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -16,4 +16,6 @@ export JATM=880 export RESTART_N=12 export stream_files="DATM_INPUT/cfsr.2011100100.nc DATM_INPUT/cfsr.2011100106.nc DATM_INPUT/cfsr.2011100112.nc DATM_INPUT/cfsr.2011100118.nc DATM_INPUT/cfsr.2011100200.nc DATM_INPUT/cfsr.2011100206.nc" export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index 7a61f244d8..535bdd1ca2 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -25,11 +25,10 @@ export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' export TASKS=$TASKS_cdeps_025 -export TPN=$TPN_cdeps_025 -export atm_petlist_bounds=$APB_cdeps_025 -export med_petlist_bounds=$MPB_cdeps_025 -export ocn_petlist_bounds=$OPB_cdeps_025 -export ice_petlist_bounds=$IPB_cdeps_025 + +ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} +OCN_tasks=${OCN_tasks_cdeps_025} +ICE_tasks=${ICE_tasks_cdeps_025} # ocn/ice resolution export OCNRES='025' diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index a18a930aad..ace9741465 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -33,11 +33,10 @@ export MESH_ATM="DATM_INPUT/${mesh_file}" export stream_files="DATM_INPUT/${FILENAME_BASE}201110.nc" export TASKS=$TASKS_cdeps_025 -export TPN=$TPN_cdeps_025 -export atm_petlist_bounds=$APB_cdeps_025 -export med_petlist_bounds=$MPB_cdeps_025 -export ocn_petlist_bounds=$OPB_cdeps_025 -export ice_petlist_bounds=$IPB_cdeps_025 + +ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} +OCN_tasks=${OCN_tasks_cdeps_025} +ICE_tasks=${ICE_tasks_cdeps_025} # ocn/ice resolution export OCNRES='025' diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index d043b9b368..1dd0c53c42 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -25,4 +25,6 @@ export RUNTYPE='continue' export USE_RESTART_TIME='.true.' export MOM6_RESTART_SETTING="r" export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 7f7b269baf..02621d33e0 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -30,4 +30,6 @@ export FV3_RUN=cpld_datm_cdeps.IN export DO_OCN_SPPT="True" export PERT_EPBL="True" export OCN_SPPT=1.0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True export EPBL=1.0 diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index 0e61f6986a..9ee6061d55 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -21,7 +21,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=240 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -33,6 +32,7 @@ export SHOUR=12 export SMONTH=08 export SYEAR=2020 export WRTTASK_PER_GROUP=60 +export NTILES=6 export OUTPUT_GRID='global_latlon' export IMO=360 @@ -95,6 +95,8 @@ export NPY_NEST02=241 export K_SPLIT_NEST02=4 export N_SPLIT_NEST02=5 +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 )) + export NESTED=.true. export FULL_ZS_FILTER=.false. export N_ZS_FILTER=0 @@ -107,7 +109,7 @@ export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_global_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index b3cd1dda7e..809f61fba9 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -27,7 +27,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=420 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -39,6 +38,7 @@ export SHOUR=12 export SMONTH=08 export SYEAR=2020 export WRTTASK_PER_GROUP=60 +export NTILES=6 export OUTPUT_GRID='global_latlon' export IMO=360 @@ -152,6 +152,8 @@ export NPY_NEST05=361 export K_SPLIT_NEST05=4 export N_SPLIT_NEST05=5 +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 + INPES_NEST03*JNPES_NEST03 + INPES_NEST04*JNPES_NEST04 + INPES_NEST05*JNPES_NEST05 )) + export NESTED=.true. export FULL_ZS_FILTER=.false. export N_ZS_FILTER=0 @@ -167,7 +169,7 @@ export INPUT_NEST02_NML=input_nest_hafs.nml.IN export INPUT_NEST03_NML=input_nest_hafs.nml.IN export INPUT_NEST04_NML=input_nest_hafs.nml.IN export INPUT_NEST05_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hafs_global_storm_following_1nest_atm b/tests/tests/hafs_global_storm_following_1nest_atm new file mode 100644 index 0000000000..cc5f0eeb42 --- /dev/null +++ b/tests/tests/hafs_global_storm_following_1nest_atm @@ -0,0 +1,121 @@ +############################################################################### +# +# HAFS global with 1 storm-following moving nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS global with 1 storm-following moving nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_global_storm_following_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=240 +export THRD=2 + +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 +export NTILES=6 + +export OUTPUT_GRID='global_latlon' +export IMO=360 +export JMO=181 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.25 +export DLAT_2=0.25 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=4 +export JNPES=5 +export NPX=97 +export NPY=97 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="120,60" +export TILE_COARSE="0,6" +export NUM_TILE_TOP=6 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="1,37" +export NEST_JOFFSETS="1,37" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,2" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=73 +export NPY_NEST02=73 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 )) + +export NESTED=.true. +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_global_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index 93a47459ad..ee9b6be65f 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -21,7 +21,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=180 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -104,6 +103,8 @@ export NPY_NEST02=361 export K_SPLIT_NEST02=4 export N_SPLIT_NEST02=5 +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + export CMEPS=false export RUNTYPE="startup" export USE_COLDSTART="false" @@ -112,7 +113,7 @@ export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm index 3aa9420dbb..0c69ade48c 100644 --- a/tests/tests/hafs_regional_atm +++ b/tests/tests/hafs_regional_atm @@ -9,7 +9,8 @@ export TEST_DESCR="Compare HAFS regional atmosphere only results with previous t export CNTL_DIR=hafs_regional_atm export LIST_FILES="atmf006.nc \ - sfcf006.nc" + sfcf006.nc \ + HURPRS.GrbF06" export_fv3 export_hafs @@ -19,7 +20,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=300 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -31,6 +31,8 @@ export SHOUR=00 export SMONTH=08 export SYEAR=2019 export WRTTASK_PER_GROUP=60 +export WRITE_DOPOST=.true. +export POSTAPP='hafs' export OUTPUT_GRID='regional_latlon' export CEN_LON=-62.0 @@ -92,6 +94,6 @@ export USE_COLDSTART="false" export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn index 3dbdc25aa1..31f2da9fca 100644 --- a/tests/tests/hafs_regional_atm_ocn +++ b/tests/tests/hafs_regional_atm_ocn @@ -93,15 +93,13 @@ export OCEAN_START_DTG=43340.00000 export atm_model="fv3" export ocn_model="hycom" -export atm_petlist_bounds="0000 0299" -export ocn_petlist_bounds="0300 0359" -export med_petlist_bounds="0300 0359" +OCN_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index 932d873f16..c81c236b0b 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -112,16 +112,14 @@ export OCEAN_START_DTG=43340.00000 export atm_model="fv3" export ocn_model="hycom" export wav_model="ww3" -export atm_petlist_bounds="0000 0299" -export ocn_petlist_bounds="0300 0359" -export med_petlist_bounds="0300 0359" -export wav_petlist_bounds="0360 0419" +OCN_tasks=60 +WAV_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav.IN" export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_atm_thompson_gfdlsf b/tests/tests/hafs_regional_atm_thompson_gfdlsf index 9803d30f45..b71656e183 100644 --- a/tests/tests/hafs_regional_atm_thompson_gfdlsf +++ b/tests/tests/hafs_regional_atm_thompson_gfdlsf @@ -19,7 +19,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=300 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -32,15 +31,7 @@ export SMONTH=08 export SYEAR=2019 export WRTTASK_PER_GROUP=60 -export OUTPUT_GRID='regional_latlon' -export CEN_LON=-62.0 -export CEN_LAT=22.0 -export LON1=-116.90 -export LAT1=-14.45 -export LON2=-7.10 -export LAT2=58.45 -export DLON=0.1 -export DLAT=0.1 +export OUTPUT_GRID='cubed_sphere_grid' export BLOCKSIZE=40 export CCPP_SUITE="FV3_HAFS_v0_thompson_tedmf_gfdlsf" @@ -95,6 +86,6 @@ export USE_COLDSTART="false" export FIELD_TABLE=field_table_hafs_thompson export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 806927f446..1f9b1da19c 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -20,7 +20,7 @@ export_hafs_regional export HAFS=true export FHMAX=6 export RESTART_N=${FHMAX} -export TASKS=420 +export TASKS=360 export DT_ATMOS=180 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -110,16 +110,13 @@ export OCEAN_START_DTG=43340.00000 export atm_model="fv3" export ocn_model="" export wav_model="ww3" -export atm_petlist_bounds="0000 0299" -export ocn_petlist_bounds="" -export med_petlist_bounds="0300 0359" -export wav_petlist_bounds="0360 0419" +WAV_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_wav.IN" export FV3_RUN="hafs_fv3_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_datm_cdeps b/tests/tests/hafs_regional_datm_cdeps index c55668ec49..446ecdf10a 100644 --- a/tests/tests/hafs_regional_datm_cdeps +++ b/tests/tests/hafs_regional_datm_cdeps @@ -25,9 +25,8 @@ export OCEAN_START_DTG=43340.00000 export DOCN_CDEPS=false export ocn_model="hycom" -export med_petlist_bounds="0 59" -export atm_petlist_bounds="0 59" -export ocn_petlist_bounds="60 119" +ATM_compute_tasks=60 +OCN_tasks=60 export coupling_interval_sec=360 export atm_datamode="ERA5" @@ -36,6 +35,6 @@ export DATA_ATM="\"INPUT_DATM/ERA5.TL639.2019.08.200618_subset.nc\" \"INPUT_DATM export ATM_NX_GLB=1440 export ATM_NY_GLB=721 -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" export FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_docn b/tests/tests/hafs_regional_docn index 4863601836..be6378ca7f 100644 --- a/tests/tests/hafs_regional_docn +++ b/tests/tests/hafs_regional_docn @@ -90,9 +90,8 @@ export CPL_IMP_MRG=.true. export atm_model="fv3" export ocn_model="docn" -export atm_petlist_bounds="0000 0299" -export ocn_petlist_bounds="0300 0359" -export med_petlist_bounds="0300 0359" +ATM_compute_tasks=240 +OCN_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" @@ -105,6 +104,6 @@ export ocn_ny_global=633 export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" export FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_mom6.IN" diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst index e666bb21ca..a20e3659cc 100644 --- a/tests/tests/hafs_regional_docn_oisst +++ b/tests/tests/hafs_regional_docn_oisst @@ -90,9 +90,8 @@ export CPL_IMP_MRG=.true. export atm_model="fv3" export ocn_model="docn" -export atm_petlist_bounds="0000 0299" -export ocn_petlist_bounds="0300 0359" -export med_petlist_bounds="0300 0359" +ATM_compute_tasks=240 +OCN_tasks=60 export coupling_interval_sec=360 export MESH_ATM="unset" @@ -105,6 +104,6 @@ export ocn_ny_global=720 export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" export FV3_RUN="hafs_fv3_run.IN hafs_docn_cdeps_oisst.IN" diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm new file mode 100644 index 0000000000..e01ae2eec8 --- /dev/null +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -0,0 +1,120 @@ +############################################################################### +# +# HAFS regional with 1 specified moving nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 specified moving nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_specified_moving_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=180 +export THRD=2 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon_moving' +export IMO_2=501 +export JMO_2=501 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,1" +export NTRACK="0,5" +export MOVE_CD_X="0,1" +export MOVE_CD_Y="0,-1" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm new file mode 100644 index 0000000000..a22a026c57 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -0,0 +1,120 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=180 +export THRD=2 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon_moving' +export IMO_2=501 +export JMO_2=501 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn new file mode 100644 index 0000000000..a4dcff5725 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn @@ -0,0 +1,135 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled with HYCOM +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + archv.2020_238_18.a \ + archs.2020_238_18.a" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=240 +export THRD=2 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='regional_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-131.30 +export LAT1=-16.70 +export LON2=-41.30 +export LAT2=63.30 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='regional_latlon_moving' +export IMO_2=501 +export JMO_2=501 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# nems.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43702.50000 + +export atm_model="fv3" +export ocn_model="hycom" +OCN_tasks=60 +export coupling_interval_sec=360 +export MESH_ATM="unset" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav new file mode 100644 index 0000000000..1a9af0ddaa --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav @@ -0,0 +1,161 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled with HYCOM and WW3 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean-wave coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_wav + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + archv.2020_238_18.a \ + archs.2020_238_18.a \ + out_grd.ww3 \ + out_pnt.ww3" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=300 +export THRD=2 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.3 +export CEN_LAT_2=23.3 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.true. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +export FLD_DT="10800" +export PNT_DT="10800" +export GOFILETYPE="" +export POFILETYPE="" +export UNIPOINTS='ww3' +export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" +export WW3GRIDLINE="'ww3' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export WW3RSTDTHR=${FHMAX} +export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" +export RUN_END="20200825 120000" +export OUT_BEG=$RUN_BEG +export OUT_END=$RUN_END +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG +export RST_END=$RUN_END +export RST_2_END=$RUN_END + +# nems.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43702.50000 + +export atm_model="fv3" +export ocn_model="hycom" +export wav_model="ww3" +OCN_tasks=60 +WAV_tasks=60 +export coupling_interval_sec=360 +export MESH_ATM="unset" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn_wav.IN" +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN hafs_ww3_run.IN" diff --git a/tests/tests/hafs_regional_telescopic_2nests_atm b/tests/tests/hafs_regional_telescopic_2nests_atm index f89c097762..9afbb7e4eb 100644 --- a/tests/tests/hafs_regional_telescopic_2nests_atm +++ b/tests/tests/hafs_regional_telescopic_2nests_atm @@ -23,7 +23,6 @@ export FHMAX=6 export RESTART_N=${FHMAX} export TASKS=240 export THRD=2 -export TPN=$TPN_thrd export DT_ATMOS=90 export IDEFLATE=1 export NFHMAX_HF=-1 @@ -123,6 +122,8 @@ export NPY_NEST03=361 export K_SPLIT_NEST03=4 export N_SPLIT_NEST03=5 +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 + INPES_NEST03*JNPES_NEST03 )) + export CMEPS=false export RUNTYPE="startup" export USE_COLDSTART="false" @@ -132,7 +133,7 @@ export DIAG_TABLE=diag_table_hafs_template export INPUT_NML=input_regional_hafs.nml.IN export INPUT_NEST02_NML=input_nest_hafs.nml.IN export INPUT_NEST03_NML=input_nest_hafs.nml.IN -export MODEL_CONFIGURE="model_configure_hafs_shared.IN" +export MODEL_CONFIGURE="model_configure_hafs.IN" export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" export FV3_RUN="hafs_fv3_run.IN" diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 04f038e692..7d5783645e 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -74,6 +74,8 @@ export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export NEW_DIAGTABLE=diag_table_rap +export SFCLAY_COMPUTE_FLUX=.true. + export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index 17399b315b..ddc201e882 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -70,7 +70,6 @@ export OUTPUT_FH='0 21 24' export THRD=2 export TASKS=$TASKS_thrd -export TPN=$TPN_thrd export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 diff --git a/tests/tests/rap_lndp_debug b/tests/tests/rap_lndp_debug index 42b5d4208a..276f4033f2 100644 --- a/tests/tests/rap_lndp_debug +++ b/tests/tests/rap_lndp_debug @@ -61,5 +61,5 @@ export DO_UGWP_V1_OROG_ONLY=.false. export LNDP_TYPE=2 export N_VAR_LNDP=6 -export LNDP_EACH_STEP=.true. +export LNDP_MODEL_TYPE=2 diff --git a/tests/tests/rap_progcld_thompson_rrtmgp_debug b/tests/tests/rap_progcld_thompson_rrtmgp_debug new file mode 100644 index 0000000000..d5cb31f80e --- /dev/null +++ b/tests/tests/rap_progcld_thompson_rrtmgp_debug @@ -0,0 +1,67 @@ +############################################################################### +# +# RAP with Thompson's prognostic cloud scheme w/ RRTMGP debug test: atmosphere only at C96L127 in debug mode +# +############################################################################### + +export TEST_DESCR="Compare RAP debug with Thompson's prognostic cloud scheme w/ RRTMGPP results with previous trunk version" + +export CNTL_DIR=rap_progcld_thompson_rrtmgp_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export FHMAX=1 +export OUTPUT_FH="0 1" +#export WRITE_DOPOST=.true. + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export ICLOUD=3 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_rrtmgp b/tests/tests/rap_rrtmgp new file mode 100644 index 0000000000..04e3e3dbca --- /dev/null +++ b/tests/tests/rap_rrtmgp @@ -0,0 +1,105 @@ +############################################################################### +# +# RAP control test with RRTMGP: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP control results with previous trunk version" + +export CNTL_DIR=rap_rrtmgp + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=control_run.IN +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export NEW_DIAGTABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_rrtmgp_debug b/tests/tests/rap_rrtmgp_debug index 2f523b6755..e9b11e609f 100644 --- a/tests/tests/rap_rrtmgp_debug +++ b/tests/tests/rap_rrtmgp_debug @@ -29,18 +29,10 @@ export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_RAP_RRTMGP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke export NEW_DIAGTABLE=diag_table_rap -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. -export USE_LW_JACOBIAN=.true. -export DAMP_LW_FLUXADJ=.true. -export LFNC_K=3125. -export LFNC_P0=60000. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. @@ -48,8 +40,6 @@ export LRADAR=.true. export LTAEROSOL=.true. export IALB=2 export IEMS=2 -export ICLIQ_SW=2 -export IOVR=3 export HYBEDMF=.false. export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. @@ -68,3 +58,8 @@ export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. +# RRTMGP +export CCPP_SUITE=FV3_RAP_RRTMGP +export DO_RRTMGP=.true. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index 23cf5883ae..d48c83c9eb 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -38,5 +38,7 @@ export TASKS=68 export INPES=10 export JNPES=6 export THRD=2 -export TPN=$TPN_thrd export OUTPUT_FH="12 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_3km b/tests/tests/regional_3km new file mode 100644 index 0000000000..275f6675e7 --- /dev/null +++ b/tests/tests/regional_3km @@ -0,0 +1,46 @@ +############################################################################### +# +# FV3 regional hi-res 3km test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional hi-res 3km results with previous trunk version" + +export CNTL_DIR=fv3_regional_3km + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_3km_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="0" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional_3km.nml.IN +export MODEL_CONFIGURE=model_configure_regional_3km.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export TASKS=120 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_RRTMGP b/tests/tests/regional_RRTMGP deleted file mode 100644 index be7d440276..0000000000 --- a/tests/tests/regional_RRTMGP +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################### -# -# FV3 regional control test using RRTMGP radiaiton -# -############################################################################### - -export TEST_DESCR="Compare FV3 w/ RRTMGP regional results with previous trunk version" - -export CNTL_DIR=fv3_regional_RRTMGP - -export LIST_FILES="dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc \ - PRSLEV.GrbF00 \ - PRSLEV.GrbF24 \ - NATLEV.GrbF00 \ - NATLEV.GrbF24" - -export_fv3 -export DO_RRTMGP=.true. -export TASKS=68 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export WRITE_DOPOST=.true. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_RRTMGP -export INPUT_NML=regional_rrtmgp.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export INPES=10 -export JNPES=6 -export OUTPUT_FH="12 -1" diff --git a/tests/tests/regional_c768 b/tests/tests/regional_c768 index fb187c7794..9a6d1e97fa 100644 --- a/tests/tests/regional_c768 +++ b/tests/tests/regional_c768 @@ -27,3 +27,4 @@ export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 export INPUT_NML=regional_c768.nml.IN export MODEL_CONFIGURE=regional_c768-model_configure.IN export FV3_RUN=regional_c786_run.IN +NTILES=1 diff --git a/tests/tests/regional_control b/tests/tests/regional_control index bd59e31736..18c0268b7a 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -39,3 +39,6 @@ export TASKS=68 export INPES=10 export JNPES=6 export OUTPUT_FH="12 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_control_2dwrtdecomp b/tests/tests/regional_control_2dwrtdecomp index 15f7439cb4..0a1d939548 100644 --- a/tests/tests/regional_control_2dwrtdecomp +++ b/tests/tests/regional_control_2dwrtdecomp @@ -36,3 +36,6 @@ export INPES=10 export JNPES=6 export ITASKS=2 export OUTPUT_FH="12 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 679477ab2f..d862f219d9 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -35,5 +35,8 @@ export TASKS=68 export INPES=10 export JNPES=6 export OUTPUT_FH="0 1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 export WLCLK=30 diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp index 87fa853cf0..e7e4dec646 100644 --- a/tests/tests/regional_decomp +++ b/tests/tests/regional_decomp @@ -38,3 +38,6 @@ export TASKS=68 export INPES=5 export JNPES=12 export OUTPUT_FH="12 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_hafs b/tests/tests/regional_hafs deleted file mode 100644 index ca3385b292..0000000000 --- a/tests/tests/regional_hafs +++ /dev/null @@ -1,38 +0,0 @@ -############################################################################### -# -# FV3 regional hafs test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional hafs results with previous trunk version" - -export CNTL_DIR=fv3_regional_hafs - -export LIST_FILES="dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc \ - HURPRS.GrbF00 \ - HURPRS.GrbF24" - -export_fv3 - -export TASKS=68 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export WRITE_DOPOST=.true. -export POSTAPP='hafs' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_hafs.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export INPES=10 -export JNPES=6 diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index 3550705755..a1609c8713 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -35,3 +35,6 @@ export FIELD_TABLE=field_table_regional export INPES=10 export JNPES=6 export OUTPUT_FH="12 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt index f272ede09d..38877b2693 100644 --- a/tests/tests/regional_noquilt +++ b/tests/tests/regional_noquilt @@ -1,4 +1,4 @@ -############################################################################### + # # FV3 regional noquilt test # @@ -37,3 +37,4 @@ export INPES=10 export JNPES=6 export WRITE_RESTART_WITH_BCS=.true. export OUTPUT_FH="3 6 9 12 15 18 21 24" +NTILES=1 diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index 55fcd711cc..3ae0129a4d 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -43,3 +43,6 @@ export JNPES=6 export OUTPUT_FH="15 18 21 24" export FHROT=12 +WRITE_GROUP=1 +WRTTASK_PER_GROUP=8 +NTILES=1 diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb index 550787bf82..3a74589fff 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb +++ b/tests/tests/regional_spp_sppt_shum_skeb @@ -36,14 +36,16 @@ export MODEL_CONFIGURE=model_configure_regional_stoch.IN export DIAG_TABLE=diag_table_hrrr_stoch export FIELD_TABLE=field_table_regional_stoch +export SFCLAY_COMPUTE_FLUX=.true. + export INPES=15 export JNPES=12 export FHMAX=1 export THRD=2 -export TPN=$TPN_thrd export TASKS=192 export WRITE_GROUP=1 export WRTTASK_PER_GROUP=12 +NTILES=1 export DO_SPP=.true. export DO_SPPT=.true. diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm index cdf7c35113..1c5ba36978 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ b/tests/tests/rrfs_conus13km_hrrr_warm @@ -4,6 +4,9 @@ # ############################################################################### +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + export TEST_DESCR="HRRR physics on 13km domain, control run" export CNTL_DIR=rrfs_conus13km_hrrr_warm @@ -27,11 +30,17 @@ export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 +export NTILES=1 export WRITE_DOPOST=.false. export OUTPUT_HISTORY=.true. export OUTPUT_GRID=lambert_conformal export OUTPUT_FILE="'netcdf'" +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 export IEMS=2 @@ -66,7 +75,7 @@ export FHZERO=1.0 export IMP_PHYSICS=8 export LDIAG3D=.false. export QDIAG3D=.false. -export PRINT_DIFF_PGR=.false. +export PRINT_DIFF_PGR=.true. export FHCYC=0.0 export IAER=5111 export LHEATSTRG=.false. diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm index 38a3d0df2a..650185f08b 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_conus13km_radar_tten_warm @@ -4,6 +4,9 @@ # ############################################################################### +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" export CNTL_DIR=rrfs_conus13km_radar_tten_warm @@ -29,11 +32,17 @@ export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 +export NTILES=1 export WRITE_DOPOST=.false. export OUTPUT_HISTORY=.true. export OUTPUT_GRID=lambert_conformal export OUTPUT_FILE="'netcdf'" +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 export IEMS=2 @@ -68,7 +77,7 @@ export FHZERO=1.0 export IMP_PHYSICS=8 export LDIAG3D=.false. export QDIAG3D=.false. -export PRINT_DIFF_PGR=.false. +export PRINT_DIFF_PGR=.true. export FHCYC=0.0 export IAER=5111 export LHEATSTRG=.false. diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm index 7250a90f8f..33ad26593b 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm @@ -4,6 +4,9 @@ # ############################################################################### +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + export TEST_DESCR="HRRR smoke physics on 13km domain, control run" export CNTL_DIR=rrfs_smoke_conus13km_hrrr_warm @@ -27,14 +30,20 @@ export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 +export NTILES=1 export WRITE_DOPOST=.false. export OUTPUT_HISTORY=.true. export OUTPUT_GRID=lambert_conformal export OUTPUT_FILE="'netcdf'" +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + export RRFS_SMOKE=.true. export SEAS_OPT=0 +export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 export IEMS=2 @@ -69,7 +78,7 @@ export FHZERO=1.0 export IMP_PHYSICS=8 export LDIAG3D=.false. export QDIAG3D=.false. -export PRINT_DIFF_PGR=.false. +export PRINT_DIFF_PGR=.true. export FHCYC=0.0 export IAER=5111 export LHEATSTRG=.false. diff --git a/tests/tests/rrfs_v1nssl b/tests/tests/rrfs_v1nssl new file mode 100644 index 0000000000..1c2c897226 --- /dev/null +++ b/tests/tests/rrfs_v1nssl @@ -0,0 +1,63 @@ +############################################################################### +# +# RRFS v1 NSSL test atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RRFS_v1nssl results with previous trunk version" + +export CNTL_DIR=rrfs_v1nssl + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RRFS_v1nssl +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_nssl_tke +export NEW_DIAGTABLE=diag_table_rap_noah + +export IMP_PHYSICS=17 +export DNATS=0 +export NWAT=7 +export NSSL_CCN_ON=.true. +export NSSL_HAIL_ON=.true. +export NSSL_INVERTCCN=.true. +export DO_SAT_ADJ=.false. +export LTAEROSOL=.false. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LSM=2 +export LSOIL_LSM=4 diff --git a/tests/tests/rrfs_v1nssl_nohailnoccn b/tests/tests/rrfs_v1nssl_nohailnoccn new file mode 100644 index 0000000000..2918090f21 --- /dev/null +++ b/tests/tests/rrfs_v1nssl_nohailnoccn @@ -0,0 +1,63 @@ +############################################################################### +# +# RRFS v1 NSSL no hail no ccn test atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RRFS_v1nssl_nohailnoccn results with previous trunk version" + +export CNTL_DIR=rrfs_v1nssl_nohailnoccn + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 21 24' + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RRFS_v1nssl +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_nssl_nohailnoccn_tke +export NEW_DIAGTABLE=diag_table_rap_noah + +export IMP_PHYSICS=17 +export DNATS=0 +export NWAT=6 +export NSSL_CCN_ON=.false. +export NSSL_HAIL_ON=.false. +export NSSL_INVERTCCN=.true. +export DO_SAT_ADJ=.false. +export LTAEROSOL=.false. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LSM=2 +export LSOIL_LSM=4