diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index 2b41ea473d..afea540965 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -1,6 +1,6 @@ # CDEPS compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace -ffree-line-length-none") #Set CPP defintions for the ufs/cdeps_share target library list(APPEND CDEPS_SHARE_DEFS "CPRGNU") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) @@ -9,7 +9,7 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") 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") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 50aa2c9788..620e48fe75 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 50aa2c97882fbc9d4918813a22169fe97b424564 +Subproject commit 620e48fe75d92aa607af7e21f2d8691baddd2851 diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index 83bffdd1ac..3a6614699b 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -1,6 +1,6 @@ ### CICE Fortran compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fconvert=big-endian -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") @@ -9,7 +9,7 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -Wall -Wextra -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "" ) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") @@ -20,20 +20,17 @@ endif() ### CICE C compiler flags if(CMAKE_C_COMPILER_ID MATCHES "GNU") - set(CMAKE_C_FLAGS "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") set(CMAKE_C_FLAGS_RELEASE "-O3") set(CMAKE_C_FLAGS_DEBUG "-O0") set(CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") - set( CMAKE_C_FLAGS "-g -traceback") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -traceback") set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set( CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Clang") - set(CMAKE_C_FLAGS "-g") - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") set( CMAKE_C_FLAGS_RELEASE "-O3" ) set( CMAKE_C_FLAGS_DEBUG "-O0" ) set( CMAKE_C_LINK_FLAGS "" ) diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index e8114bfd4e..9047414e0d 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -27,7 +27,8 @@ list(APPEND cice_shared_files #Dynamics List: CICE/cicecore/cicedyn/dynamics/ice_dyn_eap.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_evp.F90 - CICE/cicecore/cicedyn/dynamics/ice_dyn_evp_1d.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_evp1d.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_core1d.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_shared.F90 CICE/cicecore/cicedyn/dynamics/ice_dyn_vp.F90 CICE/cicecore/cicedyn/dynamics/ice_transport_driver.F90 @@ -75,6 +76,7 @@ list(APPEND icepack_files CICE/icepack/columnphysics/icepack_orbital.F90 CICE/icepack/columnphysics/icepack_parameters.F90 CICE/icepack/columnphysics/icepack_shortwave.F90 + CICE/icepack/columnphysics/icepack_shortwave_data.F90 CICE/icepack/columnphysics/icepack_snow.F90 CICE/icepack/columnphysics/icepack_therm_bl99.F90 CICE/icepack/columnphysics/icepack_therm_itd.F90 diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 53bae532dd..f8f7ba76ac 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 53bae532ddd2623230cdfea221a0784b80060d35 +Subproject commit f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index c469cad232..518bad1f11 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -3,18 +3,17 @@ ############################################################################### if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace -ffree-line-length-none") #Set CPP defintions for the ufs/cdeps_share source component of the cmeps target library list(APPEND CDEPS_SHARE_DEFS "CPRGNU") 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 "${CMAKE_Fortran_FLAGS}") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -O -assume realloc_lhs") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -init=snan,arrays") diff --git a/FV3 b/FV3 index 3eb15bda51..a53e98c0fa 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3eb15bda51a309d9f6a89f4c392d1bf1d73d36dd +Subproject commit a53e98c0fa0f33955c6c328d880d15b5e036c75a diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 67f4d875c7..8a32f4722e 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -1,13 +1,13 @@ ### MOM6 Fortran compiler flags if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") - set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -fbacktrace") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -Waliasing -fcray-pointer -fconvert=big-endian -ffree-line-length-none -fno-range-check -fbacktrace") set(CMAKE_Fortran_FLAGS_RELEASE "-O2") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g -traceback") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -i4 -r8") set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -sox") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -fp-model source") diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index a36cb73d69..60c397b910 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 +Subproject commit 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake deleted file mode 100644 index 6037c6379f..0000000000 --- a/cmake/configure_gaea.intel.cmake +++ /dev/null @@ -1,4 +0,0 @@ -set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) -set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") -set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") -set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst index ae7772a25b..0ad596002a 100644 --- a/doc/UsersGuide/source/Configurations.rst +++ b/doc/UsersGuide/source/Configurations.rst @@ -13,8 +13,7 @@ Configurations The UFS Weather Model (WM) can be run in any of several configurations, from a single-component atmospheric model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice, land, and mediator). This chapter documents a few of the currently supported configurations. For a full list of -supported configurations, view the `rt.conf `__ -and `rt.gnu.conf `__ files. +supported configurations, view the `rt.conf `__ file. .. attention:: @@ -42,7 +41,7 @@ and `rt.gnu.conf ` to go to that section. Each configuration category includes sample code for setting ``CMAKE_FLAGS`` and ``CCPP_SUITES``. -Additionally, there is a list of preferred physics suites, examples of ``nems.configure`` files, +Additionally, there is a list of preferred physics suites, examples of ``ufs.configure`` files, and links to information on other input files required to run the model. ============ @@ -146,7 +145,7 @@ it will be expanded to cover the full range of ATM-only supported configurations * - Test Name - Description - - Physics Suite (see namelist options `here `__) + - Physics Suite (see `namelist options `__) - DT_ATMOS - Start Date - Forecast Length (hours) @@ -195,11 +194,11 @@ it will be expanded to cover the full range of ATM-only supported configurations **Additional Information** -Input files required for ATM configurations can be viewed in :numref:`Section %s ` +Input files required for ATM configurations can be viewed in :numref:`Section %s ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATM ``nems.configure`` file (``nems.configure.atm.IN``) is available -`here `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATM ``ufs.configure`` file (``ufs.configure.atm.IN``) is available +`here `__. ATMW @@ -238,7 +237,7 @@ These tests use default values set in the ``export_fv3`` function of ``default_v * - Test Name - Description - - Physics Suite (see namelist options `here `__) + - Physics Suite (see `namelist options `__) - DT_ATMOS - Start Date - Forecast Length (hours) @@ -269,11 +268,11 @@ These tests use default values set in the ``export_fv3`` function of ``default_v **Additional Information** -Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` -and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``nems.configure`` file (``nems.configure.atm_lnd.IN``) is available -`here `__. +Input files required for ATML configurations can be viewed in :numref:`Section %s (ATM) ` +and :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. .. _rrfs-documented: @@ -284,297 +283,30 @@ Rapid Refresh Forecast System (RRFS) The RRFS configurations use an :term:`ATM`-only configuration on a high-resolution regional grid with data assimilation capabilities. -These tests use the default values set in the ``export_fv3`` function of ``default_vars.sh`` unless other values are explicitly set. +These tests use the default values set in the ``export_fv3``, ``export_rap_common``, ``export_rrfs_v1``, and/or ``export_hrrr_conus13km`` functions of ``default_vars.sh`` unless other values are explicitly set in a given test file. In all tests, the values in ``export_fv3`` are set first. Depending on the test, some of these values may be overriden by ``export_rrfs_v1`` (which includes values from ``export_rap_common``) or ``export_hrrr_conus13km``. :numref:`Table %s ` compares the values set in ``export_fv3`` to the values set in the other functions. -Current RRFS regression tests cover a wide variety of functionality and involve several -physics tests. :numref:`Table %s ` contains RTs for RRFS functionality. +.. note:: -.. attention:: - - Certain physics-related settings are common to all of the supported RRFS configurations. These values are set in each test's configuration file because they differ from the ``default_vars.sh`` values: + ``export_rrfs_v1`` calls ``export_rap_common``, which calls ``export_fv3``. Values from ``export_fv3`` are set first, followed by values in ``export_rap_common`` and then values in ``export_rrfs_v1``. Values in italics indicate that the value is inherited from a previously-called function. - * **Set to FALSE:** DO_SAT_ADJ, HYBEDMF, DO_DEEP, SHAL_CNV, LHEATSTRG - * **Set to TRUE:** DO_MYNNEDMF, DO_MYNNSFCLAY - * **Set to VALUE:** DNATS=0, IALB=2, IEMS=2, IMFSHALCNV=-1, IMFDEEPCNV=-1 - - The "Detailed Physics Parameters" column in :numref:`Table %s ` details physics settings that differ from both the ``default_vars.sh`` values and these RRFS-specific defaults. - +.. _rrfs-default-vars-comparison: + +.. csv-table:: *RRFS Default Variables* + :file: tables/RRFSDefaultVariables.csv + :widths: 50 10 10 10 10 + :header-rows: 1 + :stub-columns: 1 + +Current RRFS regression tests cover a wide variety of functionality and involve several +physics tests. :numref:`Table %s ` (below) contains a selection of RTs for RRFS functionality. Blanks indicate that the value comes from the default setting file. These default values are listed in :numref:`Table %s ` above. .. _rrfs-rts: -.. list-table:: *RRFS regression test descriptions* - :widths: 50 10 30 50 10 10 10 10 10 +.. csv-table:: *RRFS regression test descriptions* + :file: tables/rrfs-rts.csv + :widths: 20 20 30 50 10 10 10 :header-rows: 1 - * - Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| - - Description - - General Physics Parameters - - Detailed |nbsp| Physics |nbsp| Parameters |nbsp| (see |nbsp| namelist |nbsp| options |nbsp| `here `__ |nbsp| for variable definitions) - - Start |nbsp| Date |nbsp| |nbsp| |nbsp| |nbsp| - - Fcst Length (hours) - - Output Grid - - Configuration Files - - Other - * - `rrfs_v1beta `__ - - Compare RRFS_v1beta results with previous trunk version - - **Suite:** CCPP_SUITE=FV3_RRFS_v1beta - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=300 - - **Set to FALSE:** Default RRFS values only :raw-html:`

` - **Set to TRUE:** LRADAR, LTAEROSOL :raw-html:`

` - **Set to VALUE:** NSTF_NAME='2,0,0,0,0', IAER=5111, LSM=2, LSOIL_LSM=4 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters:** NPZ=127, NPZP=128 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure.IN - FV3_RUN=control_run.IN - INPUT_NML=rap.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_rap_noah - - RESTART_INTERVAL="6 -1", OUTPUT_FH='0 09 12' - * - `rrfs_v1beta_debug `__ - - Compare rrfs_v1beta_debug results with previous trunk version - - **Suite:** CCPP_SUITE=FV3_RRFS_v1beta - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=300 - - **Set to FALSE:** Default RRFS values only :raw-html:`

` - **Set to TRUE:** LRADAR, LTAEROSOL :raw-html:`

` - **Set to VALUE:** NSTF_NAME='2,0,0,0,0', IAER=5111, LSM=2, LSOIL_LSM=4 - - 2021-03-22 06:00:00 - - 1 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters:** NPZ=127, NPZP=128 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure.IN - FV3_RUN=control_run.IN - INPUT_NML=rap.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_rap_noah - - OUTPUT_FH="0 1" - * - `rrfs_v1nssl `__ - - Compare RRFS_v1nssl results with previous trunk version - - **Suite:** CCPP_SUITE=FV3_RRFS_v1nssl - - **Microphysics:** IMP_PHYSICS=17 - - **Time Step:** DT_ATMOS=300 - - **Set to FALSE:** LTAEROSOL :raw-html:`

` - **Set to TRUE:** NSSL_CCN_ON, NSSL_HAIL_ON, NSSL_INVERTCCN :raw-html:`

` - **Set to VALUE:** NSTF_NAME='2,0,0,0,0', IAER=5111, CS=17, NWAT=7, LSM=2, LSOIL_LSM=4 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters:** NPZ=127, NPZP=128 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure.IN - FV3_RUN=control_run.IN - INPUT_NML=rap.nml.IN - FIELD_TABLE=field_table_nssl_tke - DIAG_TABLE=diag_table_rap_noah - - RESTART_INTERVAL="6 -1", OUTPUT_FH='0 09 12' - * - `rrfs_v1nssl_nohailnoccn `__ - - Compare RRFS_v1nssl_nohailnoccn results with previous trunk version - - **Suite:** CCPP_SUITE=FV3_RRFS_v1nssl - - **Microphysics:** IMP_PHYSICS=17 - - **Time Step:** DT_ATMOS=300 - - **Set to FALSE:** NSSL_CCN_ON, NSSL_HAIL_ON, LTAEROSOL :raw-html:`

` - **Set to TRUE:** NSSL_INVERTCCN :raw-html:`

` - **Set to VALUE:** NSTF_NAME='2,0,0,0,0', IAER=5111, NWAT=6, LSM=2, LSOIL_LSM=4 - - 2021-03-22 06:00:00 - - 24 - - OUTPUT_GRID=gaussian_grid :raw-html:`

` - **Grid Parameters:** NPZ=127, NPZP=128 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure.IN - FV3_RUN=control_run.IN - INPUT_NML=rap.nml.IN - FIELD_TABLE=field_table_nssl_nohailnoccn_tke - DIAG_TABLE=diag_table_rap_noah - - RESTART_INTERVAL="6 -1", OUTPUT_FH='0 09 12' - * - `rrfs_conus13km_hrrr_warm `__ - - HRRR physics on 13km domain, control run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - - **Set to TRUE:** SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - - **Set to VALUE:** DECFL=8, LKM=1, IOPT_LAKE=2, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 2 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_hrrr - - RESTART_INTERVAL=1, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_conus13km_hrrr_warm_debug `__ - - HRRR physics on 13km domain, debug run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, READ_INCREMENT, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, LKM=1, IOPT_LAKE=2, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 1 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_hrrr - - RESTART_INTERVAL=1, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_conus13km_hrrr_warm_restart_mismatch `__ - - HRRR physics on 13km domain, control run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, LKM=1, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=5111, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 2 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_hrrr - - FHROT=1, RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ), RRFS_RESTART=YES, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'", - * - `rrfs_smoke_conus13km_hrrr_warm `__ - - HRRR smoke physics on 13km domain, control run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** RRFS_SMOKE, SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, SEAS_OPT=0, LKM=1, IOPT_LAKE=2, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 2 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66, - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke_smoke - DIAG_TABLE=diag_table_hrrr - DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - - RESTART_INTERVAL=1, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_smoke_conus13km_hrrr_warm_2threads `__ - - HRRR smoke physics on 13km domain, different threads - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** RRFS_SMOKE, SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, SEAS_OPT=0, LKM=1, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 2 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=$INPES_thrd, JNPES=$JNPES_thrd, INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke_smoke - DIAG_TABLE=diag_table_hrrr - DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.true, READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_smoke_conus13km_hrrr_warm_debug `__ - - HRRR smoke physics on 13km domain, control run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** RRFS_SMOKE, SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, SEAS_OPT=0, LKM=1, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 1 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters**: INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke_smoke - DIAG_TABLE=diag_table_hrrr - DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - - RESTART_INTERVAL=1, WARM_START=.true., READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_smoke_conus13km_hrrr_warm_debug_2threads `__ - - HRRR smoke physics on 13km domain, control run - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** RRFS_SMOKE, SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** DECFL=8, SEAS_OPT=0, LKM=1, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 1 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters**: INPES=$INPES_thrd, JNPES=$JNPES_thrd, INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke_smoke - DIAG_TABLE=diag_table_hrrr - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - DIAG_TABLE_ADDITIONAL=diag_additional_rrfs_smoke - - RESTART_INTERVAL=1, atm_omp_num_threads=2, WARM_START=.true, READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - * - `rrfs_smoke_conus13km_radar_tten_warm `__ - - HRRR smoke physics on 13km domain with radar-derived temperature tendencies - - **Suite:** CCPP_SUITE=FV3_HRRR - - **Microphysics:** IMP_PHYSICS=8 - - **Time Step:** DT_ATMOS=120 - - **Set to FALSE:** SEDI_SEMI, MAKE_NH, EXTERNAL_IC, NGGPS_IC, LDIAG3D, QDIAG3D, RANDOM_CLDS, CNVCLD, DO_SPPT, DO_SHUM, DO_SKEB, DO_UGWP_* :raw-html:`

` - **Set to TRUE:** RRFS_SMOKE, SFCLAY_COMPUTE_FLUX, DO_MYJPBL, MOUNTAIN, PRINT_DIFF_PGR, DO_GSL_DRAG_*, FRAC_ICE :raw-html:`

` - **Set to VALUE:** FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0', DECFL=8, SEAS_OPT=0, LKM=1, ICLIQ_SW=2, IOVR=3, KICE=9, LSM=3, LSOIL_LSM=9, NA_INIT=0, FHZERO=1.0, FHCYC=0.0, IAER=1011, CDMBWD='3.5,1.0', LNDP_TYPE=0, N_VAR_LNDP=0, GWD_OPT=3 - - 2021-05-12 16:00:00 - - 2 - - OUTPUT_GRID=lambert_conformal :raw-html:`

` - **Grid Parameters:** INPES=12, JNPES=12, NPX=397, NPY=233, NPZ=65, NPZP=66 - - NEMS_CONFIGURE=nems.configure.atm.IN - MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN - FV3_RUN=rrfs_warm_run.IN - INPUT_NML=rrfs_conus13km_hrrr.nml.IN - FIELD_TABLE=field_table_thompson_aero_tke - DIAG_TABLE=diag_table_hrrr - - RESTART_INTERVAL=1, WARM_START=.true, READ_INCREMENT=.false., RES_LATLON_DYNAMICS="'fv3_increment.nc'" - **Sample** ``CMAKE_FLAGS`` **Setting** .. code-block:: console @@ -589,10 +321,8 @@ physics tests. :numref:`Table %s ` contains RTs for RRFS functionality * - Physics Suite - Description - * - FV3_RAP - - The FV3_RAP physics suite is described in the :term:`CCPP` documentation `here `__. * - FV3_HRRR - - The FV3_HRRR physics suite is described in the CCPP documentation `here `__. + - The FV3_HRRR physics suite is described in the :term:`CCPP` documentation `here `__. * - FV3_RRFS_v1beta - The FV3_RRFS_v1beta physics suite is described in the CCPP documentation `here `__. * - FV3_RRFS_v1nssl @@ -601,112 +331,11 @@ physics tests. :numref:`Table %s ` contains RTs for RRFS functionality **Additional Information** -Input files required for RRFS ATM configurations can be viewed in :numref:`Table %s ` -or in the `UFS WM RT Data Bucket `__. Users who wish to run additional (unsupported) cases may also find useful data `here `__. - -Information on ``nems.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``nems.configure`` file that ATM-only tests do (``nems.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` directory `here `__. - -Additionally, users can find examples of various RRFS configuration files in ``ufs-weather-model/tests/parm`` `here `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. +Each test file lists the input files required for a given test. Input files required for RRFS ATM configurations can be downloaded from the `UFS WM RT Data Bucket `__. Users who wish to run additional (unsupported) cases may also find useful data in the `NOAA RRFS data bucket `__. -.. _rrfs-files: - -.. list-table:: Files Required for RRFS RTs - :widths: 50 10 10 10 10 110 - :header-rows: 1 +Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. - * - Tests - - sfcf*.nc - - atmf*.nc - - GFSFLX.GrbF* - - GFSPRS.GrbF* - - Other |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| - * - rrfs_v1beta - - sfcf000.nc - sfcf009.nc - sfcf012.nc - - atmf000.nc - atmf009.nc - atmf012.nc - - GFSFLX.GrbF00 - GFSFLX.GrbF09 - GFSFLX.GrbF12 - - GFSPRS.GrbF00 - GFSPRS.GrbF09 - GFSPRS.GrbF12 - - 20210323.060000.coupler.research - - 20210323.060000.fv_core.res.nc - - 20210323.060000.fv_core.res.tile[1-6].nc - - 20210323.060000.fv_srf_wnd.res.tile[1-6].nc - - 20210323.060000.fv_tracer.res.tile[1-6].nc - - 20210323.060000.phy_data.tile[1-6].nc - - 20210323.060000.sfc_data.tile[1-6].nc - * - rrfs_v1nssl - - rrfs_v1nssl_nohailnoccn - - sfcf000.nc - sfcf009.nc - sfcf012.nc - - atmf000.nc - atmf009.nc - atmf012.nc - - GFSFLX.GrbF00 - GFSFLX.GrbF09 - GFSFLX.GrbF12 - - GFSPRS.GrbF00 - GFSPRS.GrbF09 - GFSPRS.GrbF12 - - - * - rrfs_conus13km_hrrr_warm - rrfs_smoke_conus13km_hrrr_warm - - sfcf000.nc - sfcf001.nc - sfcf002.nc - - atmf000.nc - atmf001.nc - atmf002.nc - - - - - - 20210512.170000.coupler.res - 20210512.170000.fv_core.res.nc - 20210512.170000.fv_core.res.tile1.nc - 20210512.170000.fv_srf_wnd.res.tile1.nc - 20210512.170000.fv_tracer.res.tile1.nc - 20210512.170000.phy_data.nc - 20210512.170000.sfc_data.nc - * - rrfs_smoke_conus13km_hrrr_warm_2threads - rrfs_smoke_conus13km_radar_tten_warm - - sfcf000.nc - sfcf001.nc - sfcf002.nc - - atmf000.nc - atmf001.nc - atmf002.nc - - - - - - - * - rrfs_v1beta_debug - rrfs_conus13km_hrrr_warm_debug - rrfs_smoke_conus13km_hrrr_warm_debug - rrfs_smoke_conus13km_hrrr_warm_debug_2threads - - sfcf000.nc - sfcf001.nc - - atmf000.nc - atmf001.nc - - - - - - - * - rrfs_conus13km_hrrr_warm_restart_mismatch - - sfcf002.nc - - atmf002.nc - - - - - - +Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. .. _lnd-documented: @@ -749,11 +378,11 @@ The LND configuration couples :term:`DATM`, :term:`CDEPS`, and :term:`CMEPS` wit **Additional Information** -Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` +Input files required for LND configurations can be viewed in :numref:`Section %s (LND) ` or in the `UFS WM RT Data Bucket `__. -Information on ``nems.configure`` files is available in :numref:`Section %s `, -and a sample ATML ``nems.configure`` file (``nems.configure.atm_lnd.IN``) is available -`here `__. +Information on ``ufs.configure`` files is available in :numref:`Section %s `, +and a sample ATML ``ufs.configure`` file (``ufs.configure.atm_lnd.IN``) is available +`here `__. ============================================= diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 5515a8f5e6..b30a242867 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -29,7 +29,7 @@ Glossary The pool of CCPP-compliant physics schemes; also refers to a software repository of the same name CDEPS - The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. + The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. CESM The `Community Earth System Model `__ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 0489b632d8..534d173579 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -61,11 +61,14 @@ There are three types of files needed to execute a run: Information on the first two types of file appears in detail below for each component model. Information on Model Configuration files can be viewed in :numref:`Section %s `. -.. _atm-io: +.. _atm-in: ------- ATM ------- + +.. _atm-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -129,6 +132,8 @@ The static input files for global configurations are listed and described in :nu * - solarconstant_noaa_an.txt - External solar constant data table +.. _atm-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -194,9 +199,14 @@ The input files containing grid information and the initial conditions for globa - Surface properties for grid tile 7 - ✔ +.. _mom-in: + ------- MOM6 ------- + +.. _mom-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -240,8 +250,10 @@ The static input files for global configurations are listed and described in :nu - climatological 2-d background harmonic viscosities - 1.00 +.. _mom-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files +Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. @@ -309,9 +321,14 @@ The input files containing grid information and the initial conditions for globa - 1.00, 0.50, 0.25 - ✔ +.. _hycom-in: + ------- HYCOM ------- + +.. _hycom-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -391,6 +408,8 @@ Static input files are listed and described in :numref:`Table %s `__. +.. _cdeps-in: + ------- CDEPS ------- + +.. _cdeps-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ No fix files are required for CDEPS. +.. _cdeps-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -751,6 +791,25 @@ The input files containing grid information and the time-varying forcing files f - ERA5 forcing file for year YYYY and month MM - ✔ +.. note:: + + Users can find atmospheric forcing files for use with the land (:ref:`LND `) component in the `Land Data Assimilation (DA) data bucket `__. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `__) dataset. + + .. code-block:: console + + clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc + clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc + fv1.9x2.5_141008_ESMFmesh.nc + topodata_0.9x1.25_USGS_070110_stream_c151201.nc + topodata_0.9x1.SCRIP.210520_ESMFmesh.nc + + See the :ref:`Land DA User's Guide ` or the :ref:`WM LND Input ` section of this page for more information on files used in land configurations of the UFS WM. + **Data Ocean** .. _CDEPS_FilesOCN: @@ -789,9 +848,14 @@ The input files containing grid information and the time-varying forcing files f - GHRSST forcing file for year YYYY, month MM and day DD - ✔ +.. _gocart-in: + ------- GOCART ------- + +.. _gocart-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -886,7 +950,9 @@ The static input files when using climatology (MERRA2) are listed and described - Sea Salt optical look-up table for MERRA2 * - Optics_SU.dat - Sulfate optical look-up table for MERRA2 - + +.. _gocart-grid-ic-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -895,9 +961,14 @@ Running GOCART in UFS does not require aerosol initial conditions, as aerosol mo 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. The `UFS_UTILS `__ preprocessing utilities provide a solution for this within the `Global Workflow `__. +.. _aqm-in: + -------------- AQM (CMAQ) -------------- + +.. _aqm-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -948,20 +1019,20 @@ AQM inputs defined in ``aqm.rc`` are listed and described in :numref:`Table %s < * - Hourly_Emissions_regrid_rrfs_13km_20190801_t12z_h72.nc - File Emissions File -.. _lnd-io: +.. _lnd-in: ------- LND ------- -LND component datasets are available from the Land Data Assimilation (DA) System Data Bucket and can be retrieved using a ``wget`` command: +LND component datasets are available from the `Land Data Assimilation (DA) System data bucket `__ and can be retrieved using a ``wget`` command: .. code-block:: console - wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/current_land_da_release_data/landda-test-inps.tar.gz - tar xvfz landda-test-inps.tar.gz + wget https://noaa-ufs-land-da-pds.s3.amazonaws.com/current_land_da_release_data/v1.2.0/Landdav1.2.0_input_data.tar.gz + tar xvfz Landdav1.2.0_input_data.tar.gz -These files will be untarred into an ``inputs`` directory if the user does not specify a different name. They include data for Jan 1-2, 2016 with restarts available for Jan. 3-4, 2016. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. +These files will be untarred into an ``inputs`` directory if the user does not specify a different name. They include data for Dec. 21, 2019. :numref:`Table %s ` describes the file types. In each file name, ``YYYY`` refers to a valid 4-digit year, ``MM`` refers to a valid 2-digit month, and ``DD`` refers to a valid 2-digit day of the month. .. _LndInputFiles: @@ -969,50 +1040,73 @@ These files will be untarred into an ``inputs`` directory if the user does not s :widths: 30 60 10 :header-rows: 1 - * - Filename + * - Filename(s) - Description - File Type - * - ufs-land_C96_static_fields.nc - - Static file that includes information on location, time, soil layers, and fixed (invariant) experiment parameters. - - Fix/static file - * - ufs-land_C96_init_fields_1hr.nc - - Initial conditions file that includes the initial state variables that are required for the UFS land snow DA to begin a cycling run. + * - ufs-land_C96_init_fields.tile*.nc + - Initial conditions files for each tile; the files include the initial state variables that are required for the UFS land snow DA to begin a cycling run. ``*`` stands for the grid tile number [1-6]. - Initial conditions - * - C96_grid.tileN.nc - - C96 grid information for tiles 1-6, where N is the grid tile number [1-6]. + * - C96.maximum_snow_albedo.tile*.nc + + C96.slope_type.tile*.nc + + C96.soil_type.tile*.nc + + C96.soil_color.tile*.nc + + C96.substrate_temperature.tile*.nc + + C96.vegetation_greenness.tile*.nc + + C96.vegetation_type.tile*.nc + + oro_C96.mx100.tile*.nc + - Tiled static files that contain information on maximum snow albedo, slope type, soil color and type, substrate temperature, vegetation greenness and type, and orography (grid and land mask information). ``*`` stands for the grid tile number [1-6]. + - Static/fixed files + * - grid_spec.nc + - Contains information on the mosaic grid - Grid - * - C96_oro_data.tileN.nc / oro_C96.mx100.tileN.nc - - Orography files that contain grid and land mask information, where N is the grid tile number [1-6]. ``mx100`` refers to the ocean resolution (100=1º). + * - C96_grid.tile*.nc + - C96 grid information for tiles 1-6, where ``*`` is the grid tile number [1-6]. - Grid - * - ufs-land.namelist.gdas - - Land component model configuration (namelist) file - - Model configuration + * - C96_oro_data.tile*.nc / oro_C96.mx100.tileN.nc + - Orography files that contain grid and land mask information, where ``*`` is the grid tile number [1-6]. ``mx100`` refers to the ocean resolution (100=1º). + - Grid + * - See :ref:`CDEPS ` for information on atmospheric forcing files. + - Atmospheric forcing + - CDEPS * - ghcn_snwd_ioda_YYYYMMDD.nc - - Snow depth data assimilation files + - GHCN snow depth data assimilation files - DA - * - C96_GDAS_forcing_YYYY-MM-DD.nc - - GDAS forcing files - - Forcing - * - ufs_land_restart.2015-09-01_18-00-00.nc - - Restart file - - Restart - * - ufs_land_restart.2016-01-01_18-00-00.nc + * - ufs_land_restart.YYYY-MM-DD_HH-mm-SS.nc - Restart file - Restart +.. _lnd-fix-files: + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The static file (listed in :numref:`Table %s `) includes specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. +The static files (listed in :numref:`Table %s `) include specific information on location, time, soil layers, and fixed (invariant) experiment parameters that are required for the land component to run. The data must be provided in :term:`netCDF` format. -The static file is available in the ``inputs`` data directory at the following path: +The following static files are available in the ``inputs/UFS_WM/FV3_fix_tiled/C96/`` data directory (downloaded :ref:`above `): .. code-block:: - inputs/forcing/gdas/static/ufs-land_C96_static_fields.nc + C96.maximum_snow_albedo.tile*.nc + C96.slope_type.tile*.nc + C96.soil_type.tile*.nc + C96.soil_color.tile*.nc + C96.substrate_temperature.tile*.nc + C96.vegetation_greenness.tile*.nc + C96.vegetation_type.tile*.nc + oro_C96.mx100.tile*.nc + +where ``*`` refers to the tile number (1-6). +Details on the configuration variables included in this file are available in the :ref:`Land DA documentation `. -Details on the configuration variables included in this file are available from the :ref:`Land DA documentation `. +.. _lnd-grid-ic-files: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Grid Description and Initial Condition Files @@ -1021,18 +1115,26 @@ Grid Description and Initial Condition Files The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. The initial conditions file includes the initial state variables that are required for the UFS land snow DA to begin a cycling run. The data must be provided in :term:`netCDF` format. - -The initial conditions file is available in the ``inputs`` data directory (downloaded :ref:`above `) at the following path: +The initial conditions file is available in the ``inputs`` data directory (downloaded :ref:`above `) at the following path: .. code-block:: - inputs/forcing/GDAS/init/ufs-land_C96_init_fields_1hr.nc + inputs/UFS_WM/NOAHMP_IC/ufs-land_C96_init_fields.tile*.nc + +Grid files are available in the ``inputs/UFS_WM/FV3_input_data/INPUT`` directory: + +.. code-block:: + + C96_grid.tile*.nc + grid_spec.nc # aka C96.mosaic.nc + +The ``C96_grid.tile*.nc`` files contain grid information for tiles 1-6 at C96 grid resolution. The ``grid_spec.nc`` file contains information on the mosaic grid. ^^^^^^^^^^^^^^^^^^^^ Additional Files ^^^^^^^^^^^^^^^^^^^^ -The LND component uses a model configuration namelist file as well as atmospheric forcing files, data assimilation files, and restart files, which are also listed in :numref:`Table %s `. +The LND component uses atmospheric forcing files, data assimilation files, and restart files, which are also listed in :numref:`Table %s `. .. _model-config-files: @@ -1045,7 +1147,7 @@ The configuration files used by the UFS Weather Model are listed here and descri * ``diag_table`` * ``field_table`` * ``model_configure`` - * ``nems.configure`` + * ``ufs.configure`` * ``suite_[suite_name].xml`` (used only at build time) * ``datm.streams`` (used by CDEPS) * ``datm_in`` (used by CDEPS) @@ -1278,6 +1380,8 @@ More information on the content of this file can be found in ``FMS/diag_manager/ .. note:: None of the lines in the ``diag_table`` can span multiple lines. +.. _field_tableFile: + ----------------------- ``field_table`` file ----------------------- @@ -1495,46 +1599,64 @@ are not usually changed. - integer - 0 -.. _nems-conf: +.. _ufs-conf: ------------------------ -``nems.configure`` file +``ufs.configure`` file ------------------------ This file contains information about the various NEMS components and their run sequence. The active components for a particular model configuration are given in the *EARTH_component_list*. For each active component, the model name and compute tasks assigned to the component are given. A specific component might also require additional configuration information to be present. The ``runSeq`` describes the order and time intervals over which one or more component models integrate in time. Additional *attributes*, if present, provide additional configuration of the model components when coupled with the CMEPS mediator. -For the ATM application, since it consists of a single component, the ``nems.configure`` is simple and does not need to be changed. +For the ATM application, since it consists of a single component, the ``ufs.configure`` is simple and does not need to be changed. A sample of the file contents is shown below: .. code-block:: console - EARTH_component_list: ATM - ATM_model: fv3 - runSeq:: - ATM - :: - -However, ``nems.configure`` files for other configurations of the Weather Model are more complex. A full set of ``nems.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``nems.configure.*.IN``. A number of samples are available below: - - * :doc:`ATMAQ ` configuration - * :doc:`S2S ` (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) - * :doc:`S2SW ` (fully coupled ``S2SW`` configuration) - * :doc:`S2SWA ` (coupled GOCART in the S2SAW configuration) - * :doc:`NG-GODAS ` (coupled NG-GODAS configuration) - * :doc:`HAFS ` (coupled HAFS configuration) - * :doc:`LND ` (ATML configuration) - - * For more HAFS, HAFSW, and HAFS-ALL configurations please see the following ``nems.configure`` templates: - - * `HAFS ATM-OCN `_ - * `HAFS ATM-WAV `_ - * `HAFS ATM-OCN-WAV `_ - * `HAFS ATM-DOCN `_ + # ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + globalResourceControl: true + + # EARTH # + EARTH_component_list: ATM + EARTH_attributes:: + Verbosity = 0 + :: + + # ATM # + ATM_model: @[atm_model] + ATM_petlist_bounds: @[atm_petlist_bounds] + ATM_omp_num_threads: @[atm_omp_num_threads] + ATM_attributes:: + Verbosity = 0 + Diagnostic = 0 + :: + + # Run Sequence # + runSeq:: + ATM + :: + +However, ``ufs.configure`` files for other configurations of the Weather Model are more complex. A full set of ``ufs.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``ufs.configure.*.IN``. A number of samples are available below: + + * `ATMAQ `__ configuration + * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) + * `S2SW `__ (fully coupled ``S2SW`` configuration) + * `S2SWA `__ (coupled GOCART in the S2SAW configuration) + * `ATM-LND `__ (ATML configuration) + + * For more HAFS, HAFSW, and HAFS-ALL configurations please see the following ``ufs.configure`` templates: + + * `HAFS ATM-OCN `__ + * `HAFS ATM-WAV `__ + * `HAFS ATM-OCN-WAV `__ + * `HAFS ATM-DOCN `__ .. note:: The ``aoflux_grid`` option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are ``xgrid`` (exchange grid), ``agrid`` (atmosphere model grid) and ``ogrid`` (ocean model grid). .. note:: The ``aoflux_code`` option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are ``cesm`` and ``ccpp``. If ``ccpp`` is selected then the suite file provided in the ``aoflux_ccpp_suite`` option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. +.. _SDF-file: + --------------------------------------- The Suite Definition File (SDF) File --------------------------------------- @@ -1553,6 +1675,8 @@ There are four SDFs currently supported for the UFS Short Range Weather App conf Detailed descriptions of the supported suites can be found with the `CCPP v6.0.0 Scientific Documentation `__. +.. _datm.streams-file: + --------------------------------------- ``datm.streams`` --------------------------------------- @@ -1613,6 +1737,7 @@ A sample of the data stream file is shown below: stream_data_files01: DATM_INPUT/cfsr.201110.nc stream_data_variables01: "slmsksfc Sa_mask" "DSWRF Faxa_swdn" "DLWRF Faxa_lwdn" "vbdsf_ave Faxa_swvdr" "vddsf_ave Faxa_swvdf" "nbdsf_ave Faxa_swndr" "nddsf_ave Faxa_swndf" "u10m Sa_u10m" "v10m Sa_v10m" "hgt_hyblev1 Sa_z" "psurf Sa_pslv" "tmp_hyblev1 Sa_tbot" "spfh_hyblev1 Sa_shum" "ugrd_hyblev1 Sa_u" "vgrd_hyblev1 Sa_v" "q2m Sa_q2m" "t2m Sa_t2m" "pres_hyblev1 Sa_pbot" "precp Faxa_rain" "fprecp Faxa_snow" +.. _datm_inFile: --------------------------------------- ``datm_in`` @@ -1689,8 +1814,7 @@ The atmosphere model reads many parameters from a Fortran namelist file, named ` * The `FV3 Dynamical Core Technical Documentation `__ describes some of the other namelist records (dynamics, grid, etc). * The namelist section ``&interpolator_nml`` is not used in this release, and any modifications to it will have no effect on the model results. -.. Last I saw, the Stochastic Physics release/public-v3 was more up-to-date than latest... - +.. _fms_io_nml_section: ^^^^^^^^^^^^^^^^^^ fms_io_nml @@ -1777,6 +1901,7 @@ This release of the UFS Weather Model sets the following variables in the ``&fms max_files_w = 100 / +.. _namsfc_section: ^^^^^^^^^^^^^^^^^^ ``namsfc`` @@ -1788,8 +1913,7 @@ The variables used in ``&namsfc`` to set the filenames are described in :numref: .. _namsfc_nml: -.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of - static datasets.* +.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of static datasets.* :widths: 15 40 15 20 :header-rows: 1 @@ -1898,6 +2022,8 @@ A sample subset of this namelist is shown below: Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/sfcsub.F`` file. +.. _atmos_model_nml_section: + ^^^^^^^^^^^^^^^^^^^^ ``atmos_model_nml`` ^^^^^^^^^^^^^^^^^^^^ @@ -1962,6 +2088,8 @@ A sample of this namelist is shown below: The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. +.. _gfs_physics_nml_section: + ^^^^^^^^^^^^^^^^^^ gfs_physics_nml ^^^^^^^^^^^^^^^^^^ @@ -2007,6 +2135,8 @@ file. Output files ============= +.. _fv3atm-out: + ------- FV3Atm ------- @@ -2034,6 +2164,8 @@ files (controlled by variable print_esmf in the ``model_configure`` file), calle Additional output files include: ``nemsusage.xml``, a timing log file; `time_stamp.out`, contains the model init time; ``RESTART/*nc``, files needed for restart runs. +.. _mom-out: + ------- MOM6 ------- @@ -2074,6 +2206,8 @@ A brief example of the diag_table is shown below. ``"..."`` denotes where lines "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 ... +.. _hycom-out: + ------- HYCOM ------- @@ -2118,6 +2252,8 @@ HYCOM outpus multiple datasets. These datasets contain both dot-a (.a), dot-b (. * - restart_out.(a,b) - HYCOM restart files +.. _cice-out: + ------- CICE6 ------- @@ -2152,7 +2288,9 @@ on the monthly, daily, hourly, yearly or timestep intervals set by the *histfreq *0* for both monthly and daily frequencies and neither yearly nor per-timestep output is requested, only 6-hour mean history files will be produced. -Further details of the configuration of CICE model output can be found in the CICE documentation `3.1.4 `_ +Further details of the configuration of CICE model output can be found in the CICE documentation `Section 3.1.4 `__. + +.. _ww3-out: ------- WW3 @@ -2160,19 +2298,22 @@ WW3 The run directory includes WW3 binary outputs for the gridded outputs (``YYYYMMDD.HHMMSS.out_grd.``), point outputs (``YYYYMMDD.HHMMSS.out_pnt.points``) and restart files (``YYYYMMDD.HHMMSS.restart.``). +.. _cmeps-out: + ------- CMEPS ------- The CMEPS mediator writes general information about the run-time configuration to the file ``mediator.log`` in the model run directory. Optionally, the CMEPS mediator can be configured to write history files for the purposes of examining the field exchanges at various points in the model run sequence. +.. _FMS-info: + ============================================================== Additional Information about the FMS Diagnostic Manager ============================================================== The FMS (Flexible Modeling System) diagnostic manager (``FMS/diag_manager``) manages the output for the ATM and, if present, the MOM6 component in the UFS Weather Model. It is configured using the ``diag_table`` file. Data can be written at any number of sampling and/or averaging intervals -specified at run-time. More information about the FMS diagnostic manager can be found at: -https://data1.gfdl.noaa.gov/summer-school/Lectures/July16/03_Seth1_DiagManager.pdf +specified at run-time. .. _DiagManagerNML: @@ -2181,8 +2322,7 @@ Diagnostic Manager Namelist ------------------------------ The ``diag_manager_nml`` namelist contains values to control the behavior of the diagnostic manager. Some of the more common namelist options are described in :numref:`Table %s `. See -``FMS/diag_manager/diag_manager.F90`` for the complete list or view the FMS documentation -`here `__ for additional information. +``FMS/diag_manager/diag_manager.F90`` for the complete list or view the `FMS documentation `__ for additional information. .. COMMENT: Is it worth linking to the FMS docs? WM just deals with the namelist file... @@ -2241,6 +2381,8 @@ This release of the UFS Weather Model uses the following namelist: prepend_date = .false. / +.. _write-component-info: + ============================================================== Additional Information about the Write Component ============================================================== diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index a34cf19e10..0da2908b2a 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -7,9 +7,8 @@ Introduction The Unified Forecast System (:term:`UFS`) Weather Model (:term:`WM`) is a prognostic model that can be used for short- and medium-range research and operational forecasts, as exemplified by its use in the operational Global Forecast System (GFS) of the National Oceanic and -Atmospheric Administration (NOAA). The UFS WM v2.0.0 is the latest public release of this -software and represents a snapshot of a continuously evolving system undergoing open -development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/. +Atmospheric Administration (NOAA). In addition to its use in NOAA's operational forecast systems, the UFS WM is the atmospheric model used in public UFS application releases, such as the Short-Range Weather (SRW) Application v2.2.0 release. These releases represent a snapshot of a continuously evolving system undergoing open +development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/ and on the Earth Prediction Innovation Center (EPIC) website at https://epic.noaa.gov/get-code/ufs-weather-model/. Key architectural elements of the UFS WM, along with links to external detailed documentation for those elements, are listed below: @@ -22,10 +21,10 @@ for those elements, are listed below: * `Stochastic physics `__ schemes apply randomized perturbations to the physical tendencies, or physical parameters, of a model in order to compensate for model uncertainty. They include the Stochastic Kinetic Backscatter Scheme (SKEBS), the Stochastically Perturbed Parameterization Tendencies (SPPT) scheme, the perturbed boundary layer humidity (SHUM) scheme, the Stochastically Perturbed Parameterizations (SPP) scheme, Land Surface Model SPP (LSM-SPP), and the cellular automata method (:cite:t:`BengtssonEtAl2020`). - * The libraries needed to build the system, such as: + * The libraries needed to build the system, which are bundled together via `spack-stack `__ and include: * `National Centers for Environmental Prediction (NCEP) Libraries `__ - * `Earth System Modeling Framework (ESMF) `__ + * `Earth System Modeling Framework (ESMF) `__ * `External libraries `__ * The build system used to compile the code and generate the executable. @@ -34,7 +33,7 @@ for those elements, are listed below: .. COMMENT: Should NCEP, ESMF, and external libraries be grouped as part of HPC-Stack? Or is this a different set of libraries? -The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v2.0.0 release (June 2022) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v2.0.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. +The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v2.2.0 release (October 2023) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v2.2.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Hera system, the National Center for Atmospheric Research (:term:`NCAR`) Derecho system, the National Science Foundation Stampede system, and Mac laptops. diff --git a/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst b/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst deleted file mode 100644 index 006a275364..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst +++ /dev/null @@ -1,38 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``ATMAQ`` WM Configuration -******************************************************************* - -.. code-block:: console - - EARTH_component_list: ATM AQM - EARTH_attributes:: - Verbosity = 0 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 271 - ATM_attributes:: - Verbosity = 0 - :: - - # AQM # - AQM_model: aqm - AQM_petlist_bounds: 0 271 - AQM_attributes:: - Verbosity = 0 - :: - - # Run Sequence # - runSeq:: - @180 - ATM phase1 - ATM -> AQM - AQM - AQM -> ATM - ATM phase2 - @ - :: - diff --git a/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst b/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst deleted file mode 100644 index c154e51311..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst +++ /dev/null @@ -1,130 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``LND`` WM Configuration -******************************************************************* - -.. code-block:: console - - # ESMF # - logKindFlag: ESMF_LOGKIND_MULTI - globalResourceControl: true - - # EARTH # - EARTH_component_list: MED ATM LND - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: @[med_model] - MED_petlist_bounds: @[med_petlist_bounds] - MED_omp_num_threads: @[med_omp_num_threads] - MED_attributes:: - Verbosity = 1 - Diagnostic = 0 - ATM_model = @[atm_model] - LND_model = @[lnd_model] - MED_model = cmeps - history_n = 6 - history_option = nhours - history_ymd = -999 - coupling_mode = @[CPLMODE] - history_tile_lnd = 96 - history_n_lnd_inst = 6 - history_option_lnd_inst = nhours - :: - - # ATM # - ATM_model: @[atm_model] - ATM_petlist_bounds: @[atm_petlist_bounds] - ATM_omp_num_threads: @[atm_omp_num_threads] - ATM_attributes:: - Verbosity = 0 - Diagnostic = 0 - :: - - # LND # - LND_model: @[lnd_model] - LND_petlist_bounds: @[lnd_petlist_bounds] - LND_omp_num_threads: @[lnd_omp_num_threads] - LND_attributes:: - Verbosity = 1 - Diagnostic = 0 - mosaic_file = @[mosaic_file] - input_dir = INPUT/ - ic_type = @[lnd_ic_type] - layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs - num_soil_levels = 4 - forcing_height = 10 - soil_level_thickness = 0.10:0.30:0.60:1.00 - soil_level_nodes = 0.05:0.25:0.70:1.50 - dynamic_vegetation_option = 4 - canopy_stomatal_resistance_option = 2 - soil_wetness_option = 1 - runoff_option = 1 - surface_exchange_option = 3 - supercooled_soilwater_option = 1 - frozen_soil_adjust_option = 1 - radiative_transfer_option = 3 - snow_albedo_option = 1 - precip_partition_option = 4 - soil_temp_lower_bdy_option = 2 - soil_temp_time_scheme_option = 3 - surface_evap_resistance_option = 1 # not used, it is fixed to 4 in sfc_noahmp_drv.F90 - glacier_option = 1 - surface_thermal_roughness_option = 2 - output_freq = 10800 - calc_snet = @[CALC_SNET] - :: - - # cold - runSeq:: - @@[coupling_interval_sec] - MED med_phases_prep_atm - MED -> ATM :remapMethod=redist - ATM - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - MED med_phases_prep_lnd - MED -> LND :remapMethod=redist - LND - LND -> MED :remapMethod=redist - MED med_phases_post_lnd - MED med_phases_restart_write - MED med_phases_history_write - @ - :: - - # Other Attributes # - DRIVER_attributes:: - :: - - ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 2.5e-1 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - read_restart = @[READRESTART] - mediator_present = true - :: \ No newline at end of file diff --git a/doc/UsersGuide/source/samples/nems.configure.HAFS.rst b/doc/UsersGuide/source/samples/nems.configure.HAFS.rst deleted file mode 100644 index 92aeafcde1..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.HAFS.rst +++ /dev/null @@ -1,110 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``HAFS`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: ATM OCN MED - - # MED # - MED_model: cmeps - MED_petlist_bounds: 1340 1399 - MED_attributes:: - coupling_mode = hafs - system_type = ufs - normalization = none - merge_type = copy - ATM_model = fv3 - OCN_model = hycom - history_ymd = -999 - ScalarFieldCount = 0 - ScalarFieldIdxGridNX = 0 - ScalarFieldIdxGridNY = 0 - ScalarFieldName = cpl_scalars - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0000 1339 - ATM_attributes:: - Verbosity = 1 - Diagnostic = 0 - :: - - # OCN # - OCN_model: hycom - OCN_petlist_bounds: 1340 1399 - OCN_attributes:: - Verbosity = 1 - Diagnostic = 0 - cdf_impexp_freq = 3 - cpl_hour = 0 - cpl_min = 0 - cpl_sec = 360 - base_dtg = 2020082512 - merge_import = .true. - skip_first_import = .true. - hycom_arche_output = .false. - hyc_esmf_exp_output = .true. - hyc_esmf_imp_output = .true. - import_diagnostics = .false. - import_setting = flexible - hyc_impexp_file = nems.configure - espc_show_impexp_minmax = .true. - ocean_start_dtg = 43702.50000 - start_hour = 0 - start_min = 0 - start_sec = 0 - end_hour = 12 - end_min = 0 - end_sec = 0 - :: - - DRIVER_attributes:: - start_type = startup - :: - - ALLCOMP_attributes:: - mediator_read_restart = false - :: - - # CMEPS cold run sequence - - runSeq:: - @360 - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_prep_atm - MED med_phases_prep_ocn_accum - MED med_phases_prep_ocn_avg - MED -> ATM :remapMethod=redist - MED -> OCN :remapMethod=redist - ATM - OCN - @ - :: - - # HYCOM field coupling configuration (location set by hyc_impexp_file) - - ocn_export_fields:: - 'sst' 'sea_surface_temperature' 'K' - 'mask' 'ocean_mask' '1' - :: - - ocn_import_fields:: - 'taux10' 'mean_zonal_moment_flx_atm' 'N_m-2' - 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' - 'prcp' 'mean_prec_rate' 'kg_m-2_s-1' - 'swflxd' 'mean_net_sw_flx' 'W_m-2' - 'lwflxd' 'mean_net_lw_flx' 'W_m-2' - 'mslprs' 'inst_pres_height_surface' 'Pa' - 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' - 'latflx' 'mean_laten_heat_flx' 'W_m-2' - :: - - diff --git a/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst b/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst deleted file mode 100644 index d2e173dbbb..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst +++ /dev/null @@ -1,131 +0,0 @@ -:orphan: - -*********************************************************************** -Sample ``nems.configure`` File for the ``NG-GODAS`` WM Configuration -*********************************************************************** - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM OCN ICE - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 11 - Verbosity = 5 - dbug_flag = 5 - - :: - - # ATM # - ATM_model: datm - ATM_petlist_bounds: 0 11 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - mesh_atm = DATM_INPUT/cfsr_mesh.nc - diro = "." - logfile = atm.log - stop_n = 24 - stop_option = nhours - stop_ymd = -999 - write_restart_at_endofrun = .true. - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 12 27 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx100.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 28 39 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx100.nc - stop_n = 12 - stop_option = nhours - stop_ymd = -999 - :: - - # CMEPS concurrent warm run sequence - - runSeq:: - @3600 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @900 - MED med_phases_prep_ice - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_aofluxes_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - mediator_read_restart = false - :: - MED_attributes:: - ATM_model = datm - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_orig_data - :: - ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxNextSwCday = 3 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = DATM_CFSR - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - coldair_outbreak_mod = .false. - flds_wiso = .false. - flux_convergence = 0.0 - flux_max_iteration = 2 - ocn_surface_flux_scheme = 0 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 - :: - - - diff --git a/doc/UsersGuide/source/samples/nems.configure.S2S.rst b/doc/UsersGuide/source/samples/nems.configure.S2S.rst deleted file mode 100644 index 05d008c321..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2S.rst +++ /dev/null @@ -1,129 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2S`` WM Configuration -******************************************************************* - -.. 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 143 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 149 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 150 269 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx025.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 270 317 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx025.nc - stop_n = 840 - stop_option = nhours - stop_ymd = -999 - :: - - # CMEPS warm run sequence - runSeq:: - @720 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @720 - MED med_phases_aofluxes_run - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - 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 - MED med_phases_history_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - :: - - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 3 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_frac_aoflux - history_tile_atm = 96 - aoflux_grid = 'xgrid' - aoflux_code = 'ccpp' - aoflux_ccpp_suite = 'FV3_sfc_ocean' - ccpp_restart_interval = -1 - ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' - ccpp_input_dir = 'INPUT/' - ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' - ccpp_nstf_name = 2,1,0,0,0 - ccpp_ini_read = true - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 12 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 1.0e-1 - stop_n = 840 - stop_option = nhours - stop_ymd = -999 - :: - -.. note:: The *aoflux_grid* option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are *xgrid* (exchange grid), *agrid* (atmosphere model grid) and *ogrid* (ocean model grid). - -.. note:: The *aoflux_code* option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are *cesm* and *ccpp*. If *ccpp* is selected then the suite file provided in the *aoflux_ccpp_suite* option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. - diff --git a/doc/UsersGuide/source/samples/nems.configure.S2SW.rst b/doc/UsersGuide/source/samples/nems.configure.S2SW.rst deleted file mode 100644 index 3f7aa34698..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2SW.rst +++ /dev/null @@ -1,103 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2SW`` WM Configuration -******************************************************************* - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 143 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 149 - ATM_attributes:: - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 150 179 - OCN_attributes:: - mesh_ocn = mesh.mx100.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 180 191 - ICE_attributes:: - mesh_ice = mesh.mx100.nc - :: - - # WAV # - WAV_model: ww3 - WAV_petlist_bounds: 192 395 - WAV_attributes:: - :: - - # CMEPS warm run sequence - runSeq:: - @3600 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 - OCN - @900 - 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 - 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 - - :: - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_orig - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 24 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - :: diff --git a/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst b/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst deleted file mode 100644 index e3a83199b9..0000000000 --- a/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst +++ /dev/null @@ -1,140 +0,0 @@ -:orphan: - -******************************************************************* -Sample ``nems.configure`` File for the ``S2SWA`` WM Configuration -******************************************************************* - -.. 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 - :: - - diff --git a/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv b/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv new file mode 100644 index 0000000000..89eb311bb1 --- /dev/null +++ b/doc/UsersGuide/source/tables/RRFSDefaultVariables.csv @@ -0,0 +1,66 @@ +Variable, ``export_fv3`` , ``export_rap_common``, ``export_rrfs_v1``, ``export_hrrr_conus13km`` +DATE (SYEAR-SMONTH-SDAY SHOUR:00:00), 2016-10-03 00:00:00, 2021-03-22 06:00:00, *2021-03-22 06:00:00*, 2021-05-12 16:00:00 +Forecast Length in hours (FHMAX), 24, *24*, *24*, 2 +CCPP_SUITE, None set (set in subsequent functions or test file), None set, FV3_RRFS_v1beta, FV3_HRRR +IMP_PHYSICS, 11, 8, *8*, 8 +DT_ATMOS, 1800, 300, *300*, 120 +OUTPUT_GRID, \"'cubed_sphere_grid'\", 'gaussian_grid', *'gaussian_grid'*, lambert_conformal +NTILES, 6, *6*, *6*, 1 +WRITE_DOPOST, .false., .true., *.true.*, .false. +NSTF_NAME, "2\,1\,1\,0\,5", "'2\,0\,0\,0\,0'", "*'2\,0\,0\,0\,0'*", "*'2\,0\,0\,0\,0'*" +IAER, 111, 5111, *5111*, 1011 +NPX, 97, *97*, *97*, 397 +NPY, 97, *97*, *97*, 233 +NPZ, 64, 127, *127*, 65 +NPZP, 65, 128, *128*, 66 +INPES, 3 (``$INPES_dflt`` --- set in machine section), *3*, *3*, 12 +JNPES, 8 (``$JNPES_dflt`` --- set in machine section), *8*, *8*, 12 +UFS_CONFIGURE, ufs.configure.atm.IN, *ufs.configure.atm.IN*, *ufs.configure.atm.IN*, *ufs.configure.atm.IN* +MODEL_CONFIGURE, model_configure.IN, *model_configure.IN*, *model_configure.IN*, model_configure_rrfs_conus13km.IN +DIAG_TABLE, diag_table_gfsv16, *diag_table_gfsv16*, diag_table_rap_noah, diag_table_hrrr +DIAG_TABLE_ADDITIONAL, Not set, Not set, Not set, diag_additional_rrfs_smoke +FIELD_TABLE, field_table_gfsv16, field_table_thompson_aero_tke, *field_table_thompson_aero_tke*, field_table_thompson_aero_tke_smoke +FV3_RUN, None set, control_run.IN, *control_run.IN*, rrfs_warm_run.IN +INPUT_NML, None set, rap.nml.IN, *rap.nml.IN*, rrfs_conus13km_hrrr.nml.IN +MAKE_NH, .true., *.true.*, *.true.*, .false. +NA_INIT, 1, *1*, *1*, 0 +LHEATSTRG, .true., .false., .false., .false. +SEDI_SEMI, .true., *.true.*, *.true.*, .false. +DECFL, 10, *10*, *10*, 8 +RRFS_SMOKE, .false., *.false.*, *.false.*, .true. +SEAS_OPT, 2, *2*, *2*, 0 +LKM, 0, *0*, *0*, 1 +SFCLAY_COMPUTE_FLUX, .false., *.false.*, *.false.*, .true. +ICLIQ_SW, 1, *1*, *1*, 2 +IOVR, 1, *1*, *1*, 3 +KICE, 2, 9, *9*, 9 +EXTERNAL_IC, .true., *.true.*, *.true.*, .false. +NGGPS_IC, .true., *.true.*, *.true.*, .false. +MOUNTAIN, .false., *.false.*, *.false.*, .true. +WARM_START, .false., *.false.*, *.false.*, .true. +RES_LATLON_DYNAMICS, \"''\", *\"''\"*, *\"''\"*, \"'fv3_increment.nc'\" +FHZERO, 6, *6*, *6*, 1.0 +PRINT_DIFF_PGR, .false., *.false.*, *.false.*, .true. +FHCYC, 24, *24*, *24*, 0.0 +CNVCLD, .true., *.true.*, *.true.*, .false. +CDMBWD, "'0.14\,1.8\,1.0\,1.0' (``${CDMBWD_c96}``)", "*'0.14\,1.8\,1.0\,1.0\'*", "*'0.14\,1.8\,1.0\,1.0\'*", "'3.5\,1.0'" +GWD_OPT, 1, *1*, *1*, 3 +DO_GSL_DRAG_LS_BL, .false., *.false.*, *.false.*, .true. +DO_GSL_DRAG_SS, .false., *.false.*, *.false.*, .true. +DO_GSL_DRAG_TOFD, .false., *.false.*, *.false.*, .true. +DNATS, 1, 0, *0*, 0 +DO_SAT_ADJ, .true., .false., *.false.*, .false. +IALB , 1, 2, *2*, 2 +IEMS, 1, 2, *2*, 2 +HYBEDMF, .true., .false., *.false.*, .false. +DO_MYNNEDMF, .false., .true., *.true.*, .true. +DO_MYNNSFCLAY, .false., .true., *.true.*, .true. +DO_MYJPBL, .false., *.false.*, *.false.*, .true. +DO_DEEP, .true., *.true.*, .false., .false. +SHAL_CNV, .true., *.true.*, .false., .false. +IMFSHALCNV, 2, *2*, -1, -1 +IMFDEEPCNV, 2, *2*, -1, -1 +LSM, 1, *1*, 2, 3 +LSOIL_LSM, 4, *4*, 4, 9 +RESTART_INTERVAL, 0, *0*, *0*, 1 +OUTPUT_FH, \"12 -1\", *\"12 -1\"*, *\"12 -1\"*, *\"12 -1\"* \ No newline at end of file diff --git a/doc/UsersGuide/source/tables/rrfs-rts.csv b/doc/UsersGuide/source/tables/rrfs-rts.csv new file mode 100644 index 0000000000..df89f780fe --- /dev/null +++ b/doc/UsersGuide/source/tables/rrfs-rts.csv @@ -0,0 +1,11 @@ +Test |nbsp| Name |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp| |nbsp|,Description,Default Settings,Physics |nbsp| Parameters |nbsp| (see |nbsp| `namelist options `__ for variable definitions),Fcst Length (hours),FIELD_TABLE,Other +`rrfs_v1beta `__,Compare RRFS_v1beta results with previous trunk version,``export_rrfs_v1``, , , ,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' +`rrfs_v1beta_debug `__,Compare RRFS_v1beta debug results with previous trunk version,``export_rrfs_v1``,,1, ,OUTPUT_FH="0 1" +`rrfs_v1nssl `__,Compare RRFS_v1nssl results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_CCN_ON; NSSL_HAIL_ON; NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=7, ,field_table_nssl_tke,RESTART_INTERVAL="6 -1"\; OUTPUT_FH='0 09 12' +`rrfs_v1nssl_nohailnoccn `__,Compare RRFS_v1nssl_nohailnoccn results with previous trunk version,``export_rrfs_v1``,CCPP_SUITE=FV3_RRFS_v1nssl :raw-html:`

` IMP_PHYSICS=17 :raw-html:`

` **Set to FALSE:** NSSL_CCN_ON; NSSL_HAIL_ON; LTAEROSOL :raw-html:`

` **Set to TRUE:** NSSL_INVERTCCN :raw-html:`

` **Set to VALUE:** NWAT=6,,field_table_nssl_nohailnoccn_tke,RESTART_INTERVAL="6 -1"; OUTPUT_FH='0 09 12' +`conus13km_control `__,"HRRR physics on 13km domain, control",``export_hrrr_conus13km``, , , ,RESTART_INTERVAL=1; QUILTING_RESTART=.false. +`conus13km_debug `__,"HRRR physics on 13km domain, debug run",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; QUILTING_RESTART=.false. +`conus13km_restart_mismatch `__,"HRRR physics on 13km domain, restart run",``export_hrrr_conus13km``,,,,FHROT=1;RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000"; RRFS_RESTART=YES; QUILTING_RESTART=.false. +`conus13km_2threads `__,"HRRR physics on 13km domain, two threads",``export_hrrr_conus13km``,,1,,RESTART_INTERVAL=1; atm_omp_num_threads=2; QUILTING_RESTART=.false.; WRTTASK_PER_GROUP=6 +`conus13km_debug_2threads `__,"HRRR physics on 13km domain, debug run with threads",``export_hrrr_conus13km``,,1, ,RESTART_INTERVAL=1; atm_omp_num_threads=2; WRTTASK_PER_GROUP=6; QUILTING_RESTART=.false. +`conus13km_radar_tten_debug `__,"HRRR physics on 13km domain, debug, with radar-derived temperature tendencies",``export_hrrr_conus13km``,,1,,"RESTART_INTERVAL=1; FH_DFI_RADAR='0.0\,0.25\,0.50\,0.75\,1.0'; QUILTING_RESTART=.false." \ No newline at end of file diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index e258628a7a..aba7519d72 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -2,7 +2,7 @@ help([[ Load environment to build UFS on Acorn with Intel compiler ]]) -prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") load("stack-intel") load("stack-cray-mpich") diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua index ae96ff930e..1f395d9769 100644 --- a/modulefiles/ufs_common.lua +++ b/modulefiles/ufs_common.lua @@ -10,8 +10,8 @@ local ufs_modules = { {["netcdf-c"] = "4.9.2"}, {["netcdf-fortran"] = "4.6.0"}, {["parallelio"] = "2.5.10"}, - {["esmf"] = "8.4.2"}, - {["fms"] = "2023.01"}, + {["esmf"] = "8.5.0"}, + {["fms"] = "2023.02.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.4.5"}, @@ -19,8 +19,8 @@ local ufs_modules = { {["ip"] = "4.3.0"}, {["sp"] = "2.3.3"}, {["w3emc"] = "2.10.0"}, - {["gftl-shared"] = "1.5.0"}, - {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["gftl-shared"] = "1.6.1"}, + {["mapl"] = "2.40.3-esmf-8.5.0"}, {["scotch"] = "7.0.4"}, } diff --git a/modulefiles/ufs_derecho.intel.lua b/modulefiles/ufs_derecho.intel.lua index 24e82b606b..3bf89ee9fe 100644 --- a/modulefiles/ufs_derecho.intel.lua +++ b/modulefiles/ufs_derecho.intel.lua @@ -9,7 +9,7 @@ load("mysql/8.0.33") setenv("LMOD_TMOD_FIND_FIRST","yes") prepend_path("MODULEPATH", "/lustre/desc1/scratch/epicufsrt/contrib/modulefiles_extra") -prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/spack-stack/derecho/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") unload("ncarcompilers") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.10.0" diff --git a/modulefiles/ufs_gaea-c5.intel.lua b/modulefiles/ufs_gaea-c5.intel.lua index 2d1c18b022..0162442940 100644 --- a/modulefiles/ufs_gaea-c5.intel.lua +++ b/modulefiles/ufs_gaea-c5.intel.lua @@ -10,7 +10,7 @@ load("intel-classic/2023.1.0") load("cray-mpich/8.1.25") load("python/3.9.12") -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles") stack_intel_ver=os.getenv("stack_intel_ver") or "2023.1.0" diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua deleted file mode 100644 index 4d316452ea..0000000000 --- a/modulefiles/ufs_gaea.intel.lua +++ /dev/null @@ -1,35 +0,0 @@ -help([[ - This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea using Intel-2022.0.2 -]]) - -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) - -unload("intel") -unload("cray-mpich") -unload("cray-python") -unload("darshan") - -prepend_path("MODULEPATH", "/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c4/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") - -stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" -load(pathJoin("stack-intel", stack_intel_ver)) - -stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "7.7.20" -load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) - -cmake_ver=os.getenv("cmake_ver") or "3.23.1" -load(pathJoin("cmake", cmake_ver)) - --- Needed at runtime: -load("alps") - -load("ufs_common") - -nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" -load(pathJoin("nccmp", nccmp_ver)) - -setenv("CC","cc") -setenv("CXX","CC") -setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intel") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 8aec92c87a..a3913978fd 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/GNU ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-noavx512/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") -- for openmpi, need prepend_path("MODULEPATH", "/scratch1/NCEPDEV/jcsda/jedipara/spack-stack/modulefiles") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index cd8f42092c..bad1fb0792 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hera/Intel ]]) -prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env-noavx512/install/modulefiles/Core") +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_hercules.gnu.lua b/modulefiles/ufs_hercules.gnu.lua index c8ad2e492b..1e4849aa5a 100644 --- a/modulefiles/ufs_hercules.gnu.lua +++ b/modulefiles/ufs_hercules.gnu.lua @@ -2,11 +2,11 @@ help([[ loads UFS Model prerequisites for Hercules/GNU ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.0/envs/unified-env-mvap2/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") -- for mvapich2, need: prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/modulefiles") -stack_gnu_ver=os.getenv("stack_gnu_ver") or "11.3.1" +stack_gnu_ver=os.getenv("stack_gnu_ver") or "12.2.0" load(pathJoin("stack-gcc", stack_gnu_ver)) stack_mvapich2_ver=os.getenv("stack_mvapich2_ver") or "2.3.7" diff --git a/modulefiles/ufs_hercules.intel.lua b/modulefiles/ufs_hercules.intel.lua index ca7e282217..605fe5792b 100644 --- a/modulefiles/ufs_hercules.intel.lua +++ b/modulefiles/ufs_hercules.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Hercules/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/hercules/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.9.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index a946e3ca65..7cd0e39465 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Jet/Intel ]]) -prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/spack-stack/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2021.5.0" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 484e002d3b..fe54d07737 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -2,7 +2,7 @@ help([[ loads UFS Model prerequisites for Orion/Intel ]]) -prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.5.0/envs/unified-env/install/modulefiles/Core") +prepend_path("MODULEPATH", "/work/noaa/epic/role-epic/spack-stack/orion/spack-stack-1.5.1/envs/unified-env/install/modulefiles/Core") stack_intel_ver=os.getenv("stack_intel_ver") or "2022.0.2" load(pathJoin("stack-intel", stack_intel_ver)) diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua index de5a81f732..b9c94e53aa 100644 --- a/modulefiles/ufs_wcoss2.intel.lua +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -18,18 +18,18 @@ load(pathJoin("cray-mpich", cray_mpich_ver)) cmake_ver=os.getenv("cmake_ver") or "3.20.2" load(pathJoin("cmake", cmake_ver)) -prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/compiler/intel/19.1.3.304") -prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") +--prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/compiler/intel/19.1.3.304") +--prepend_path("MODULEPATH", "/apps/test/hpc-stack/i-19.1.3.304__m-8.1.12__h-1.14.0__n-4.9.2__p-2.5.10__e-8.4.2/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.12") local ufs_modules = { {["jasper"] = "2.0.25"}, {["zlib"] = "1.2.11"}, {["libpng"] = "1.6.37"}, - {["hdf5"] = "1.14.0"}, - {["netcdf"] = "4.9.2"}, - {["pio"] = "2.5.10"}, - {["esmf"] = "8.4.2"}, - {["fms"] = "2023.01"}, + {["hdf5-B"] = "1.14.0"}, + {["netcdf-B"] = "4.9.2"}, + {["pio-B"] = "2.5.10"}, + {["esmf-B"] = "8.5.0"}, + {["fms"] = "2023.02.01"}, {["bacio"] = "2.4.1"}, {["crtm"] = "2.4.0"}, {["g2"] = "3.4.5"}, @@ -37,8 +37,8 @@ local ufs_modules = { {["ip"] = "3.3.3"}, {["sp"] = "2.3.3"}, {["w3emc"] = "2.9.2"}, - {["gftl-shared"] = "v1.5.0"}, - {["mapl"] = "2.35.2-esmf-8.4.2"}, + {["gftl-shared"] = "1.6.1"}, + {["mapl-B"] = "2.40.3"}, } for i = 1, #ufs_modules do diff --git a/stochastic_physics b/stochastic_physics index 37e7405269..a556180202 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 37e740526993fd162d092266ced19c625fbc3d8e +Subproject commit a5561802021d89a9a1e2b52cb69393efcdc6f71c diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py index 0c35c3c010..7b18e54ac8 100644 --- a/tests/auto-jenkins/jobs/bl.py +++ b/tests/auto-jenkins/jobs/bl.py @@ -28,11 +28,6 @@ def set_directories(job_obj): blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ f'emc.nemspara/FV3_RT/REGRESSION_TEST' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' - blstore = '/lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs' - rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ - f'REGRESSION_TEST' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' blstore = '/work/noaa/epic/UFS-WM_RT/NEMSfv3gfs' diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py index 8d5320542c..6622eae37a 100644 --- a/tests/auto-jenkins/jobs/rt.py +++ b/tests/auto-jenkins/jobs/rt.py @@ -27,8 +27,6 @@ def set_directories(job_obj): workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif job_obj.machine == 'jet': workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' elif job_obj.machine == 'hercules': diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py index fba7f4ffa8..9c54a7d3a5 100755 --- a/tests/auto-jenkins/rt_auto_jenkins.py +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -77,8 +77,6 @@ def delete_pr_dirs(each_pr, machine): workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' elif machine == 'jet': workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' - elif machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' elif machine == 'orion': workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' elif machine == 'hercules': @@ -114,8 +112,6 @@ def delete_rt_dirs(in_dir, machine, workdir): elif machine == 'jet': rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ f'emc.nemspara/FV3_RT' - elif machine == 'gaea': - rt_dir = '/lustre/f2/scratch/role.epic/FV3_RT' elif machine == 'orion': rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' elif machine == 'hercules': @@ -292,9 +288,6 @@ def setup_env(): elif bool(re.match(re.compile('tfe.+'), hostname)): machine = 'jet' os.environ['ACCNR'] = 'hfv3gfs' - elif bool(re.match(re.compile('gaea.+'), hostname)): - machine = 'gaea' - os.environ['ACCNR'] = 'nggps_emc' elif bool(re.match(re.compile('Orion-login.+'), hostname)): machine = 'orion' os.environ['ACCNR'] = 'epic-ps' diff --git a/tests/bl_date.conf b/tests/bl_date.conf index c7c661b833..eb09e0790b 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20231221 +export BL_DATE=20240111 diff --git a/tests/bl_date.ncar.conf b/tests/bl_date.ncar.conf index 9f5e541270..ba3e5ef566 100644 --- a/tests/bl_date.ncar.conf +++ b/tests/bl_date.ncar.conf @@ -1,2 +1,2 @@ -export BL_DATE=20240229 +export BL_DATE=20240313 diff --git a/tests/compile.sh b/tests/compile.sh index 2e7d004337..567c80c756 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -57,11 +57,8 @@ set +x if [[ $MACHINE_ID == macosx ]] || [[ $MACHINE_ID == linux ]]; then source $PATHTR/modulefiles/ufs_${MACHINE_ID}.${RT_COMPILER} else - # Activate lua environment for gaea c4 - if [[ $MACHINE_ID == gaea ]]; then - source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh # Activate lua environment for gaea c5 - elif [[ $MACHINE_ID == gaea-c5 ]]; then + if [[ $MACHINE_ID == gaea-c5 ]]; then source /lustre/f2/dev/role.epic/contrib/Lmod_init_C5.sh fi # Load fv3 module diff --git a/tests/default_vars.sh b/tests/default_vars.sh index f54922c4b8..4b7d03ce29 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -216,19 +216,6 @@ elif [[ $MACHINE_ID = s4 ]]; then ICE_tasks_cpl_bmrk=48 WAV_tasks_cpl_bmrk=80 -elif [[ $MACHINE_ID = gaea ]]; then - - TPN=24 - - INPES_dflt=3 ; JNPES_dflt=8 - INPES_thrd=3 ; JNPES_thrd=4 - INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=1 - INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - - 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 - elif [[ $MACHINE_ID = gaea-c5 ]]; then TPN=128 @@ -249,7 +236,7 @@ elif [[ $MACHINE_ID = derecho ]]; then INPES_thrd=3 ; JNPES_thrd=4 INPES_c384=8 ; JNPES_c384=6 ; THRD_c384=2 INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=2 - + 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 @@ -314,6 +301,10 @@ WLCLK_dflt=30 export WLCLK=$WLCLK_dflt export CMP_DATAONLY=false +# Defaults for ufs.configure +export esmf_logkind="ESMF_LOGKIND_MULTI" +export DumpFields="false" + export_fv3 () { # ufs.configure defaults @@ -728,11 +719,12 @@ export WW3_CUR='C' export WW3_ICE='C' export WW3_IC1='F' export WW3_IC5='F' +export WW3_user_sets_restname="true" } # Defaults for the coupled 5-component export_cmeps() { -export UFS_CONFIGURE=ufs.configure.s2swa.IN +export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN export med_model=cmeps export atm_model=fv3 export chm_model=gocart diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 3a76d688e5..09607c46ba 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -28,21 +28,6 @@ case $(hostname -f) in alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn alogin03.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - gaea10) MACHINE_ID=gaea ;; ### gaea10 - gaea11) MACHINE_ID=gaea ;; ### gaea11 - gaea12) MACHINE_ID=gaea ;; ### gaea12 - gaea13) MACHINE_ID=gaea ;; ### gaea13 - gaea14) MACHINE_ID=gaea ;; ### gaea14 - gaea15) MACHINE_ID=gaea ;; ### gaea15 - gaea16) MACHINE_ID=gaea ;; ### gaea16 - gaea10.ncrc.gov) MACHINE_ID=gaea ;; ### gaea10 - gaea11.ncrc.gov) MACHINE_ID=gaea ;; ### gaea11 - gaea12.ncrc.gov) MACHINE_ID=gaea ;; ### gaea12 - gaea13.ncrc.gov) MACHINE_ID=gaea ;; ### gaea13 - gaea14.ncrc.gov) MACHINE_ID=gaea ;; ### gaea14 - gaea15.ncrc.gov) MACHINE_ID=gaea ;; ### gaea15 - gaea16.ncrc.gov) MACHINE_ID=gaea ;; ### gaea16 - gaea51.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea51 gaea52.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea52 gaea53.ncrc.gov) MACHINE_ID=gaea-c5 ;; ### gaea53 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea deleted file mode 100644 index bdbd2565d5..0000000000 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -l -#SBATCH -e err -#SBATCH -o out -#SBATCH --account=@[ACCNR] -##SBATCH --qos=@[QUEUE] -#SBATCH --clusters=es -#SBATCH --partition=eslogin -#SBATCH --exclude=gaea9 -#SBATCH --nodes=1 -#SBATCH --ntasks-per-node=8 -#SBATCH --time=180 -#SBATCH --job-name="@[JBNME]" - -set -eux - -echo -n " $( date +%s )," > job_timestamp.txt -echo "Compile started: " `date` - -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] @[RT_COMPILER] - -echo "Compile ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea deleted file mode 100644 index 2446d311e5..0000000000 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash -l -#SBATCH -e err -#SBATCH -o out -#SBATCH --job-name="@[JBNME]" -#SBATCH --account=@[ACCNR] -##SBATCH --qos=@[QUEUE] -#SBATCH --clusters=@[PARTITION] -#SBATCH --nodes=@[NODES] -#SBATCH --ntasks-per-node=@[TPN] -#SBATCH --time=@[WLCLK] - -set -eux -echo -n " $( date +%s )," > job_timestamp.txt - -set +x -MACHINE_ID=gaea -source ./module-setup.sh -module use --prepend $PWD/modulefiles -module load modules.fv3 -module list -set -x - -ulimit -s unlimited -ulimit -l unlimited - -echo "Model started: " `date` - -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=1024M -export NC_BLKSZ=1M -export ESMF_RUNTIME_PROFILE=ON -export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" - -# Avoid job errors because of filesystem synchronization delays -sync && sleep 1 - -srun --label -n @[TASKS] ./fv3.exe - -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4082cfb59b..470b0391b2 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Dec 22 06:16:32 UTC 2023 +Fri Jan 12 19:48:57 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_bit_base Checking test bit_base control_p8_gnu results .... Moving baseline bit_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 281.443220 - 0: The maximum resident set size (KB) = 1300888 + 0: The total amount of wall time = 280.692175 + 0: The maximum resident set size (KB) = 1308524 Test bit_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_dbg_base Checking test dbg_base control_p8_gnu results .... Moving baseline dbg_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 909.218826 - 0: The maximum resident set size (KB) = 1295320 + 0: The total amount of wall time = 940.734293 + 0: The maximum resident set size (KB) = 1289040 Test dbg_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_dcp Checking test dcp control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -160,14 +160,14 @@ Checking test dcp control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.931035 - 0: The maximum resident set size (KB) = 1278208 + 0: The total amount of wall time = 256.297716 + 0: The maximum resident set size (KB) = 1287656 Test dcp control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_mpi Checking test mpi control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -214,14 +214,14 @@ Checking test mpi control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 247.765128 - 0: The maximum resident set size (KB) = 1279792 + 0: The total amount of wall time = 263.293767 + 0: The maximum resident set size (KB) = 1271204 Test mpi control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_rst Checking test rst control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.426568 - 0: The maximum resident set size (KB) = 1282060 + 0: The total amount of wall time = 254.624691 + 0: The maximum resident set size (KB) = 1279072 Test rst control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_std_base Checking test std_base control_p8_gnu results .... Moving baseline std_base control_p8_gnu files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8_gnu files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 249.782075 - 0: The maximum resident set size (KB) = 1279948 + 0: The total amount of wall time = 254.478570 + 0: The maximum resident set size (KB) = 1287088 Test std_base control_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_122459/control_p8_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_185141/control_p8_gnu_thr Checking test thr control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.076557 - 0: The maximum resident set size (KB) = 1279020 + 0: The total amount of wall time = 248.638375 + 0: The maximum resident set size (KB) = 1286604 Test thr control_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Dec 22 07:58:22 UTC 2023 -Elapsed time: 01h:41m:51s. Have a nice day! +Fri Jan 12 21:08:01 UTC 2024 +Elapsed time: 01h:19m:04s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index cc63b62f4c..95cbd4e0d2 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Dec 22 06:14:35 UTC 2023 +Mon Jan 15 06:18:58 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_191182/cpld_control_nowave_noaero_p8_gnu_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_274868/cpld_control_nowave_noaero_p8_gnu_dbg_base Checking test dbg_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base cpld_control_nowave_noaero_p8_gnu 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 = 1237.935269 - 0: The maximum resident set size (KB) = 1411868 + 0: The total amount of wall time = 1271.160940 + 0: The maximum resident set size (KB) = 1406920 Test dbg_base cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_191182/cpld_control_nowave_noaero_p8_gnu_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_274868/cpld_control_nowave_noaero_p8_gnu_rst Checking test rst cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test rst cpld_control_nowave_noaero_p8_gnu 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 = 387.625397 - 0: The maximum resident set size (KB) = 1404316 + 0: The total amount of wall time = 387.529839 + 0: The maximum resident set size (KB) = 1401924 Test rst cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_191182/cpld_control_nowave_noaero_p8_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_274868/cpld_control_nowave_noaero_p8_gnu_std_base Checking test std_base cpld_control_nowave_noaero_p8_gnu results .... Moving baseline std_base cpld_control_nowave_noaero_p8_gnu files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base cpld_control_nowave_noaero_p8_gnu 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 = 381.486931 - 0: The maximum resident set size (KB) = 1408412 + 0: The total amount of wall time = 388.134959 + 0: The maximum resident set size (KB) = 1400976 Test std_base cpld_control_nowave_noaero_p8_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Dec 22 07:18:47 UTC 2023 -Elapsed time: 01h:04m:12s. Have a nice day! +Mon Jan 15 07:17:55 UTC 2024 +Elapsed time: 00h:58m:58s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index fd934aaacc..8389bdc821 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Dec 22 06:17:57 UTC 2023 +Mon Jan 15 05:38:53 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_83059/regional_control_gnu_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_232569/regional_control_gnu_dcp Checking test dcp regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -14,14 +14,14 @@ Checking test dcp regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 513.639730 - 0: The maximum resident set size (KB) = 587036 + 0: The total amount of wall time = 521.047614 + 0: The maximum resident set size (KB) = 587072 Test dcp regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_83059/regional_control_gnu_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_232569/regional_control_gnu_std_base Checking test std_base regional_control_gnu results .... Moving baseline std_base regional_control_gnu files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base regional_control_gnu files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 520.401956 - 0: The maximum resident set size (KB) = 584912 + 0: The total amount of wall time = 528.718784 + 0: The maximum resident set size (KB) = 589816 Test std_base regional_control_gnu PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_83059/regional_control_gnu_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_232569/regional_control_gnu_thr Checking test thr regional_control_gnu results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -51,11 +51,11 @@ Checking test thr regional_control_gnu results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 513.731210 - 0: The maximum resident set size (KB) = 584504 + 0: The total amount of wall time = 534.221812 + 0: The maximum resident set size (KB) = 587052 Test thr regional_control_gnu PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Dec 22 06:54:19 UTC 2023 -Elapsed time: 00h:36m:24s. Have a nice day! +Mon Jan 15 06:17:20 UTC 2024 +Elapsed time: 00h:38m:28s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 63a9d01270..4f16e684e2 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,76 +1,76 @@ -Thu Feb 29 09:59:09 UTC 2024 +Wed Mar 13 18:16:10 UTC 2024 Start Regression test -Testing UFSWM Hash: 8f8dab523e2f43be5309384e69b6b755dc7cbae6 +Testing UFSWM Hash: 2eb5ce6078dee75f6e008da06e45b7f21caaa60f Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) - e5d08d4233b0c783a4840dcbc3252a170e3c3bb1 CMEPS-interface/CMEPS (cmeps_v0.4.1-1406-ge5d08d4) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-1408-gf8f7ba7) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0ffe731fe01568952baee524178f6c76fed46950 FV3 (remotes/origin/ufs-dev-PR126) + 59408a7e3c94a68528af556bf0ff13137873296b FV3 (GFSv17.HR2-103-g59408a7) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) + 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9875-g60c397b91) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) - 62b89146be1250f354cd50a14096c0c25f2f3952 stochastic_physics (ufs-v2.0.0-191-g62b8914) -Compile atm_debug_dyn32_intel elapsed time 245 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 181 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 604 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 205 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 209 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 290 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 557 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 209 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 559 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 546 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 587 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 587 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 579 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 224 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 123 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 246 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 85 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 602 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 288 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 644 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 198 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 546 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 553 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 596 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 256 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 599 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 229 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 637 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 130 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 248 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 257 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 913 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 672 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 248 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 954 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 154 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 959 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 283 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 674 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 107 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_intel elapsed time 525 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 241 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 193 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 580 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 199 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 196 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 299 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 687 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 186 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 664 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 586 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 560 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 646 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 812 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 174 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 376 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 801 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 365 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 78 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 576 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 209 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 591 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 597 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 691 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 514 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 523 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 213 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 678 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 835 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 679 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 307 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 717 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 127 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 227 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 822 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 885 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 739 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 342 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1032 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 146 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 355 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 1064 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 875 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 766 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 506 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_mixedmode_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_p8_mixedmode_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 306.192052 - 0: The maximum resident set size (KB) = 3107352 + 0: The total amount of wall time = 306.907830 + 0: The maximum resident set size (KB) = 3125132 Test 001 cpld_control_p8_mixedmode_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 942.724538 - 0: The maximum resident set size (KB) = 1715808 + 0: The total amount of wall time = 950.168705 + 0: The maximum resident set size (KB) = 1710280 Test 002 cpld_control_gfsv17_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_gfsv17_iau_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_gfsv17_iau_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -222,14 +222,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 632.867161 - 0: The maximum resident set size (KB) = 1113920 + 0: The total amount of wall time = 632.011687 + 0: The maximum resident set size (KB) = 1113660 Test 003 cpld_control_gfsv17_iau_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -282,14 +282,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 453.524685 - 0: The maximum resident set size (KB) = 1095816 + 0: The total amount of wall time = 449.538734 + 0: The maximum resident set size (KB) = 1074368 Test 004 cpld_restart_gfsv17_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_mpi_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,14 +353,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1073.461142 - 0: The maximum resident set size (KB) = 1616148 + 0: The total amount of wall time = 1103.063647 + 0: The maximum resident set size (KB) = 1629436 Test 005 cpld_mpi_gfsv17_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_gfsv17_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_gfsv17_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -412,14 +412,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1180.955426 - 0: The maximum resident set size (KB) = 1672280 + 0: The total amount of wall time = 1139.446478 + 0: The maximum resident set size (KB) = 1671844 Test 006 cpld_debug_gfsv17_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 334.575229 - 0: The maximum resident set size (KB) = 3156788 + 0: The total amount of wall time = 334.607693 + 0: The maximum resident set size (KB) = 3141620 Test 007 cpld_control_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -544,14 +544,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.042111 - 0: The maximum resident set size (KB) = 3207152 + 0: The total amount of wall time = 192.041220 + 0: The maximum resident set size (KB) = 3200624 Test 008 cpld_restart_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_qr_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 333.280499 - 0: The maximum resident set size (KB) = 3208544 + 0: The total amount of wall time = 340.726033 + 0: The maximum resident set size (KB) = 3169308 Test 009 cpld_control_qr_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_qr_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 201.992812 - 0: The maximum resident set size (KB) = 3089116 + 0: The total amount of wall time = 192.433413 + 0: The maximum resident set size (KB) = 3259336 Test 010 cpld_restart_qr_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_2threads_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -736,14 +736,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 317.686198 - 0: The maximum resident set size (KB) = 3528720 + 0: The total amount of wall time = 313.877652 + 0: The maximum resident set size (KB) = 3539816 Test 011 cpld_2threads_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_decomp_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 329.733061 - 0: The maximum resident set size (KB) = 3182068 + 0: The total amount of wall time = 330.933755 + 0: The maximum resident set size (KB) = 3186096 Test 012 cpld_decomp_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_mpi_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -856,14 +856,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 275.101221 - 0: The maximum resident set size (KB) = 3031116 + 0: The total amount of wall time = 282.017296 + 0: The maximum resident set size (KB) = 3037856 Test 013 cpld_mpi_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_ciceC_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_ciceC_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 330.602131 - 0: The maximum resident set size (KB) = 3143076 + 0: The total amount of wall time = 338.146419 + 0: The maximum resident set size (KB) = 3164472 Test 014 cpld_control_ciceC_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_c192_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_c192_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -988,14 +988,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 570.381945 - 0: The maximum resident set size (KB) = 3327636 + 0: The total amount of wall time = 569.397281 + 0: The maximum resident set size (KB) = 3322732 Test 015 cpld_control_c192_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_c192_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_c192_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1048,14 +1048,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 377.988852 - 0: The maximum resident set size (KB) = 3606932 + 0: The total amount of wall time = 356.281314 + 0: The maximum resident set size (KB) = 3578656 Test 016 cpld_restart_c192_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_bmark_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_bmark_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1103,14 +1103,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 611.965386 - 0: The maximum resident set size (KB) = 4135356 + 0: The total amount of wall time = 577.366904 + 0: The maximum resident set size (KB) = 4098848 Test 017 cpld_bmark_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_bmark_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_bmark_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1158,15 +1158,73 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 494.775343 - 0: The maximum resident set size (KB) = 4328428 + 0: The total amount of wall time = 376.951561 + 0: The maximum resident set size (KB) = 4343512 Test 018 cpld_restart_bmark_p8_intel PASS +baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_s2sa_p8_intel +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_s2sa_p8_intel +Checking test 019 cpld_s2sa_p8_intel 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/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.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 = 311.169234 + 0: The maximum resident set size (KB) = 3159364 + +Test 019 cpld_s2sa_p8_intel PASS + + baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_noaero_p8_intel -Checking test 019 cpld_control_noaero_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_noaero_p8_intel +Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1229,15 +1287,15 @@ Checking test 019 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 260.084642 - 0: The maximum resident set size (KB) = 1726896 + 0: The total amount of wall time = 262.615695 + 0: The maximum resident set size (KB) = 1738440 -Test 019 cpld_control_noaero_p8_intel PASS +Test 020 cpld_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_c96_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_nowave_noaero_p8_intel -Checking test 020 cpld_control_nowave_noaero_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_nowave_noaero_p8_intel +Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1298,15 +1356,15 @@ Checking test 020 cpld_control_nowave_noaero_p8_intel 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 = 251.186996 - 0: The maximum resident set size (KB) = 1752828 + 0: The total amount of wall time = 257.459028 + 0: The maximum resident set size (KB) = 1746684 -Test 020 cpld_control_nowave_noaero_p8_intel PASS +Test 021 cpld_control_nowave_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_p8_intel -Checking test 021 cpld_debug_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_p8_intel +Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1358,15 +1416,15 @@ Checking test 021 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 486.618012 - 0: The maximum resident set size (KB) = 3146536 + 0: The total amount of wall time = 479.053700 + 0: The maximum resident set size (KB) = 3235512 -Test 021 cpld_debug_p8_intel PASS +Test 022 cpld_debug_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_noaero_p8_intel -Checking test 022 cpld_debug_noaero_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_noaero_p8_intel +Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1417,15 +1475,15 @@ Checking test 022 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 328.890990 - 0: The maximum resident set size (KB) = 1740476 + 0: The total amount of wall time = 322.292613 + 0: The maximum resident set size (KB) = 1729836 -Test 022 cpld_debug_noaero_p8_intel PASS +Test 023 cpld_debug_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_noaero_p8_agrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_noaero_p8_agrid_intel -Checking test 023 cpld_control_noaero_p8_agrid_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_noaero_p8_agrid_intel +Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1486,15 +1544,15 @@ Checking test 023 cpld_control_noaero_p8_agrid_intel 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 = 253.704107 - 0: The maximum resident set size (KB) = 1733084 + 0: The total amount of wall time = 250.102364 + 0: The maximum resident set size (KB) = 1719428 -Test 023 cpld_control_noaero_p8_agrid_intel PASS +Test 024 cpld_control_noaero_p8_agrid_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_c48_intel -Checking test 024 cpld_control_c48_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_c48_intel +Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1543,15 +1601,15 @@ Checking test 024 cpld_control_c48_intel 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 = 559.040195 - 0: The maximum resident set size (KB) = 2818904 + 0: The total amount of wall time = 548.537290 + 0: The maximum resident set size (KB) = 2809392 -Test 024 cpld_control_c48_intel PASS +Test 025 cpld_control_c48_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_p8_faster_intel -Checking test 025 cpld_control_p8_faster_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_p8_faster_intel +Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1615,15 +1673,15 @@ Checking test 025 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 308.380272 - 0: The maximum resident set size (KB) = 3138160 + 0: The total amount of wall time = 311.059204 + 0: The maximum resident set size (KB) = 3193720 -Test 025 cpld_control_p8_faster_intel PASS +Test 026 cpld_control_p8_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_pdlib_p8_intel -Checking test 026 cpld_control_pdlib_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_pdlib_p8_intel +Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1686,15 +1744,15 @@ Checking test 026 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 959.753664 - 0: The maximum resident set size (KB) = 1754456 + 0: The total amount of wall time = 968.686148 + 0: The maximum resident set size (KB) = 1753808 -Test 026 cpld_control_pdlib_p8_intel PASS +Test 027 cpld_control_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_restart_pdlib_p8_intel -Checking test 027 cpld_restart_pdlib_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_restart_pdlib_p8_intel +Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1745,15 +1803,15 @@ Checking test 027 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 453.549508 - 0: The maximum resident set size (KB) = 1145436 + 0: The total amount of wall time = 451.860623 + 0: The maximum resident set size (KB) = 1158936 -Test 027 cpld_restart_pdlib_p8_intel PASS +Test 028 cpld_restart_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_mpi_pdlib_p8_intel -Checking test 028 cpld_mpi_pdlib_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_mpi_pdlib_p8_intel +Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1816,15 +1874,15 @@ Checking test 028 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1111.743062 - 0: The maximum resident set size (KB) = 1620176 + 0: The total amount of wall time = 1105.365588 + 0: The maximum resident set size (KB) = 1658228 -Test 028 cpld_mpi_pdlib_p8_intel PASS +Test 029 cpld_mpi_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_pdlib_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_pdlib_p8_intel -Checking test 029 cpld_debug_pdlib_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_pdlib_p8_intel +Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1875,15 +1933,15 @@ Checking test 029 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1434.506079 - 0: The maximum resident set size (KB) = 1698988 + 0: The total amount of wall time = 1455.927833 + 0: The maximum resident set size (KB) = 1701296 -Test 029 cpld_debug_pdlib_p8_intel PASS +Test 030 cpld_debug_pdlib_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_flake_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_flake_intel -Checking test 030 control_flake_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_flake_intel +Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1893,15 +1951,15 @@ Checking test 030 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.813944 - 0: The maximum resident set size (KB) = 658184 + 0: The total amount of wall time = 189.328058 + 0: The maximum resident set size (KB) = 698636 -Test 030 control_flake_intel PASS +Test 031 control_flake_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_CubedSphereGrid_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_CubedSphereGrid_intel -Checking test 031 control_CubedSphereGrid_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_CubedSphereGrid_intel +Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1927,15 +1985,15 @@ Checking test 031 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 139.084165 - 0: The maximum resident set size (KB) = 639772 + 0: The total amount of wall time = 133.087724 + 0: The maximum resident set size (KB) = 647688 -Test 031 control_CubedSphereGrid_intel PASS +Test 032 control_CubedSphereGrid_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_CubedSphereGrid_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_CubedSphereGrid_parallel_intel -Checking test 032 control_CubedSphereGrid_parallel_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_CubedSphereGrid_parallel_intel +Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1943,21 +2001,21 @@ Checking test 032 control_CubedSphereGrid_parallel_intel results .... Comparing cubed_sphere_grid_sfcf000.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_atmf000.nc .........OK - Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_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 = 154.351990 - 0: The maximum resident set size (KB) = 627356 + 0: The total amount of wall time = 140.972505 + 0: The maximum resident set size (KB) = 645588 -Test 032 control_CubedSphereGrid_parallel_intel PASS +Test 033 control_CubedSphereGrid_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_latlon_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_latlon_intel -Checking test 033 control_latlon_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_latlon_intel +Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1967,15 +2025,15 @@ Checking test 033 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.209597 - 0: The maximum resident set size (KB) = 630524 + 0: The total amount of wall time = 135.763305 + 0: The maximum resident set size (KB) = 643560 -Test 033 control_latlon_intel PASS +Test 034 control_latlon_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_wrtGauss_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_wrtGauss_netcdf_parallel_intel -Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_wrtGauss_netcdf_parallel_intel +Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1985,15 +2043,15 @@ Checking test 034 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.038379 - 0: The maximum resident set size (KB) = 645108 + 0: The total amount of wall time = 140.520086 + 0: The maximum resident set size (KB) = 642496 -Test 034 control_wrtGauss_netcdf_parallel_intel PASS +Test 035 control_wrtGauss_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_c48_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_c48_intel -Checking test 035 control_c48_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_c48_intel +Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2031,15 +2089,15 @@ Checking test 035 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 372.348377 -0: The maximum resident set size (KB) = 867328 +0: The total amount of wall time = 369.250674 +0: The maximum resident set size (KB) = 871288 -Test 035 control_c48_intel PASS +Test 036 control_c48_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_c192_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_c192_intel -Checking test 036 control_c192_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_c192_intel +Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2049,15 +2107,15 @@ Checking test 036 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 542.690372 - 0: The maximum resident set size (KB) = 817892 + 0: The total amount of wall time = 524.569764 + 0: The maximum resident set size (KB) = 852136 -Test 036 control_c192_intel PASS +Test 037 control_c192_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_c384_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_c384_intel -Checking test 037 control_c384_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_c384_intel +Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2067,15 +2125,15 @@ Checking test 037 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 547.681562 - 0: The maximum resident set size (KB) = 1278692 + 0: The total amount of wall time = 526.371714 + 0: The maximum resident set size (KB) = 1277664 -Test 037 control_c384_intel PASS +Test 038 control_c384_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_c384gdas_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_c384gdas_intel -Checking test 038 control_c384gdas_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_c384gdas_intel +Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2087,45 +2145,45 @@ Checking test 038 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.coupler.res .........OK Comparing RESTART/20210322.060000.fv_core.res.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 493.292114 - 0: The maximum resident set size (KB) = 1370956 + 0: The total amount of wall time = 461.493443 + 0: The maximum resident set size (KB) = 1362996 -Test 038 control_c384gdas_intel PASS +Test 039 control_c384gdas_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_stochy_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_stochy_intel -Checking test 039 control_stochy_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_stochy_intel +Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2135,29 +2193,29 @@ Checking test 039 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 100.302341 - 0: The maximum resident set size (KB) = 621032 + 0: The total amount of wall time = 91.772009 + 0: The maximum resident set size (KB) = 650108 -Test 039 control_stochy_intel PASS +Test 040 control_stochy_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_stochy_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_stochy_restart_intel -Checking test 040 control_stochy_restart_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_stochy_restart_intel +Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 51.403067 - 0: The maximum resident set size (KB) = 444876 + 0: The total amount of wall time = 50.092224 + 0: The maximum resident set size (KB) = 500048 -Test 040 control_stochy_restart_intel PASS +Test 041 control_stochy_restart_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_lndp_intel -Checking test 041 control_lndp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_lndp_intel +Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2167,15 +2225,15 @@ Checking test 041 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 90.508506 - 0: The maximum resident set size (KB) = 618388 + 0: The total amount of wall time = 84.333073 + 0: The maximum resident set size (KB) = 625544 -Test 041 control_lndp_intel PASS +Test 042 control_lndp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_iovr4_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_iovr4_intel -Checking test 042 control_iovr4_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_iovr4_intel +Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2189,15 +2247,15 @@ Checking test 042 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.025364 - 0: The maximum resident set size (KB) = 640964 + 0: The total amount of wall time = 137.120976 + 0: The maximum resident set size (KB) = 626580 -Test 042 control_iovr4_intel PASS +Test 043 control_iovr4_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_iovr5_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_iovr5_intel -Checking test 043 control_iovr5_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_iovr5_intel +Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2211,15 +2269,15 @@ Checking test 043 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 146.567151 - 0: The maximum resident set size (KB) = 643140 + 0: The total amount of wall time = 136.558411 + 0: The maximum resident set size (KB) = 645112 -Test 043 control_iovr5_intel PASS +Test 044 control_iovr5_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_intel -Checking test 044 control_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_intel +Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2265,15 +2323,15 @@ Checking test 044 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.757391 - 0: The maximum resident set size (KB) = 1586488 + 0: The total amount of wall time = 169.111118 + 0: The maximum resident set size (KB) = 1612324 -Test 044 control_p8_intel PASS +Test 045 control_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_ugwpv1_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_ugwpv1_intel -Checking test 045 control_p8_ugwpv1_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_ugwpv1_intel +Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2319,15 +2377,15 @@ Checking test 045 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.810184 - 0: The maximum resident set size (KB) = 1614012 + 0: The total amount of wall time = 161.067592 + 0: The maximum resident set size (KB) = 1591856 -Test 045 control_p8_ugwpv1_intel PASS +Test 046 control_p8_ugwpv1_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_restart_p8_intel -Checking test 046 control_restart_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_restart_p8_intel +Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2365,15 +2423,15 @@ Checking test 046 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 94.458982 - 0: The maximum resident set size (KB) = 874632 + 0: The total amount of wall time = 86.647017 + 0: The maximum resident set size (KB) = 884364 -Test 046 control_restart_p8_intel PASS +Test 047 control_restart_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_noqr_p8_intel -Checking test 047 control_noqr_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_noqr_p8_intel +Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2419,15 +2477,15 @@ Checking test 047 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.555144 - 0: The maximum resident set size (KB) = 1583680 + 0: The total amount of wall time = 163.660139 + 0: The maximum resident set size (KB) = 1596980 -Test 047 control_noqr_p8_intel PASS +Test 048 control_noqr_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_restart_noqr_p8_intel -Checking test 048 control_restart_noqr_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_restart_noqr_p8_intel +Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2465,15 +2523,15 @@ Checking test 048 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 93.885306 - 0: The maximum resident set size (KB) = 926356 + 0: The total amount of wall time = 84.870764 + 0: The maximum resident set size (KB) = 914412 -Test 048 control_restart_noqr_p8_intel PASS +Test 049 control_restart_noqr_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_decomp_p8_intel -Checking test 049 control_decomp_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_decomp_p8_intel +Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2515,15 +2573,15 @@ Checking test 049 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 179.502743 - 0: The maximum resident set size (KB) = 1595592 + 0: The total amount of wall time = 171.232279 + 0: The maximum resident set size (KB) = 1599396 -Test 049 control_decomp_p8_intel PASS +Test 050 control_decomp_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_2threads_p8_intel -Checking test 050 control_2threads_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_2threads_p8_intel +Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2565,15 +2623,15 @@ Checking test 050 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 163.692258 - 0: The maximum resident set size (KB) = 1700144 + 0: The total amount of wall time = 156.268424 + 0: The maximum resident set size (KB) = 1695720 -Test 050 control_2threads_p8_intel PASS +Test 051 control_2threads_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_lndp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_lndp_intel -Checking test 051 control_p8_lndp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_lndp_intel +Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2591,15 +2649,15 @@ Checking test 051 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 313.580942 - 0: The maximum resident set size (KB) = 1584688 + 0: The total amount of wall time = 303.169168 + 0: The maximum resident set size (KB) = 1613692 -Test 051 control_p8_lndp_intel PASS +Test 052 control_p8_lndp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_rrtmgp_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_rrtmgp_intel -Checking test 052 control_p8_rrtmgp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_rrtmgp_intel +Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2645,15 +2703,15 @@ Checking test 052 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.713309 - 0: The maximum resident set size (KB) = 1671276 + 0: The total amount of wall time = 218.202933 + 0: The maximum resident set size (KB) = 1677468 -Test 052 control_p8_rrtmgp_intel PASS +Test 053 control_p8_rrtmgp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_mynn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_mynn_intel -Checking test 053 control_p8_mynn_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_mynn_intel +Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2699,15 +2757,15 @@ Checking test 053 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.230096 - 0: The maximum resident set size (KB) = 1618180 + 0: The total amount of wall time = 167.890625 + 0: The maximum resident set size (KB) = 1617868 -Test 053 control_p8_mynn_intel PASS +Test 054 control_p8_mynn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//merra2_thompson_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/merra2_thompson_intel -Checking test 054 merra2_thompson_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/merra2_thompson_intel +Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2753,15 +2811,15 @@ Checking test 054 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.208421 - 0: The maximum resident set size (KB) = 1622956 + 0: The total amount of wall time = 198.045246 + 0: The maximum resident set size (KB) = 1628832 -Test 054 merra2_thompson_intel PASS +Test 055 merra2_thompson_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_control_intel -Checking test 055 regional_control_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_control_intel +Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2771,29 +2829,29 @@ Checking test 055 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.880119 - 0: The maximum resident set size (KB) = 845916 + 0: The total amount of wall time = 295.489202 + 0: The maximum resident set size (KB) = 849300 -Test 055 regional_control_intel PASS +Test 056 regional_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_restart_intel -Checking test 056 regional_restart_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_restart_intel +Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 163.075164 - 0: The maximum resident set size (KB) = 849868 + 0: The total amount of wall time = 152.909624 + 0: The maximum resident set size (KB) = 1012440 -Test 056 regional_restart_intel PASS +Test 057 regional_restart_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_decomp_intel -Checking test 057 regional_decomp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_decomp_intel +Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2803,15 +2861,15 @@ Checking test 057 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 321.787787 - 0: The maximum resident set size (KB) = 825600 + 0: The total amount of wall time = 316.637262 + 0: The maximum resident set size (KB) = 845616 -Test 057 regional_decomp_intel PASS +Test 058 regional_decomp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_2threads_intel -Checking test 058 regional_2threads_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_2threads_intel +Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2821,44 +2879,44 @@ Checking test 058 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 185.338209 - 0: The maximum resident set size (KB) = 844232 + 0: The total amount of wall time = 186.151116 + 0: The maximum resident set size (KB) = 812812 -Test 058 regional_2threads_intel PASS +Test 059 regional_2threads_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_noquilt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_noquilt_intel -Checking test 059 regional_noquilt_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_noquilt_intel +Checking test 060 regional_noquilt_intel 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 = 306.670216 - 0: The maximum resident set size (KB) = 1358720 + 0: The total amount of wall time = 294.264318 + 0: The maximum resident set size (KB) = 1356004 -Test 059 regional_noquilt_intel PASS +Test 060 regional_noquilt_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_netcdf_parallel_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_netcdf_parallel_intel -Checking test 060 regional_netcdf_parallel_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_netcdf_parallel_intel +Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 302.606292 - 0: The maximum resident set size (KB) = 824740 + 0: The total amount of wall time = 294.588052 + 0: The maximum resident set size (KB) = 854424 -Test 060 regional_netcdf_parallel_intel PASS +Test 061 regional_netcdf_parallel_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_2dwrtdecomp_intel -Checking test 061 regional_2dwrtdecomp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_2dwrtdecomp_intel +Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2868,15 +2926,15 @@ Checking test 061 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 303.681823 - 0: The maximum resident set size (KB) = 847724 + 0: The total amount of wall time = 294.176592 + 0: The maximum resident set size (KB) = 852400 -Test 061 regional_2dwrtdecomp_intel PASS +Test 062 regional_2dwrtdecomp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//fv3_regional_wofs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_wofs_intel -Checking test 062 regional_wofs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_wofs_intel +Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2886,15 +2944,15 @@ Checking test 062 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 392.463335 - 0: The maximum resident set size (KB) = 1889656 + 0: The total amount of wall time = 392.164003 + 0: The maximum resident set size (KB) = 1916704 -Test 062 regional_wofs_intel PASS +Test 063 regional_wofs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_intel -Checking test 063 rap_control_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_intel +Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2940,15 +2998,15 @@ Checking test 063 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 465.341777 - 0: The maximum resident set size (KB) = 1107128 + 0: The total amount of wall time = 452.104833 + 0: The maximum resident set size (KB) = 1070208 -Test 063 rap_control_intel PASS +Test 064 rap_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_spp_sppt_shum_skeb_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_spp_sppt_shum_skeb_intel -Checking test 064 regional_spp_sppt_shum_skeb_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_spp_sppt_shum_skeb_intel +Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2958,15 +3016,15 @@ Checking test 064 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 249.480169 - 0: The maximum resident set size (KB) = 1282680 + 0: The total amount of wall time = 238.819235 + 0: The maximum resident set size (KB) = 1288728 -Test 064 regional_spp_sppt_shum_skeb_intel PASS +Test 065 regional_spp_sppt_shum_skeb_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_decomp_intel -Checking test 065 rap_decomp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_decomp_intel +Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3012,15 +3070,15 @@ Checking test 065 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 479.875908 - 0: The maximum resident set size (KB) = 1015596 + 0: The total amount of wall time = 515.465457 + 0: The maximum resident set size (KB) = 1021108 -Test 065 rap_decomp_intel PASS +Test 066 rap_decomp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_2threads_intel -Checking test 066 rap_2threads_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_2threads_intel +Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3066,15 +3124,15 @@ Checking test 066 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.893457 - 0: The maximum resident set size (KB) = 1173236 + 0: The total amount of wall time = 499.793534 + 0: The maximum resident set size (KB) = 1175752 -Test 066 rap_2threads_intel PASS +Test 067 rap_2threads_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_restart_intel -Checking test 067 rap_restart_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_restart_intel +Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3112,15 +3170,15 @@ Checking test 067 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.676723 - 0: The maximum resident set size (KB) = 952144 + 0: The total amount of wall time = 229.423511 + 0: The maximum resident set size (KB) = 1101508 -Test 067 rap_restart_intel PASS +Test 068 rap_restart_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_intel -Checking test 068 rap_sfcdiff_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_intel +Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3166,15 +3224,15 @@ Checking test 068 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.234205 - 0: The maximum resident set size (KB) = 1079144 + 0: The total amount of wall time = 496.418321 + 0: The maximum resident set size (KB) = 1092092 -Test 068 rap_sfcdiff_intel PASS +Test 069 rap_sfcdiff_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_decomp_intel -Checking test 069 rap_sfcdiff_decomp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_decomp_intel +Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3220,15 +3278,15 @@ Checking test 069 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.470352 - 0: The maximum resident set size (KB) = 1024160 + 0: The total amount of wall time = 514.270520 + 0: The maximum resident set size (KB) = 1002824 -Test 069 rap_sfcdiff_decomp_intel PASS +Test 070 rap_sfcdiff_decomp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_restart_intel -Checking test 070 rap_sfcdiff_restart_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_restart_intel +Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3266,15 +3324,15 @@ Checking test 070 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 367.509817 - 0: The maximum resident set size (KB) = 1013700 + 0: The total amount of wall time = 340.134646 + 0: The maximum resident set size (KB) = 1126564 -Test 070 rap_sfcdiff_restart_intel PASS +Test 071 rap_sfcdiff_restart_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_intel -Checking test 071 hrrr_control_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_intel +Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3320,15 +3378,15 @@ Checking test 071 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 236.652297 - 0: The maximum resident set size (KB) = 1026876 + 0: The total amount of wall time = 225.723473 + 0: The maximum resident set size (KB) = 1028612 -Test 071 hrrr_control_intel PASS +Test 072 hrrr_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_decomp_intel -Checking test 072 hrrr_control_decomp_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_decomp_intel +Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3374,15 +3432,15 @@ Checking test 072 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.307654 - 0: The maximum resident set size (KB) = 1004424 + 0: The total amount of wall time = 233.888285 + 0: The maximum resident set size (KB) = 981612 -Test 072 hrrr_control_decomp_intel PASS +Test 073 hrrr_control_decomp_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_2threads_intel -Checking test 073 hrrr_control_2threads_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_2threads_intel +Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3428,29 +3486,29 @@ Checking test 073 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.895204 - 0: The maximum resident set size (KB) = 1113864 + 0: The total amount of wall time = 208.635649 + 0: The maximum resident set size (KB) = 1108848 -Test 073 hrrr_control_2threads_intel PASS +Test 074 hrrr_control_2threads_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_restart_intel -Checking test 074 hrrr_control_restart_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_restart_intel +Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.986571 - 0: The maximum resident set size (KB) = 917276 + 0: The total amount of wall time = 120.015364 + 0: The maximum resident set size (KB) = 994452 -Test 074 hrrr_control_restart_intel PASS +Test 075 hrrr_control_restart_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1beta_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1beta_intel -Checking test 075 rrfs_v1beta_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1beta_intel +Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3496,15 +3554,15 @@ Checking test 075 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.383887 - 0: The maximum resident set size (KB) = 1077320 + 0: The total amount of wall time = 496.022250 + 0: The maximum resident set size (KB) = 1094068 -Test 075 rrfs_v1beta_intel PASS +Test 076 rrfs_v1beta_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1nssl_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1nssl_intel -Checking test 076 rrfs_v1nssl_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1nssl_intel +Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3518,15 +3576,15 @@ Checking test 076 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 544.332513 - 0: The maximum resident set size (KB) = 1986628 + 0: The total amount of wall time = 589.126460 + 0: The maximum resident set size (KB) = 1989820 -Test 076 rrfs_v1nssl_intel PASS +Test 077 rrfs_v1nssl_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1nssl_nohailnoccn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1nssl_nohailnoccn_intel -Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1nssl_nohailnoccn_intel +Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3540,15 +3598,15 @@ Checking test 077 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 532.198238 - 0: The maximum resident set size (KB) = 2062344 + 0: The total amount of wall time = 585.222638 + 0: The maximum resident set size (KB) = 2068960 -Test 077 rrfs_v1nssl_nohailnoccn_intel PASS +Test 078 rrfs_v1nssl_nohailnoccn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_csawmg_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_csawmg_intel -Checking test 078 control_csawmg_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3558,15 +3616,15 @@ Checking test 078 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 354.635076 - 0: The maximum resident set size (KB) = 711060 + 0: The total amount of wall time = 344.229487 + 0: The maximum resident set size (KB) = 718336 -Test 078 control_csawmg_intel PASS +Test 079 control_csawmg_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_csawmgt_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_csawmgt_intel -Checking test 079 control_csawmgt_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3576,15 +3634,15 @@ Checking test 079 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 352.189750 - 0: The maximum resident set size (KB) = 709200 + 0: The total amount of wall time = 336.308724 + 0: The maximum resident set size (KB) = 737716 -Test 079 control_csawmgt_intel PASS +Test 080 control_csawmgt_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_ras_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_ras_intel -Checking test 080 control_ras_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_ras_intel +Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3594,27 +3652,27 @@ Checking test 080 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.302489 - 0: The maximum resident set size (KB) = 728816 + 0: The total amount of wall time = 187.744924 + 0: The maximum resident set size (KB) = 699820 -Test 080 control_ras_intel PASS +Test 081 control_ras_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_wam_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_wam_intel -Checking test 081 control_wam_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_wam_intel +Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 119.436619 - 0: The maximum resident set size (KB) = 651540 + 0: The total amount of wall time = 113.138746 + 0: The maximum resident set size (KB) = 653024 -Test 081 control_wam_intel PASS +Test 082 control_wam_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_faster_intel -Checking test 082 control_p8_faster_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3660,15 +3718,15 @@ Checking test 082 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.107218 - 0: The maximum resident set size (KB) = 1616852 + 0: The total amount of wall time = 148.862427 + 0: The maximum resident set size (KB) = 1584704 -Test 082 control_p8_faster_intel PASS +Test 083 control_p8_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_control_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_control_faster_intel -Checking test 083 regional_control_faster_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3678,15 +3736,15 @@ Checking test 083 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 278.248256 - 0: The maximum resident set size (KB) = 855724 + 0: The total amount of wall time = 270.161396 + 0: The maximum resident set size (KB) = 850120 -Test 083 regional_control_faster_intel PASS +Test 084 regional_control_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_CubedSphereGrid_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_CubedSphereGrid_debug_intel -Checking test 084 control_CubedSphereGrid_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_CubedSphereGrid_debug_intel +Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3712,365 +3770,365 @@ Checking test 084 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 150.790599 - 0: The maximum resident set size (KB) = 804588 + 0: The total amount of wall time = 150.046217 + 0: The maximum resident set size (KB) = 798412 -Test 084 control_CubedSphereGrid_debug_intel PASS +Test 085 control_CubedSphereGrid_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_wrtGauss_netcdf_parallel_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 085 control_wrtGauss_netcdf_parallel_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.466439 - 0: The maximum resident set size (KB) = 803976 + 0: The total amount of wall time = 144.365095 + 0: The maximum resident set size (KB) = 799860 -Test 085 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_stochy_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_stochy_debug_intel -Checking test 086 control_stochy_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_stochy_debug_intel +Checking test 087 control_stochy_debug_intel 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.943302 - 0: The maximum resident set size (KB) = 812144 + 0: The total amount of wall time = 165.419907 + 0: The maximum resident set size (KB) = 808116 -Test 086 control_stochy_debug_intel PASS +Test 087 control_stochy_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_lndp_debug_intel -Checking test 087 control_lndp_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_lndp_debug_intel +Checking test 088 control_lndp_debug_intel 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.800123 - 0: The maximum resident set size (KB) = 788308 + 0: The total amount of wall time = 149.939197 + 0: The maximum resident set size (KB) = 804788 -Test 087 control_lndp_debug_intel PASS +Test 088 control_lndp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_csawmg_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_csawmg_debug_intel -Checking test 088 control_csawmg_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_csawmg_debug_intel +Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.282497 - 0: The maximum resident set size (KB) = 823184 + 0: The total amount of wall time = 232.714777 + 0: The maximum resident set size (KB) = 854440 -Test 088 control_csawmg_debug_intel PASS +Test 089 control_csawmg_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_csawmgt_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_csawmgt_debug_intel -Checking test 089 control_csawmgt_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_csawmgt_debug_intel +Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.508241 - 0: The maximum resident set size (KB) = 856748 + 0: The total amount of wall time = 225.805810 + 0: The maximum resident set size (KB) = 850192 -Test 089 control_csawmgt_debug_intel PASS +Test 090 control_csawmgt_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_ras_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_ras_debug_intel -Checking test 090 control_ras_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_ras_debug_intel +Checking test 091 control_ras_debug_intel 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.707911 - 0: The maximum resident set size (KB) = 816340 + 0: The total amount of wall time = 147.345497 + 0: The maximum resident set size (KB) = 816124 -Test 090 control_ras_debug_intel PASS +Test 091 control_ras_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_diag_debug_intel -Checking test 091 control_diag_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_diag_debug_intel +Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.124352 - 0: The maximum resident set size (KB) = 862144 + 0: The total amount of wall time = 150.036539 + 0: The maximum resident set size (KB) = 866064 -Test 091 control_diag_debug_intel PASS +Test 092 control_diag_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_debug_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_debug_p8_intel -Checking test 092 control_debug_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_debug_p8_intel +Checking test 093 control_debug_p8_intel 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.163639 - 0: The maximum resident set size (KB) = 1617288 + 0: The total amount of wall time = 154.310575 + 0: The maximum resident set size (KB) = 1629512 -Test 092 control_debug_p8_intel PASS +Test 093 control_debug_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_debug_intel -Checking test 093 regional_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_debug_intel +Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 979.907505 - 0: The maximum resident set size (KB) = 813320 + 0: The total amount of wall time = 1016.230637 + 0: The maximum resident set size (KB) = 829668 -Test 093 regional_debug_intel PASS +Test 094 regional_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_debug_intel -Checking test 094 rap_control_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_debug_intel +Checking test 095 rap_control_debug_intel 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.896921 - 0: The maximum resident set size (KB) = 1165416 + 0: The total amount of wall time = 273.110221 + 0: The maximum resident set size (KB) = 1188472 -Test 094 rap_control_debug_intel PASS +Test 095 rap_control_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_debug_intel -Checking test 095 hrrr_control_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_debug_intel +Checking test 096 hrrr_control_debug_intel 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.341225 - 0: The maximum resident set size (KB) = 1158540 + 0: The total amount of wall time = 268.705580 + 0: The maximum resident set size (KB) = 1190412 -Test 095 hrrr_control_debug_intel PASS +Test 096 hrrr_control_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_gf_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_gf_debug_intel -Checking test 096 hrrr_gf_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_gf_debug_intel +Checking test 097 hrrr_gf_debug_intel 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.228955 - 0: The maximum resident set size (KB) = 1168772 + 0: The total amount of wall time = 271.179211 + 0: The maximum resident set size (KB) = 1194296 -Test 096 hrrr_gf_debug_intel PASS +Test 097 hrrr_gf_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_c3_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_c3_debug_intel -Checking test 097 hrrr_c3_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_c3_debug_intel +Checking test 098 hrrr_c3_debug_intel 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.109117 - 0: The maximum resident set size (KB) = 1182716 + 0: The total amount of wall time = 273.207961 + 0: The maximum resident set size (KB) = 1186040 -Test 097 hrrr_c3_debug_intel PASS +Test 098 hrrr_c3_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_unified_drag_suite_debug_intel -Checking test 098 rap_unified_drag_suite_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_unified_drag_suite_debug_intel +Checking test 099 rap_unified_drag_suite_debug_intel 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.957632 - 0: The maximum resident set size (KB) = 1202532 + 0: The total amount of wall time = 276.263162 + 0: The maximum resident set size (KB) = 1189456 -Test 098 rap_unified_drag_suite_debug_intel PASS +Test 099 rap_unified_drag_suite_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_diag_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_diag_debug_intel -Checking test 099 rap_diag_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_diag_debug_intel +Checking test 100 rap_diag_debug_intel 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.545966 - 0: The maximum resident set size (KB) = 1259900 + 0: The total amount of wall time = 287.358241 + 0: The maximum resident set size (KB) = 1276320 -Test 099 rap_diag_debug_intel PASS +Test 100 rap_diag_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_cires_ugwp_debug_intel -Checking test 100 rap_cires_ugwp_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_cires_ugwp_debug_intel +Checking test 101 rap_cires_ugwp_debug_intel 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.558973 - 0: The maximum resident set size (KB) = 1192588 + 0: The total amount of wall time = 286.719773 + 0: The maximum resident set size (KB) = 1190368 -Test 100 rap_cires_ugwp_debug_intel PASS +Test 101 rap_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_unified_ugwp_debug_intel -Checking test 101 rap_unified_ugwp_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_unified_ugwp_debug_intel +Checking test 102 rap_unified_ugwp_debug_intel 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.349903 - 0: The maximum resident set size (KB) = 1191472 + 0: The total amount of wall time = 282.950725 + 0: The maximum resident set size (KB) = 1187276 -Test 101 rap_unified_ugwp_debug_intel PASS +Test 102 rap_unified_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_lndp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_lndp_debug_intel -Checking test 102 rap_lndp_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_lndp_debug_intel +Checking test 103 rap_lndp_debug_intel 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.747955 - 0: The maximum resident set size (KB) = 1189232 + 0: The total amount of wall time = 274.459472 + 0: The maximum resident set size (KB) = 1188860 -Test 102 rap_lndp_debug_intel PASS +Test 103 rap_lndp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_progcld_thompson_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_progcld_thompson_debug_intel -Checking test 103 rap_progcld_thompson_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_progcld_thompson_debug_intel +Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.155649 - 0: The maximum resident set size (KB) = 1191976 + 0: The total amount of wall time = 277.881733 + 0: The maximum resident set size (KB) = 1188024 -Test 103 rap_progcld_thompson_debug_intel PASS +Test 104 rap_progcld_thompson_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_noah_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_noah_debug_intel -Checking test 104 rap_noah_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_noah_debug_intel +Checking test 105 rap_noah_debug_intel 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.387441 - 0: The maximum resident set size (KB) = 1194888 + 0: The total amount of wall time = 273.563679 + 0: The maximum resident set size (KB) = 1187596 -Test 104 rap_noah_debug_intel PASS +Test 105 rap_noah_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_debug_intel -Checking test 105 rap_sfcdiff_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_debug_intel +Checking test 106 rap_sfcdiff_debug_intel 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.856529 - 0: The maximum resident set size (KB) = 1188992 + 0: The total amount of wall time = 277.518810 + 0: The maximum resident set size (KB) = 1187044 -Test 105 rap_sfcdiff_debug_intel PASS +Test 106 rap_sfcdiff_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.057739 - 0: The maximum resident set size (KB) = 1174184 + 0: The total amount of wall time = 451.033869 + 0: The maximum resident set size (KB) = 1197800 -Test 106 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1beta_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1beta_debug_intel -Checking test 107 rrfs_v1beta_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1beta_debug_intel +Checking test 108 rrfs_v1beta_debug_intel 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.462377 - 0: The maximum resident set size (KB) = 1192408 + 0: The total amount of wall time = 274.413907 + 0: The maximum resident set size (KB) = 1152684 -Test 107 rrfs_v1beta_debug_intel PASS +Test 108 rrfs_v1beta_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_clm_lake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_clm_lake_debug_intel -Checking test 108 rap_clm_lake_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_clm_lake_debug_intel +Checking test 109 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.125916 - 0: The maximum resident set size (KB) = 1167940 + 0: The total amount of wall time = 356.426146 + 0: The maximum resident set size (KB) = 1159928 -Test 108 rap_clm_lake_debug_intel PASS +Test 109 rap_clm_lake_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_flake_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_flake_debug_intel -Checking test 109 rap_flake_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_flake_debug_intel +Checking test 110 rap_flake_debug_intel 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.300916 - 0: The maximum resident set size (KB) = 1199668 + 0: The total amount of wall time = 270.488859 + 0: The maximum resident set size (KB) = 1190532 -Test 109 rap_flake_debug_intel PASS +Test 110 rap_flake_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//gnv1_c96_no_nest_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/gnv1_c96_no_nest_debug_intel -Checking test 110 gnv1_c96_no_nest_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/gnv1_c96_no_nest_debug_intel +Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4110,27 +4168,27 @@ Checking test 110 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 484.777854 - 0: The maximum resident set size (KB) = 1208728 + 0: The total amount of wall time = 480.460036 + 0: The maximum resident set size (KB) = 1182216 -Test 110 gnv1_c96_no_nest_debug_intel PASS +Test 111 gnv1_c96_no_nest_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_wam_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_wam_debug_intel -Checking test 111 control_wam_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_wam_debug_intel +Checking test 112 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 273.974553 - 0: The maximum resident set size (KB) = 508020 + 0: The total amount of wall time = 282.119099 + 0: The maximum resident set size (KB) = 512048 -Test 111 control_wam_debug_intel PASS +Test 112 control_wam_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4140,15 +4198,15 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 232.778200 - 0: The maximum resident set size (KB) = 1141212 + 0: The total amount of wall time = 228.126424 + 0: The maximum resident set size (KB) = 1146404 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn32_phy32_intel -Checking test 113 rap_control_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn32_phy32_intel +Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4194,15 +4252,15 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.163835 - 0: The maximum resident set size (KB) = 1032624 + 0: The total amount of wall time = 372.322082 + 0: The maximum resident set size (KB) = 1034608 -Test 113 rap_control_dyn32_phy32_intel PASS +Test 114 rap_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_dyn32_phy32_intel -Checking test 114 hrrr_control_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_dyn32_phy32_intel +Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4248,15 +4306,15 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.558780 - 0: The maximum resident set size (KB) = 969844 + 0: The total amount of wall time = 191.571531 + 0: The maximum resident set size (KB) = 971792 -Test 114 hrrr_control_dyn32_phy32_intel PASS +Test 115 hrrr_control_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_2threads_dyn32_phy32_intel -Checking test 115 rap_2threads_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_2threads_dyn32_phy32_intel +Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4302,15 +4360,15 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 391.290081 - 0: The maximum resident set size (KB) = 1078056 + 0: The total amount of wall time = 352.984578 + 0: The maximum resident set size (KB) = 1077676 -Test 115 rap_2threads_dyn32_phy32_intel PASS +Test 116 rap_2threads_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_2threads_dyn32_phy32_intel -Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_2threads_dyn32_phy32_intel +Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4356,15 +4414,15 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.410728 - 0: The maximum resident set size (KB) = 952712 + 0: The total amount of wall time = 179.468862 + 0: The maximum resident set size (KB) = 957908 -Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_decomp_dyn32_phy32_intel -Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_decomp_dyn32_phy32_intel +Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4410,15 +4468,15 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.518618 - 0: The maximum resident set size (KB) = 912528 + 0: The total amount of wall time = 203.430655 + 0: The maximum resident set size (KB) = 917592 -Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_restart_dyn32_phy32_intel -Checking test 118 rap_restart_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_restart_dyn32_phy32_intel +Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4456,29 +4514,29 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.070159 - 0: The maximum resident set size (KB) = 984564 + 0: The total amount of wall time = 278.470878 + 0: The maximum resident set size (KB) = 1025500 -Test 118 rap_restart_dyn32_phy32_intel PASS +Test 119 rap_restart_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_restart_dyn32_phy32_intel -Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_restart_dyn32_phy32_intel +Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 109.593580 - 0: The maximum resident set size (KB) = 887244 + 0: The total amount of wall time = 103.966625 + 0: The maximum resident set size (KB) = 926684 -Test 119 hrrr_control_restart_dyn32_phy32_intel PASS +Test 120 hrrr_control_restart_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_control_intel -Checking test 120 conus13km_control_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_control_intel +Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4493,41 +4551,41 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 116.724506 - 0: The maximum resident set size (KB) = 1244516 + 0: The total amount of wall time = 115.059905 + 0: The maximum resident set size (KB) = 1238908 -Test 120 conus13km_control_intel PASS +Test 121 conus13km_control_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_control_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_2threads_intel -Checking test 121 conus13km_2threads_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_2threads_intel +Checking test 122 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 50.973907 - 0: The maximum resident set size (KB) = 1135352 + 0: The total amount of wall time = 51.574224 + 0: The maximum resident set size (KB) = 1160860 -Test 121 conus13km_2threads_intel PASS +Test 122 conus13km_2threads_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_restart_mismatch_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_restart_mismatch_intel -Checking test 122 conus13km_restart_mismatch_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_restart_mismatch_intel +Checking test 123 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 65.353497 - 0: The maximum resident set size (KB) = 1174916 + 0: The total amount of wall time = 65.476383 + 0: The maximum resident set size (KB) = 1181648 -Test 122 conus13km_restart_mismatch_intel PASS +Test 123 conus13km_restart_mismatch_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn64_phy32_intel -Checking test 123 rap_control_dyn64_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn64_phy32_intel +Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4573,43 +4631,43 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.343726 - 0: The maximum resident set size (KB) = 958092 + 0: The total amount of wall time = 242.241856 + 0: The maximum resident set size (KB) = 970768 -Test 123 rap_control_dyn64_phy32_intel PASS +Test 124 rap_control_dyn64_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_debug_dyn32_phy32_intel -Checking test 124 rap_control_debug_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_debug_dyn32_phy32_intel +Checking test 125 rap_control_debug_dyn32_phy32_intel 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.005303 - 0: The maximum resident set size (KB) = 1066268 + 0: The total amount of wall time = 277.252342 + 0: The maximum resident set size (KB) = 1046680 -Test 124 rap_control_debug_dyn32_phy32_intel PASS +Test 125 rap_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_debug_dyn32_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_debug_dyn32_phy32_intel -Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_debug_dyn32_phy32_intel +Checking test 126 hrrr_control_debug_dyn32_phy32_intel 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.780785 - 0: The maximum resident set size (KB) = 1070692 + 0: The total amount of wall time = 270.737161 + 0: The maximum resident set size (KB) = 1055200 -Test 125 hrrr_control_debug_dyn32_phy32_intel PASS +Test 126 hrrr_control_debug_dyn32_phy32_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_intel -Checking test 126 conus13km_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_intel +Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4622,15 +4680,15 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 836.952899 - 0: The maximum resident set size (KB) = 1264500 + 0: The total amount of wall time = 804.222464 + 0: The maximum resident set size (KB) = 1261724 -Test 126 conus13km_debug_intel PASS +Test 127 conus13km_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_qr_intel -Checking test 127 conus13km_debug_qr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_qr_intel +Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4643,82 +4701,82 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 848.511544 - 0: The maximum resident set size (KB) = 921828 + 0: The total amount of wall time = 798.021388 + 0: The maximum resident set size (KB) = 924448 -Test 127 conus13km_debug_qr_intel PASS +Test 128 conus13km_debug_qr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_2threads_intel -Checking test 128 conus13km_debug_2threads_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_2threads_intel +Checking test 129 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 475.977186 - 0: The maximum resident set size (KB) = 1185964 + 0: The total amount of wall time = 468.592972 + 0: The maximum resident set size (KB) = 1181424 -Test 128 conus13km_debug_2threads_intel PASS +Test 129 conus13km_debug_2threads_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_radar_tten_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_radar_tten_debug_intel -Checking test 129 conus13km_radar_tten_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_radar_tten_debug_intel +Checking test 130 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 847.741915 - 0: The maximum resident set size (KB) = 1333616 + 0: The total amount of wall time = 832.292041 + 0: The maximum resident set size (KB) = 1336880 -Test 129 conus13km_radar_tten_debug_intel PASS +Test 130 conus13km_radar_tten_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_dyn64_phy32_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn64_phy32_debug_intel -Checking test 130 rap_control_dyn64_phy32_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn64_phy32_debug_intel +Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.663892 - 0: The maximum resident set size (KB) = 1097864 + 0: The total amount of wall time = 280.692256 + 0: The maximum resident set size (KB) = 1088896 -Test 130 rap_control_dyn64_phy32_debug_intel PASS +Test 131 rap_control_dyn64_phy32_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_atm_intel -Checking test 131 hafs_regional_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_atm_intel +Checking test 132 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 310.165118 - 0: The maximum resident set size (KB) = 730272 + 0: The total amount of wall time = 272.314937 + 0: The maximum resident set size (KB) = 731172 -Test 131 hafs_regional_atm_intel PASS +Test 132 hafs_regional_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_atm_thompson_gfdlsf_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_atm_thompson_gfdlsf_intel +Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 415.383840 - 0: The maximum resident set size (KB) = 1115888 + 0: The total amount of wall time = 353.636830 + 0: The maximum resident set size (KB) = 1110280 -Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_atm_ocn_intel -Checking test 133 hafs_regional_atm_ocn_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_atm_ocn_intel +Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4726,15 +4784,15 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 444.317941 - 0: The maximum resident set size (KB) = 803776 + 0: The total amount of wall time = 403.999381 + 0: The maximum resident set size (KB) = 820944 -Test 133 hafs_regional_atm_ocn_intel PASS +Test 134 hafs_regional_atm_ocn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_atm_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_atm_wav_intel -Checking test 134 hafs_regional_atm_wav_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_atm_wav_intel +Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4742,15 +4800,15 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 772.531673 - 0: The maximum resident set size (KB) = 842828 + 0: The total amount of wall time = 768.793481 + 0: The maximum resident set size (KB) = 857260 -Test 134 hafs_regional_atm_wav_intel PASS +Test 135 hafs_regional_atm_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_atm_ocn_wav_intel -Checking test 135 hafs_regional_atm_ocn_wav_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_atm_ocn_wav_intel +Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4760,15 +4818,15 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 885.713627 - 0: The maximum resident set size (KB) = 850672 + 0: The total amount of wall time = 864.878642 + 0: The maximum resident set size (KB) = 872308 -Test 135 hafs_regional_atm_ocn_wav_intel PASS +Test 136 hafs_regional_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_1nest_atm_intel -Checking test 136 hafs_regional_1nest_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_1nest_atm_intel +Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4785,19 +4843,19 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 371.010710 - 0: The maximum resident set size (KB) = 493092 + 0: The total amount of wall time = 312.067099 + 0: The maximum resident set size (KB) = 506632 -Test 136 hafs_regional_1nest_atm_intel PASS +Test 137 hafs_regional_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_telescopic_2nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_telescopic_2nests_atm_intel -Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_telescopic_2nests_atm_intel +Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4805,15 +4863,15 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 433.714009 - 0: The maximum resident set size (KB) = 515704 + 0: The total amount of wall time = 376.480206 + 0: The maximum resident set size (KB) = 517164 -Test 137 hafs_regional_telescopic_2nests_atm_intel PASS +Test 138 hafs_regional_telescopic_2nests_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_global_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_global_1nest_atm_intel -Checking test 138 hafs_global_1nest_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_global_1nest_atm_intel +Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4824,17 +4882,17 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -4855,19 +4913,19 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 153.905326 - 0: The maximum resident set size (KB) = 345884 + 0: The total amount of wall time = 153.657284 + 0: The maximum resident set size (KB) = 369476 -Test 138 hafs_global_1nest_atm_intel PASS +Test 139 hafs_global_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_global_multiple_4nests_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_global_multiple_4nests_atm_intel -Checking test 139 hafs_global_multiple_4nests_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_global_multiple_4nests_atm_intel +Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4894,21 +4952,21 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK @@ -4930,7 +4988,7 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK @@ -4948,15 +5006,15 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 473.362524 - 0: The maximum resident set size (KB) = 465636 + 0: The total amount of wall time = 413.258285 + 0: The maximum resident set size (KB) = 470348 -Test 139 hafs_global_multiple_4nests_atm_intel PASS +Test 140 hafs_global_multiple_4nests_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_specified_moving_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_specified_moving_1nest_atm_intel -Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_specified_moving_1nest_atm_intel +Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4964,15 +5022,15 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.146345 - 0: The maximum resident set size (KB) = 506184 + 0: The total amount of wall time = 211.933300 + 0: The maximum resident set size (KB) = 531540 -Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS +Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_storm_following_1nest_atm_intel -Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_storm_following_1nest_atm_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4989,19 +5047,19 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/20200825.180000.phy_data.nc .........OK Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 208.704267 - 0: The maximum resident set size (KB) = 526416 + 0: The total amount of wall time = 198.191629 + 0: The maximum resident set size (KB) = 516780 -Test 141 hafs_regional_storm_following_1nest_atm_intel PASS +Test 142 hafs_regional_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5009,29 +5067,29 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 246.673285 - 0: The maximum resident set size (KB) = 581628 + 0: The total amount of wall time = 235.970550 + 0: The maximum resident set size (KB) = 587384 -Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_global_storm_following_1nest_atm_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_global_storm_following_1nest_atm_intel -Checking test 143 hafs_global_storm_following_1nest_atm_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_global_storm_following_1nest_atm_intel +Checking test 144 hafs_global_storm_following_1nest_atm_intel 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 = 76.792433 - 0: The maximum resident set size (KB) = 377152 + 0: The total amount of wall time = 63.701247 + 0: The maximum resident set size (KB) = 395072 -Test 143 hafs_global_storm_following_1nest_atm_intel PASS +Test 144 hafs_global_storm_following_1nest_atm_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//gnv1_nested_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/gnv1_nested_intel -Checking test 144 gnv1_nested_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/gnv1_nested_intel +Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5041,18 +5099,18 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK @@ -5067,7 +5125,7 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5077,29 +5135,29 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 239.811516 - 0: The maximum resident set size (KB) = 796092 + 0: The total amount of wall time = 241.728341 + 0: The maximum resident set size (KB) = 796560 -Test 144 gnv1_nested_intel PASS +Test 145 gnv1_nested_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 733.179366 - 0: The maximum resident set size (KB) = 565820 + 0: The total amount of wall time = 742.312953 + 0: The maximum resident set size (KB) = 540188 -Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5109,162 +5167,162 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 497.837570 - 0: The maximum resident set size (KB) = 664216 + 0: The total amount of wall time = 502.040073 + 0: The maximum resident set size (KB) = 617052 -Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_docn_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_docn_intel -Checking test 147 hafs_regional_docn_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_docn_intel +Checking test 148 hafs_regional_docn_intel 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 = 372.843994 - 0: The maximum resident set size (KB) = 810268 + 0: The total amount of wall time = 374.269504 + 0: The maximum resident set size (KB) = 816764 -Test 147 hafs_regional_docn_intel PASS +Test 148 hafs_regional_docn_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_docn_oisst_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_docn_oisst_intel -Checking test 148 hafs_regional_docn_oisst_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_docn_oisst_intel +Checking test 149 hafs_regional_docn_oisst_intel 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 = 381.835811 - 0: The maximum resident set size (KB) = 780936 + 0: The total amount of wall time = 373.471263 + 0: The maximum resident set size (KB) = 805912 -Test 148 hafs_regional_docn_oisst_intel PASS +Test 149 hafs_regional_docn_oisst_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hafs_regional_datm_cdeps_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hafs_regional_datm_cdeps_intel -Checking test 149 hafs_regional_datm_cdeps_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hafs_regional_datm_cdeps_intel +Checking test 150 hafs_regional_datm_cdeps_intel 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 = 954.964105 - 0: The maximum resident set size (KB) = 1150840 + 0: The total amount of wall time = 953.428065 + 0: The maximum resident set size (KB) = 1210428 -Test 149 hafs_regional_datm_cdeps_intel PASS +Test 150 hafs_regional_datm_cdeps_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_control_cfsr_intel -Checking test 150 datm_cdeps_control_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_control_cfsr_intel +Checking test 151 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.836822 - 0: The maximum resident set size (KB) = 1110988 + 0: The total amount of wall time = 151.413251 + 0: The maximum resident set size (KB) = 1117748 -Test 150 datm_cdeps_control_cfsr_intel PASS +Test 151 datm_cdeps_control_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_restart_cfsr_intel -Checking test 151 datm_cdeps_restart_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_restart_cfsr_intel +Checking test 152 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 90.407384 - 0: The maximum resident set size (KB) = 1067452 + 0: The total amount of wall time = 92.001230 + 0: The maximum resident set size (KB) = 1073032 -Test 151 datm_cdeps_restart_cfsr_intel PASS +Test 152 datm_cdeps_restart_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_control_gefs_intel -Checking test 152 datm_cdeps_control_gefs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_control_gefs_intel +Checking test 153 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.614455 - 0: The maximum resident set size (KB) = 1004820 + 0: The total amount of wall time = 146.508402 + 0: The maximum resident set size (KB) = 1002496 -Test 152 datm_cdeps_control_gefs_intel PASS +Test 153 datm_cdeps_control_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_iau_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_iau_gefs_intel -Checking test 153 datm_cdeps_iau_gefs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_iau_gefs_intel +Checking test 154 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.695152 - 0: The maximum resident set size (KB) = 994844 + 0: The total amount of wall time = 151.778664 + 0: The maximum resident set size (KB) = 1005652 -Test 153 datm_cdeps_iau_gefs_intel PASS +Test 154 datm_cdeps_iau_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_stochy_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_stochy_gefs_intel -Checking test 154 datm_cdeps_stochy_gefs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_stochy_gefs_intel +Checking test 155 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.262526 - 0: The maximum resident set size (KB) = 997136 + 0: The total amount of wall time = 152.024005 + 0: The maximum resident set size (KB) = 999080 -Test 154 datm_cdeps_stochy_gefs_intel PASS +Test 155 datm_cdeps_stochy_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_ciceC_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_ciceC_cfsr_intel -Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_ciceC_cfsr_intel +Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.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.861293 - 0: The maximum resident set size (KB) = 1115236 + 0: The total amount of wall time = 155.209536 + 0: The maximum resident set size (KB) = 1122280 -Test 155 datm_cdeps_ciceC_cfsr_intel PASS +Test 156 datm_cdeps_ciceC_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_bulk_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_bulk_cfsr_intel -Checking test 156 datm_cdeps_bulk_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_bulk_cfsr_intel +Checking test 157 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 153.827731 - 0: The maximum resident set size (KB) = 1112600 + 0: The total amount of wall time = 156.389945 + 0: The maximum resident set size (KB) = 1122440 -Test 156 datm_cdeps_bulk_cfsr_intel PASS +Test 157 datm_cdeps_bulk_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_bulk_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_bulk_gefs_intel -Checking test 157 datm_cdeps_bulk_gefs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_bulk_gefs_intel +Checking test 158 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.328588 - 0: The maximum resident set size (KB) = 1006924 + 0: The total amount of wall time = 148.370393 + 0: The maximum resident set size (KB) = 993304 -Test 157 datm_cdeps_bulk_gefs_intel PASS +Test 158 datm_cdeps_bulk_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_mx025_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_mx025_cfsr_intel -Checking test 158 datm_cdeps_mx025_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_mx025_cfsr_intel +Checking test 159 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5272,15 +5330,15 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel 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 = 452.846587 - 0: The maximum resident set size (KB) = 1021376 + 0: The total amount of wall time = 376.134046 + 0: The maximum resident set size (KB) = 1046636 -Test 158 datm_cdeps_mx025_cfsr_intel PASS +Test 159 datm_cdeps_mx025_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_mx025_gefs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_mx025_gefs_intel -Checking test 159 datm_cdeps_mx025_gefs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_mx025_gefs_intel +Checking test 160 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK @@ -5288,78 +5346,78 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 415.506960 - 0: The maximum resident set size (KB) = 1012048 + 0: The total amount of wall time = 367.610036 + 0: The maximum resident set size (KB) = 1030252 -Test 159 datm_cdeps_mx025_gefs_intel PASS +Test 160 datm_cdeps_mx025_gefs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_multiple_files_cfsr_intel -Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_multiple_files_cfsr_intel +Checking test 161 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.524856 - 0: The maximum resident set size (KB) = 1117296 + 0: The total amount of wall time = 148.716896 + 0: The maximum resident set size (KB) = 1119880 -Test 160 datm_cdeps_multiple_files_cfsr_intel PASS +Test 161 datm_cdeps_multiple_files_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_3072x1536_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_3072x1536_cfsr_intel -Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_3072x1536_cfsr_intel +Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 224.337747 - 0: The maximum resident set size (KB) = 2468192 + 0: The total amount of wall time = 222.238460 + 0: The maximum resident set size (KB) = 2420044 -Test 161 datm_cdeps_3072x1536_cfsr_intel PASS +Test 162 datm_cdeps_3072x1536_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_gfs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_gfs_intel -Checking test 162 datm_cdeps_gfs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_gfs_intel +Checking test 163 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.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 = 223.115557 - 0: The maximum resident set size (KB) = 2467972 + 0: The total amount of wall time = 225.622375 + 0: The maximum resident set size (KB) = 2454200 -Test 162 datm_cdeps_gfs_intel PASS +Test 163 datm_cdeps_gfs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_debug_cfsr_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_debug_cfsr_intel -Checking test 163 datm_cdeps_debug_cfsr_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_debug_cfsr_intel +Checking test 164 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.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 = 348.900646 - 0: The maximum resident set size (KB) = 1041112 + 0: The total amount of wall time = 364.177292 + 0: The maximum resident set size (KB) = 1037100 -Test 163 datm_cdeps_debug_cfsr_intel PASS +Test 164 datm_cdeps_debug_cfsr_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_cfsr_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_control_cfsr_faster_intel -Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_control_cfsr_faster_intel +Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.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.742683 - 0: The maximum resident set size (KB) = 1103588 + 0: The total amount of wall time = 150.664709 + 0: The maximum resident set size (KB) = 1112184 -Test 164 datm_cdeps_control_cfsr_faster_intel PASS +Test 165 datm_cdeps_control_cfsr_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_lnd_gswp3_intel -Checking test 165 datm_cdeps_lnd_gswp3_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_lnd_gswp3_intel +Checking test 166 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5367,15 +5425,15 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.831023 - 0: The maximum resident set size (KB) = 236012 + 0: The total amount of wall time = 8.057690 + 0: The maximum resident set size (KB) = 252776 -Test 165 datm_cdeps_lnd_gswp3_intel PASS +Test 166 datm_cdeps_lnd_gswp3_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_lnd_gswp3_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_lnd_gswp3_rst_intel -Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_lnd_gswp3_rst_intel +Checking test 167 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK @@ -5383,15 +5441,15 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 11.970368 - 0: The maximum resident set size (KB) = 249724 + 0: The total amount of wall time = 11.618498 + 0: The maximum resident set size (KB) = 252832 -Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS +Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_atmlnd_sbs_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_atmlnd_sbs_intel -Checking test 167 control_p8_atmlnd_sbs_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_atmlnd_sbs_intel +Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5475,15 +5533,15 @@ Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 202.273740 - 0: The maximum resident set size (KB) = 1624188 + 0: The total amount of wall time = 196.406876 + 0: The maximum resident set size (KB) = 1616484 -Test 167 control_p8_atmlnd_sbs_intel PASS +Test 168 control_p8_atmlnd_sbs_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//atmwav_control_noaero_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/atmwav_control_noaero_p8_intel -Checking test 168 atmwav_control_noaero_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/atmwav_control_noaero_p8_intel +Checking test 169 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5525,15 +5583,15 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 98.564596 - 0: The maximum resident set size (KB) = 1623108 + 0: The total amount of wall time = 97.234057 + 0: The maximum resident set size (KB) = 1659496 -Test 168 atmwav_control_noaero_p8_intel PASS +Test 169 atmwav_control_noaero_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_atmwav_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_atmwav_intel -Checking test 169 control_atmwav_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_atmwav_intel +Checking test 170 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5576,15 +5634,15 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 94.212965 - 0: The maximum resident set size (KB) = 650124 + 0: The total amount of wall time = 90.105726 + 0: The maximum resident set size (KB) = 667844 -Test 169 control_atmwav_intel PASS +Test 170 control_atmwav_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//atmaero_control_p8_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/atmaero_control_p8_intel -Checking test 170 atmaero_control_p8_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/atmaero_control_p8_intel +Checking test 171 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5627,15 +5685,15 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 228.773301 - 0: The maximum resident set size (KB) = 3005444 + 0: The total amount of wall time = 223.925658 + 0: The maximum resident set size (KB) = 3023904 -Test 170 atmaero_control_p8_intel PASS +Test 171 atmaero_control_p8_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//atmaero_control_p8_rad_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/atmaero_control_p8_rad_intel -Checking test 171 atmaero_control_p8_rad_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/atmaero_control_p8_rad_intel +Checking test 172 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5678,15 +5736,15 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.035371 - 0: The maximum resident set size (KB) = 3037804 + 0: The total amount of wall time = 279.164347 + 0: The maximum resident set size (KB) = 3050720 -Test 171 atmaero_control_p8_rad_intel PASS +Test 172 atmaero_control_p8_rad_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//atmaero_control_p8_rad_micro_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/atmaero_control_p8_rad_micro_intel -Checking test 172 atmaero_control_p8_rad_micro_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/atmaero_control_p8_rad_micro_intel +Checking test 173 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5729,15 +5787,15 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 294.447457 - 0: The maximum resident set size (KB) = 3088004 + 0: The total amount of wall time = 297.320446 + 0: The maximum resident set size (KB) = 3032408 -Test 172 atmaero_control_p8_rad_micro_intel PASS +Test 173 atmaero_control_p8_rad_micro_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_atmaq_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_atmaq_intel -Checking test 173 regional_atmaq_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_atmaq_intel +Checking test 174 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5747,20 +5805,20 @@ Checking test 173 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 695.582428 - 0: The maximum resident set size (KB) = 4971460 + 0: The total amount of wall time = 668.874444 + 0: The maximum resident set size (KB) = 4963784 -Test 173 regional_atmaq_intel PASS +Test 174 regional_atmaq_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_atmaq_debug_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_atmaq_debug_intel -Checking test 174 regional_atmaq_debug_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_atmaq_debug_intel +Checking test 175 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5773,15 +5831,15 @@ Checking test 174 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1219.969738 - 0: The maximum resident set size (KB) = 4452924 + 0: The total amount of wall time = 1211.943745 + 0: The maximum resident set size (KB) = 4474972 -Test 174 regional_atmaq_debug_intel PASS +Test 175 regional_atmaq_debug_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_atmaq_faster_intel -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_atmaq_faster_intel -Checking test 175 regional_atmaq_faster_intel results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_atmaq_faster_intel +Checking test 176 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5791,20 +5849,20 @@ Checking test 175 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.coupler.res .........OK Comparing RESTART/20190801.180000.fv_core.res.nc .........OK Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 821.572424 - 0: The maximum resident set size (KB) = 5099832 + 0: The total amount of wall time = 814.778894 + 0: The maximum resident set size (KB) = 5065992 -Test 175 regional_atmaq_faster_intel PASS +Test 176 regional_atmaq_faster_intel PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_c48_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_c48_gnu -Checking test 176 control_c48_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_c48_gnu +Checking test 177 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5842,15 +5900,15 @@ Checking test 176 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 690.045643 -0: The maximum resident set size (KB) = 788408 +0: The total amount of wall time = 690.888076 +0: The maximum resident set size (KB) = 787380 -Test 176 control_c48_gnu PASS +Test 177 control_c48_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_stochy_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_stochy_gnu -Checking test 177 control_stochy_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_stochy_gnu +Checking test 178 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5860,15 +5918,15 @@ Checking test 177 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 235.947955 - 0: The maximum resident set size (KB) = 550544 + 0: The total amount of wall time = 227.602982 + 0: The maximum resident set size (KB) = 549912 -Test 177 control_stochy_gnu PASS +Test 178 control_stochy_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_ras_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_ras_gnu -Checking test 178 control_ras_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_ras_gnu +Checking test 179 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5878,15 +5936,15 @@ Checking test 178 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 292.335391 - 0: The maximum resident set size (KB) = 553340 + 0: The total amount of wall time = 285.166588 + 0: The maximum resident set size (KB) = 556972 -Test 178 control_ras_gnu PASS +Test 179 control_ras_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_gnu -Checking test 179 control_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_gnu +Checking test 180 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5932,15 +5990,15 @@ Checking test 179 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.127302 - 0: The maximum resident set size (KB) = 1302572 + 0: The total amount of wall time = 286.956025 + 0: The maximum resident set size (KB) = 1305876 -Test 179 control_p8_gnu PASS +Test 180 control_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_p8_ugwpv1_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_p8_ugwpv1_gnu -Checking test 180 control_p8_ugwpv1_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_p8_ugwpv1_gnu +Checking test 181 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -5986,15 +6044,15 @@ Checking test 180 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.062358 - 0: The maximum resident set size (KB) = 1304452 + 0: The total amount of wall time = 269.558853 + 0: The maximum resident set size (KB) = 1306048 -Test 180 control_p8_ugwpv1_gnu PASS +Test 181 control_p8_ugwpv1_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_flake_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_flake_gnu -Checking test 181 control_flake_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_flake_gnu +Checking test 182 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6004,15 +6062,15 @@ Checking test 181 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.513693 - 0: The maximum resident set size (KB) = 593200 + 0: The total amount of wall time = 343.119636 + 0: The maximum resident set size (KB) = 595276 -Test 181 control_flake_gnu PASS +Test 182 control_flake_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_gnu -Checking test 182 rap_control_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_gnu +Checking test 183 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6058,15 +6116,15 @@ Checking test 182 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 692.567590 - 0: The maximum resident set size (KB) = 862660 + 0: The total amount of wall time = 687.494981 + 0: The maximum resident set size (KB) = 902108 -Test 182 rap_control_gnu PASS +Test 183 rap_control_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_decomp_gnu -Checking test 183 rap_decomp_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_decomp_gnu +Checking test 184 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6112,15 +6170,15 @@ Checking test 183 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 698.294686 - 0: The maximum resident set size (KB) = 861144 + 0: The total amount of wall time = 697.539759 + 0: The maximum resident set size (KB) = 901272 -Test 183 rap_decomp_gnu PASS +Test 184 rap_decomp_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_2threads_gnu -Checking test 184 rap_2threads_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_2threads_gnu +Checking test 185 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6166,15 +6224,15 @@ Checking test 184 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 628.010017 - 0: The maximum resident set size (KB) = 975404 + 0: The total amount of wall time = 625.317052 + 0: The maximum resident set size (KB) = 975104 -Test 184 rap_2threads_gnu PASS +Test 185 rap_2threads_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_restart_gnu -Checking test 185 rap_restart_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_restart_gnu +Checking test 186 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6212,15 +6270,15 @@ Checking test 185 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.369590 - 0: The maximum resident set size (KB) = 622516 + 0: The total amount of wall time = 354.662296 + 0: The maximum resident set size (KB) = 626232 -Test 185 rap_restart_gnu PASS +Test 186 rap_restart_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_gnu -Checking test 186 rap_sfcdiff_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_gnu +Checking test 187 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6266,15 +6324,15 @@ Checking test 186 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 697.017970 - 0: The maximum resident set size (KB) = 864380 + 0: The total amount of wall time = 694.616457 + 0: The maximum resident set size (KB) = 898504 -Test 186 rap_sfcdiff_gnu PASS +Test 187 rap_sfcdiff_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_decomp_gnu -Checking test 187 rap_sfcdiff_decomp_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_decomp_gnu +Checking test 188 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6320,15 +6378,15 @@ Checking test 187 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 701.587949 - 0: The maximum resident set size (KB) = 861552 + 0: The total amount of wall time = 698.035101 + 0: The maximum resident set size (KB) = 894456 -Test 187 rap_sfcdiff_decomp_gnu PASS +Test 188 rap_sfcdiff_decomp_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_sfcdiff_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_sfcdiff_restart_gnu -Checking test 188 rap_sfcdiff_restart_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_sfcdiff_restart_gnu +Checking test 189 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6366,15 +6424,15 @@ Checking test 188 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 518.488691 - 0: The maximum resident set size (KB) = 623832 + 0: The total amount of wall time = 537.296472 + 0: The maximum resident set size (KB) = 626680 -Test 188 rap_sfcdiff_restart_gnu PASS +Test 189 rap_sfcdiff_restart_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_gnu -Checking test 189 hrrr_control_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_gnu +Checking test 190 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6420,15 +6478,15 @@ Checking test 189 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.557154 - 0: The maximum resident set size (KB) = 853044 + 0: The total amount of wall time = 350.834044 + 0: The maximum resident set size (KB) = 890252 -Test 189 hrrr_control_gnu PASS +Test 190 hrrr_control_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_noqr_gnu -Checking test 190 hrrr_control_noqr_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_noqr_gnu +Checking test 191 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6474,15 +6532,15 @@ Checking test 190 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 353.037502 - 0: The maximum resident set size (KB) = 844316 + 0: The total amount of wall time = 351.911439 + 0: The maximum resident set size (KB) = 878564 -Test 190 hrrr_control_noqr_gnu PASS +Test 191 hrrr_control_noqr_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_2threads_gnu -Checking test 191 hrrr_control_2threads_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_2threads_gnu +Checking test 192 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6528,15 +6586,15 @@ Checking test 191 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 305.910450 - 0: The maximum resident set size (KB) = 968880 + 0: The total amount of wall time = 310.805841 + 0: The maximum resident set size (KB) = 972144 -Test 191 hrrr_control_2threads_gnu PASS +Test 192 hrrr_control_2threads_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_decomp_gnu -Checking test 192 hrrr_control_decomp_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_decomp_gnu +Checking test 193 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6582,43 +6640,43 @@ Checking test 192 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.435889 - 0: The maximum resident set size (KB) = 857268 + 0: The total amount of wall time = 347.142911 + 0: The maximum resident set size (KB) = 888768 -Test 192 hrrr_control_decomp_gnu PASS +Test 193 hrrr_control_decomp_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_restart_gnu -Checking test 193 hrrr_control_restart_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_restart_gnu +Checking test 194 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 209.101823 - 0: The maximum resident set size (KB) = 607644 + 0: The total amount of wall time = 187.740813 + 0: The maximum resident set size (KB) = 609248 -Test 193 hrrr_control_restart_gnu PASS +Test 194 hrrr_control_restart_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_restart_noqr_gnu -Checking test 194 hrrr_control_restart_noqr_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_restart_noqr_gnu +Checking test 195 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 184.526222 - 0: The maximum resident set size (KB) = 701108 + 0: The total amount of wall time = 183.798118 + 0: The maximum resident set size (KB) = 704780 -Test 194 hrrr_control_restart_noqr_gnu PASS +Test 195 hrrr_control_restart_noqr_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1beta_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1beta_gnu -Checking test 195 rrfs_v1beta_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1beta_gnu +Checking test 196 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6664,225 +6722,225 @@ Checking test 195 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 680.961974 - 0: The maximum resident set size (KB) = 858624 + 0: The total amount of wall time = 674.846107 + 0: The maximum resident set size (KB) = 888416 -Test 195 rrfs_v1beta_gnu PASS +Test 196 rrfs_v1beta_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_diag_debug_gnu -Checking test 196 control_diag_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_diag_debug_gnu +Checking test 197 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 86.788632 - 0: The maximum resident set size (KB) = 555800 + 0: The total amount of wall time = 87.108159 + 0: The maximum resident set size (KB) = 591240 -Test 196 control_diag_debug_gnu PASS +Test 197 control_diag_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//regional_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/regional_debug_gnu -Checking test 197 regional_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/regional_debug_gnu +Checking test 198 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 440.327750 - 0: The maximum resident set size (KB) = 592840 + 0: The total amount of wall time = 437.526788 + 0: The maximum resident set size (KB) = 599084 -Test 197 regional_debug_gnu PASS +Test 198 regional_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_debug_gnu -Checking test 198 rap_control_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_debug_gnu +Checking test 199 rap_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.268917 - 0: The maximum resident set size (KB) = 871088 + 0: The total amount of wall time = 140.546780 + 0: The maximum resident set size (KB) = 909896 -Test 198 rap_control_debug_gnu PASS +Test 199 rap_control_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_debug_gnu -Checking test 199 hrrr_control_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_debug_gnu +Checking test 200 hrrr_control_debug_gnu 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.687116 - 0: The maximum resident set size (KB) = 863728 + 0: The total amount of wall time = 138.505692 + 0: The maximum resident set size (KB) = 905356 -Test 199 hrrr_control_debug_gnu PASS +Test 200 hrrr_control_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_gf_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_gf_debug_gnu -Checking test 200 hrrr_gf_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_gf_debug_gnu +Checking test 201 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.725164 - 0: The maximum resident set size (KB) = 870984 + 0: The total amount of wall time = 139.701392 + 0: The maximum resident set size (KB) = 905668 -Test 200 hrrr_gf_debug_gnu PASS +Test 201 hrrr_gf_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_c3_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_c3_debug_gnu -Checking test 201 hrrr_c3_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_c3_debug_gnu +Checking test 202 hrrr_c3_debug_gnu 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.459632 - 0: The maximum resident set size (KB) = 870304 + 0: The total amount of wall time = 140.929409 + 0: The maximum resident set size (KB) = 909256 -Test 201 hrrr_c3_debug_gnu PASS +Test 202 hrrr_c3_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_diag_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_diag_debug_gnu -Checking test 202 rap_diag_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_diag_debug_gnu +Checking test 203 rap_diag_debug_gnu 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.984589 - 0: The maximum resident set size (KB) = 957540 + 0: The total amount of wall time = 150.164227 + 0: The maximum resident set size (KB) = 993424 -Test 202 rap_diag_debug_gnu PASS +Test 203 rap_diag_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_noah_sfcdiff_cires_ugwp_debug_gnu -Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.806101 - 0: The maximum resident set size (KB) = 868412 + 0: The total amount of wall time = 223.324918 + 0: The maximum resident set size (KB) = 906252 -Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +Test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_progcld_thompson_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_progcld_thompson_debug_gnu -Checking test 204 rap_progcld_thompson_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_progcld_thompson_debug_gnu +Checking test 205 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 141.760554 - 0: The maximum resident set size (KB) = 868692 + 0: The total amount of wall time = 148.627662 + 0: The maximum resident set size (KB) = 908592 -Test 204 rap_progcld_thompson_debug_gnu PASS +Test 205 rap_progcld_thompson_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rrfs_v1beta_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rrfs_v1beta_debug_gnu -Checking test 205 rrfs_v1beta_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rrfs_v1beta_debug_gnu +Checking test 206 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.053155 - 0: The maximum resident set size (KB) = 873896 + 0: The total amount of wall time = 145.784804 + 0: The maximum resident set size (KB) = 903556 -Test 205 rrfs_v1beta_debug_gnu PASS +Test 206 rrfs_v1beta_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_ras_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_ras_debug_gnu -Checking test 206 control_ras_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_ras_debug_gnu +Checking test 207 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 86.107547 - 0: The maximum resident set size (KB) = 506000 + 0: The total amount of wall time = 89.825192 + 0: The maximum resident set size (KB) = 542968 -Test 206 control_ras_debug_gnu PASS +Test 207 control_ras_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_stochy_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_stochy_debug_gnu -Checking test 207 control_stochy_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_stochy_debug_gnu +Checking test 208 control_stochy_debug_gnu 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.003644 - 0: The maximum resident set size (KB) = 501464 + 0: The total amount of wall time = 132.220616 + 0: The maximum resident set size (KB) = 536420 -Test 207 control_stochy_debug_gnu PASS +Test 208 control_stochy_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_debug_p8_gnu -Checking test 208 control_debug_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_debug_p8_gnu +Checking test 209 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 92.118636 - 0: The maximum resident set size (KB) = 1289040 + 0: The total amount of wall time = 97.294973 + 0: The maximum resident set size (KB) = 1290436 -Test 208 control_debug_p8_gnu PASS +Test 209 control_debug_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_flake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_flake_debug_gnu -Checking test 209 rap_flake_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_flake_debug_gnu +Checking test 210 rap_flake_debug_gnu 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.025201 - 0: The maximum resident set size (KB) = 871580 + 0: The total amount of wall time = 150.510447 + 0: The maximum resident set size (KB) = 910048 -Test 209 rap_flake_debug_gnu PASS +Test 210 rap_flake_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_clm_lake_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_clm_lake_debug_gnu -Checking test 210 rap_clm_lake_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_clm_lake_debug_gnu +Checking test 211 rap_clm_lake_debug_gnu 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.622399 - 0: The maximum resident set size (KB) = 908480 + 0: The total amount of wall time = 166.688137 + 0: The maximum resident set size (KB) = 912912 -Test 210 rap_clm_lake_debug_gnu PASS +Test 211 rap_clm_lake_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//gnv1_c96_no_nest_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/gnv1_c96_no_nest_debug_gnu -Checking test 211 gnv1_c96_no_nest_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/gnv1_c96_no_nest_debug_gnu +Checking test 212 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -6922,27 +6980,27 @@ Checking test 211 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 238.506820 - 0: The maximum resident set size (KB) = 875136 + 0: The total amount of wall time = 244.919032 + 0: The maximum resident set size (KB) = 912568 -Test 211 gnv1_c96_no_nest_debug_gnu PASS +Test 212 gnv1_c96_no_nest_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//control_wam_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/control_wam_debug_gnu -Checking test 212 control_wam_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/control_wam_debug_gnu +Checking test 213 control_wam_debug_gnu results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 142.282891 - 0: The maximum resident set size (KB) = 241828 + 0: The total amount of wall time = 139.833908 + 0: The maximum resident set size (KB) = 243240 -Test 212 control_wam_debug_gnu PASS +Test 213 control_wam_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn32_phy32_gnu -Checking test 213 rap_control_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn32_phy32_gnu +Checking test 214 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6988,15 +7046,15 @@ Checking test 213 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 712.252202 - 0: The maximum resident set size (KB) = 755784 + 0: The total amount of wall time = 720.730287 + 0: The maximum resident set size (KB) = 749528 -Test 213 rap_control_dyn32_phy32_gnu PASS +Test 214 rap_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_dyn32_phy32_gnu -Checking test 214 hrrr_control_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_dyn32_phy32_gnu +Checking test 215 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7042,15 +7100,15 @@ Checking test 214 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 355.808909 - 0: The maximum resident set size (KB) = 750744 + 0: The total amount of wall time = 362.111791 + 0: The maximum resident set size (KB) = 742864 -Test 214 hrrr_control_dyn32_phy32_gnu PASS +Test 215 hrrr_control_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_2threads_dyn32_phy32_gnu -Checking test 215 rap_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_2threads_dyn32_phy32_gnu +Checking test 216 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7096,15 +7154,15 @@ Checking test 215 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.618391 - 0: The maximum resident set size (KB) = 811960 + 0: The total amount of wall time = 632.963806 + 0: The maximum resident set size (KB) = 798800 -Test 215 rap_2threads_dyn32_phy32_gnu PASS +Test 216 rap_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_2threads_dyn32_phy32_gnu -Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7150,15 +7208,15 @@ Checking test 216 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 321.475095 - 0: The maximum resident set size (KB) = 808748 + 0: The total amount of wall time = 313.926982 + 0: The maximum resident set size (KB) = 799352 -Test 216 hrrr_control_2threads_dyn32_phy32_gnu PASS +Test 217 hrrr_control_2threads_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_decomp_dyn32_phy32_gnu -Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7204,15 +7262,15 @@ Checking test 217 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 358.614669 - 0: The maximum resident set size (KB) = 749804 + 0: The total amount of wall time = 356.040102 + 0: The maximum resident set size (KB) = 742728 -Test 217 hrrr_control_decomp_dyn32_phy32_gnu PASS +Test 218 hrrr_control_decomp_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_restart_dyn32_phy32_gnu -Checking test 218 rap_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_restart_dyn32_phy32_gnu +Checking test 219 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7250,29 +7308,29 @@ Checking test 218 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 539.060602 - 0: The maximum resident set size (KB) = 590020 + 0: The total amount of wall time = 543.331387 + 0: The maximum resident set size (KB) = 593996 -Test 218 rap_restart_dyn32_phy32_gnu PASS +Test 219 rap_restart_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_restart_dyn32_phy32_gnu -Checking test 219 hrrr_control_restart_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_restart_dyn32_phy32_gnu +Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 189.843586 - 0: The maximum resident set size (KB) = 576948 + 0: The total amount of wall time = 207.317507 + 0: The maximum resident set size (KB) = 578408 -Test 219 hrrr_control_restart_dyn32_phy32_gnu PASS +Test 220 hrrr_control_restart_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_control_gnu -Checking test 220 conus13km_control_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_control_gnu +Checking test 221 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7287,41 +7345,41 @@ Checking test 220 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 243.994495 - 0: The maximum resident set size (KB) = 950540 + 0: The total amount of wall time = 246.068643 + 0: The maximum resident set size (KB) = 944844 -Test 220 conus13km_control_gnu PASS +Test 221 conus13km_control_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_control_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_2threads_gnu -Checking test 221 conus13km_2threads_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_2threads_gnu +Checking test 222 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.682159 - 0: The maximum resident set size (KB) = 993416 + 0: The total amount of wall time = 111.140507 + 0: The maximum resident set size (KB) = 982792 -Test 221 conus13km_2threads_gnu PASS +Test 222 conus13km_2threads_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_restart_mismatch_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_restart_mismatch_gnu -Checking test 222 conus13km_restart_mismatch_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_restart_mismatch_gnu +Checking test 223 conus13km_restart_mismatch_gnu results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.637443 - 0: The maximum resident set size (KB) = 608660 + 0: The total amount of wall time = 136.096037 + 0: The maximum resident set size (KB) = 602488 -Test 222 conus13km_restart_mismatch_gnu PASS +Test 223 conus13km_restart_mismatch_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn64_phy32_gnu -Checking test 223 rap_control_dyn64_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn64_phy32_gnu +Checking test 224 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7367,43 +7425,43 @@ Checking test 223 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 410.405125 - 0: The maximum resident set size (KB) = 782344 + 0: The total amount of wall time = 414.036234 + 0: The maximum resident set size (KB) = 778460 -Test 223 rap_control_dyn64_phy32_gnu PASS +Test 224 rap_control_dyn64_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_debug_dyn32_phy32_gnu -Checking test 224 rap_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_debug_dyn32_phy32_gnu +Checking test 225 rap_control_debug_dyn32_phy32_gnu 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.811187 - 0: The maximum resident set size (KB) = 763412 + 0: The total amount of wall time = 146.324481 + 0: The maximum resident set size (KB) = 758376 -Test 224 rap_control_debug_dyn32_phy32_gnu PASS +Test 225 rap_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//hrrr_control_debug_dyn32_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/hrrr_control_debug_dyn32_phy32_gnu -Checking test 225 hrrr_control_debug_dyn32_phy32_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/hrrr_control_debug_dyn32_phy32_gnu +Checking test 226 hrrr_control_debug_dyn32_phy32_gnu 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.424815 - 0: The maximum resident set size (KB) = 759256 + 0: The total amount of wall time = 138.600748 + 0: The maximum resident set size (KB) = 756976 -Test 225 hrrr_control_debug_dyn32_phy32_gnu PASS +Test 226 hrrr_control_debug_dyn32_phy32_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_gnu -Checking test 226 conus13km_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_gnu +Checking test 227 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7416,15 +7474,15 @@ Checking test 226 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 415.722724 - 0: The maximum resident set size (KB) = 963824 + 0: The total amount of wall time = 417.832826 + 0: The maximum resident set size (KB) = 948780 -Test 226 conus13km_debug_gnu PASS +Test 227 conus13km_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_qr_gnu -Checking test 227 conus13km_debug_qr_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_qr_gnu +Checking test 228 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7437,57 +7495,57 @@ Checking test 227 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 415.490477 - 0: The maximum resident set size (KB) = 635440 + 0: The total amount of wall time = 420.567411 + 0: The maximum resident set size (KB) = 634008 -Test 227 conus13km_debug_qr_gnu PASS +Test 228 conus13km_debug_qr_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_debug_2threads_gnu -Checking test 228 conus13km_debug_2threads_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_debug_2threads_gnu +Checking test 229 conus13km_debug_2threads_gnu 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.588284 - 0: The maximum resident set size (KB) = 1007036 + 0: The total amount of wall time = 260.246429 + 0: The maximum resident set size (KB) = 995916 -Test 228 conus13km_debug_2threads_gnu PASS +Test 229 conus13km_debug_2threads_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//conus13km_radar_tten_debug_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/conus13km_radar_tten_debug_gnu -Checking test 229 conus13km_radar_tten_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/conus13km_radar_tten_debug_gnu +Checking test 230 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 419.925814 - 0: The maximum resident set size (KB) = 1031012 + 0: The total amount of wall time = 425.211843 + 0: The maximum resident set size (KB) = 1031544 -Test 229 conus13km_radar_tten_debug_gnu PASS +Test 230 conus13km_radar_tten_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//rap_control_debug_dyn64_phy32_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/rap_control_dyn64_phy32_debug_gnu -Checking test 230 rap_control_dyn64_phy32_debug_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/rap_control_dyn64_phy32_debug_gnu +Checking test 231 rap_control_dyn64_phy32_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.290039 - 0: The maximum resident set size (KB) = 786648 + 0: The total amount of wall time = 148.346709 + 0: The maximum resident set size (KB) = 784308 -Test 230 rap_control_dyn64_phy32_debug_gnu PASS +Test 231 rap_control_dyn64_phy32_debug_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_p8_gnu -Checking test 231 cpld_control_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_p8_gnu +Checking test 232 cpld_control_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7551,15 +7609,15 @@ Checking test 231 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 633.867941 - 0: The maximum resident set size (KB) = 1505792 + 0: The total amount of wall time = 661.624509 + 0: The maximum resident set size (KB) = 1494884 -Test 231 cpld_control_p8_gnu PASS +Test 232 cpld_control_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_c96_noaero_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_nowave_noaero_p8_gnu -Checking test 232 cpld_control_nowave_noaero_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_nowave_noaero_p8_gnu +Checking test 233 cpld_control_nowave_noaero_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7620,15 +7678,15 @@ Checking test 232 cpld_control_nowave_noaero_p8_gnu 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 = 387.048170 - 0: The maximum resident set size (KB) = 1399560 + 0: The total amount of wall time = 409.576514 + 0: The maximum resident set size (KB) = 1384352 -Test 232 cpld_control_nowave_noaero_p8_gnu PASS +Test 233 cpld_control_nowave_noaero_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_p8_gnu -Checking test 233 cpld_debug_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_p8_gnu +Checking test 234 cpld_debug_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7680,15 +7738,15 @@ Checking test 233 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 365.191252 - 0: The maximum resident set size (KB) = 1509476 + 0: The total amount of wall time = 398.544593 + 0: The maximum resident set size (KB) = 1519204 -Test 233 cpld_debug_p8_gnu PASS +Test 234 cpld_debug_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_control_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_control_pdlib_p8_gnu -Checking test 234 cpld_control_pdlib_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_control_pdlib_p8_gnu +Checking test 235 cpld_control_pdlib_p8_gnu results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7751,15 +7809,15 @@ Checking test 234 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1307.197469 - 0: The maximum resident set size (KB) = 1380644 + 0: The total amount of wall time = 1341.905571 + 0: The maximum resident set size (KB) = 1378736 -Test 234 cpld_control_pdlib_p8_gnu PASS +Test 235 cpld_control_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//cpld_debug_pdlib_p8_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/cpld_debug_pdlib_p8_gnu -Checking test 235 cpld_debug_pdlib_p8_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/cpld_debug_pdlib_p8_gnu +Checking test 236 cpld_debug_pdlib_p8_gnu results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7810,25 +7868,25 @@ Checking test 235 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 758.081799 - 0: The maximum resident set size (KB) = 1387552 + 0: The total amount of wall time = 787.764345 + 0: The maximum resident set size (KB) = 1379604 -Test 235 cpld_debug_pdlib_p8_gnu PASS +Test 236 cpld_debug_pdlib_p8_gnu PASS baseline dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/new//datm_cdeps_control_cfsr_gnu -working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_5352/datm_cdeps_control_cfsr_gnu -Checking test 236 datm_cdeps_control_cfsr_gnu results .... +working dir = /scratch1/BMC/gmtb/CCPP_regression_testing/NCAR_ufs-weather-model/beta/run//rt_31152/datm_cdeps_control_cfsr_gnu +Checking test 237 datm_cdeps_control_cfsr_gnu results .... Comparing RESTART/20111002.000000.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 = 172.568758 - 0: The maximum resident set size (KB) = 695256 + 0: The total amount of wall time = 172.749166 + 0: The maximum resident set size (KB) = 695976 -Test 236 datm_cdeps_control_cfsr_gnu PASS +Test 237 datm_cdeps_control_cfsr_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 1 12:20:59 UTC 2024 -Elapsed time: 02h:21m:51s. Have a nice day! +Thu Mar 14 09:51:31 UTC 2024 +Elapsed time: 15h:35m:22s. Have a nice day! diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index fe47aee686..23dba5b5a5 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Sat Dec 23 10:37:18 CST 2023 +Mon Jan 15 00:10:44 CST 2024 Start Regression test -Testing UFSWM Hash: db1629adc63cff5d69ea39ef337ed26d3ab6feeb +Testing UFSWM Hash: 2e5b3439a23ac55a4fe0a483303ff69d8b2ff657 Testing With Submodule Hashes: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) - 50aa2c97882fbc9d4918813a22169fe97b424564 CICE-interface/CICE (CICE6.0.0-444-g50aa2c9) - 53bae532ddd2623230cdfea221a0784b80060d35 CMEPS-interface/CMEPS (cmeps_v0.4.1-2300-g53bae53) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-2301-gf8f7ba7) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 1474ed4e835374a27d44f2b9e44cc61b400eacc6 FV3 (remotes/origin/develop-smoke-dust) + 58757d8b32bd1f76189567ef99284d96003c14e0 FV3 (58757d8) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - a36cb73d6924f6cf56a72b5799bef3d75fe4dd61 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9871-ga36cb73d6) + 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9875-g60c397b91) 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) - 37e740526993fd162d092266ced19c625fbc3d8e stochastic_physics (ufs-v2.0.0-193-g37e7405) -Compile atm_debug_dyn32_intel elapsed time 237 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_debug_gnu elapsed time 396 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 440 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_dyn32_phy32_debug_gnu elapsed time 576 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 622 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 654 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 594 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_gnu elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaero_intel elapsed time 399 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 174 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 540 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 379 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 402 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmw_intel elapsed time 589 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 613 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 388 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_debug_intel elapsed time 126 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 188 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 530 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 177 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 50 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_debug_intel elapsed time 186 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile hafsw_faster_intel elapsed time 605 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 560 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn32_phy32_faster_intel elapsed time 550 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_gnu elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 389 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn64_phy32_debug_intel elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile rrfs_dyn64_phy32_intel elapsed time 377 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile s2s_aoflux_intel elapsed time 524 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_gnu elapsed time 671 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 518 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 639 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_gnu elapsed time 679 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 199 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2sw_pdlib_gnu elapsed time 735 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_intel elapsed time 1061 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 748 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_intel elapsed time 949 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_debug_gnu elapsed time 681 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 249 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_faster_intel elapsed time 761 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_gnu elapsed time 710 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 635 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile wam_debug_intel 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 wam_intel elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_clm_lake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta,FV3_HRRR_c3,FV3_HRRR_gf,FV3_global_nest_v1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_debug_gnu elapsed time 629 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn32_intel elapsed time 413 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_dyn32_phy32_debug_gnu elapsed time 696 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 683 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 711 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 543 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_gnu elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v17_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaero_intel elapsed time 383 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 154 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 571 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 367 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 397 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmw_intel elapsed time 553 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 534 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_debug_intel elapsed time 226 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 386 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 842 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 384 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 62 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 645 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_debug_intel elapsed time 285 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile hafsw_faster_intel elapsed time 687 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafsw_intel elapsed time 597 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf,FV3_global_nest_v1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_gf -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn32_phy32_faster_intel elapsed time 510 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 357 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn64_phy32_debug_intel elapsed time 261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile rrfs_dyn64_phy32_intel elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_gnu elapsed time 457 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile s2s_aoflux_intel elapsed time 540 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_gnu elapsed time 1059 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 595 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 338 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 726 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_gnu elapsed time 173 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 220 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2sw_pdlib_gnu elapsed time 958 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_intel elapsed time 912 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 750 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_intel elapsed time 1153 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_debug_gnu elapsed time 378 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 356 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_faster_intel elapsed time 843 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_gnu elapsed time 1191 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 641 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_debug_intel elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile wam_intel elapsed time 360 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +135,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.553021 - 0: The maximum resident set size (KB) = 1895700 + 0: The total amount of wall time = 440.741442 + 0: The maximum resident set size (KB) = 1885836 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +206,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 800.968229 - 0: The maximum resident set size (KB) = 1762644 + 0: The total amount of wall time = 784.829833 + 0: The maximum resident set size (KB) = 1757244 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -222,14 +222,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK - 0: The total amount of wall time = 531.031998 - 0: The maximum resident set size (KB) = 1185756 + 0: The total amount of wall time = 526.825557 + 0: The maximum resident set size (KB) = 1195520 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -282,14 +282,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 383.988400 - 0: The maximum resident set size (KB) = 1165388 + 0: The total amount of wall time = 386.616841 + 0: The maximum resident set size (KB) = 1181284 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,14 +353,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 905.383435 - 0: The maximum resident set size (KB) = 1695696 + 0: The total amount of wall time = 899.050062 + 0: The maximum resident set size (KB) = 1697360 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -412,14 +412,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1015.530683 - 0: The maximum resident set size (KB) = 1721408 + 0: The total amount of wall time = 1018.339187 + 0: The maximum resident set size (KB) = 1735036 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.615692 - 0: The maximum resident set size (KB) = 2038864 + 0: The total amount of wall time = 442.277717 + 0: The maximum resident set size (KB) = 2065120 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -544,14 +544,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 246.156421 - 0: The maximum resident set size (KB) = 1905420 + 0: The total amount of wall time = 242.535383 + 0: The maximum resident set size (KB) = 1961140 Test 008 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 443.491372 - 0: The maximum resident set size (KB) = 1976248 + 0: The total amount of wall time = 458.819431 + 0: The maximum resident set size (KB) = 1988144 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 251.155083 - 0: The maximum resident set size (KB) = 1737448 + 0: The total amount of wall time = 243.854044 + 0: The maximum resident set size (KB) = 1736808 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -736,14 +736,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 528.300605 - 0: The maximum resident set size (KB) = 2471932 + 0: The total amount of wall time = 520.802225 + 0: The maximum resident set size (KB) = 2493092 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -796,14 +796,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 438.682503 - 0: The maximum resident set size (KB) = 2034736 + 0: The total amount of wall time = 433.336399 + 0: The maximum resident set size (KB) = 2069584 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -856,14 +856,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 369.129172 - 0: The maximum resident set size (KB) = 1871488 + 0: The total amount of wall time = 376.286751 + 0: The maximum resident set size (KB) = 1893504 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -928,14 +928,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.183917 - 0: The maximum resident set size (KB) = 2035932 + 0: The total amount of wall time = 453.871841 + 0: The maximum resident set size (KB) = 2076784 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -988,14 +988,14 @@ Checking test 015 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 923.759311 - 0: The maximum resident set size (KB) = 2791360 + 0: The total amount of wall time = 913.303741 + 0: The maximum resident set size (KB) = 2811028 Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1048,14 +1048,14 @@ Checking test 016 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 356.379840 - 0: The maximum resident set size (KB) = 2809644 + 0: The total amount of wall time = 341.151347 + 0: The maximum resident set size (KB) = 2922076 Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1103,14 +1103,14 @@ Checking test 017 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 515.335922 - 0: The maximum resident set size (KB) = 3615724 + 0: The total amount of wall time = 521.426917 + 0: The maximum resident set size (KB) = 3631808 Test 017 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1158,14 +1158,14 @@ Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.370231 - 0: The maximum resident set size (KB) = 3519136 + 0: The total amount of wall time = 344.843614 + 0: The maximum resident set size (KB) = 3610860 Test 018 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1216,14 +1216,14 @@ Checking test 019 cpld_s2sa_p8_intel 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 = 284.274185 - 0: The maximum resident set size (KB) = 2002352 + 0: The total amount of wall time = 290.307401 + 0: The maximum resident set size (KB) = 2027916 Test 019 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1287,14 +1287,14 @@ Checking test 020 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 414.595857 - 0: The maximum resident set size (KB) = 1773856 + 0: The total amount of wall time = 418.573690 + 0: The maximum resident set size (KB) = 1774132 Test 020 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_nowave_noaero_p8_intel Checking test 021 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1356,14 +1356,14 @@ Checking test 021 cpld_control_nowave_noaero_p8_intel 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 = 228.656212 - 0: The maximum resident set size (KB) = 1821708 + 0: The total amount of wall time = 228.921056 + 0: The maximum resident set size (KB) = 1821568 Test 021 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1416,14 +1416,14 @@ Checking test 022 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 397.645987 - 0: The maximum resident set size (KB) = 2029396 + 0: The total amount of wall time = 402.806662 + 0: The maximum resident set size (KB) = 2060216 Test 022 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1475,14 +1475,14 @@ Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 269.749580 - 0: The maximum resident set size (KB) = 1782248 + 0: The total amount of wall time = 269.547137 + 0: The maximum resident set size (KB) = 1791656 Test 023 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_noaero_p8_agrid_intel Checking test 024 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1544,14 +1544,14 @@ Checking test 024 cpld_control_noaero_p8_agrid_intel 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 = 226.810327 - 0: The maximum resident set size (KB) = 1810872 + 0: The total amount of wall time = 232.639013 + 0: The maximum resident set size (KB) = 1818816 Test 024 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1601,14 +1601,14 @@ Checking test 025 cpld_control_c48_intel 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 = 432.031296 - 0: The maximum resident set size (KB) = 2839696 + 0: The total amount of wall time = 436.225680 + 0: The maximum resident set size (KB) = 2838536 Test 025 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1673,14 +1673,14 @@ Checking test 026 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 423.413716 - 0: The maximum resident set size (KB) = 2061752 + 0: The total amount of wall time = 428.308053 + 0: The maximum resident set size (KB) = 2085816 Test 026 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1744,14 +1744,14 @@ Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 817.496720 - 0: The maximum resident set size (KB) = 1804876 + 0: The total amount of wall time = 818.385530 + 0: The maximum resident set size (KB) = 1804592 Test 027 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1803,14 +1803,14 @@ Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 405.395536 - 0: The maximum resident set size (KB) = 1265372 + 0: The total amount of wall time = 394.446397 + 0: The maximum resident set size (KB) = 1293600 Test 028 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1874,14 +1874,14 @@ Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 915.671950 - 0: The maximum resident set size (KB) = 1718176 + 0: The total amount of wall time = 925.514217 + 0: The maximum resident set size (KB) = 1746100 Test 029 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1933,14 +1933,14 @@ Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1279.777886 - 0: The maximum resident set size (KB) = 1776864 + 0: The total amount of wall time = 1258.711558 + 0: The maximum resident set size (KB) = 1776204 Test 030 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_flake_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1951,14 +1951,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.034757 - 0: The maximum resident set size (KB) = 714212 + 0: The total amount of wall time = 164.803405 + 0: The maximum resident set size (KB) = 705956 Test 031 control_flake_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_CubedSphereGrid_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1985,18 +1985,18 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 113.287665 - 0: The maximum resident set size (KB) = 656308 + 0: The total amount of wall time = 116.713262 + 0: The maximum resident set size (KB) = 661608 Test 032 control_CubedSphereGrid_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_CubedSphereGrid_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -2007,14 +2007,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.271872 - 0: The maximum resident set size (KB) = 680952 + 0: The total amount of wall time = 121.147838 + 0: The maximum resident set size (KB) = 667696 Test 033 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_latlon_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2025,32 +2025,32 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.327489 - 0: The maximum resident set size (KB) = 669348 + 0: The total amount of wall time = 118.729954 + 0: The maximum resident set size (KB) = 658256 Test 034 control_latlon_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.575441 - 0: The maximum resident set size (KB) = 655348 + 0: The total amount of wall time = 123.017652 + 0: The maximum resident set size (KB) = 660760 Test 035 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_c48_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 036 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 339.028504 -0: The maximum resident set size (KB) = 862544 +0: The total amount of wall time = 339.031262 +0: The maximum resident set size (KB) = 860860 Test 036 control_c48_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_c192_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2107,14 +2107,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 459.962118 - 0: The maximum resident set size (KB) = 994440 + 0: The total amount of wall time = 457.344624 + 0: The maximum resident set size (KB) = 982564 Test 037 control_c192_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_c384_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2125,14 +2125,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 476.006442 - 0: The maximum resident set size (KB) = 1429812 + 0: The total amount of wall time = 483.108323 + 0: The maximum resident set size (KB) = 1447980 Test 038 control_c384_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_c384gdas_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2152,13 +2152,13 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK @@ -2175,14 +2175,14 @@ Checking test 039 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.998745 - 0: The maximum resident set size (KB) = 1512464 + 0: The total amount of wall time = 417.446836 + 0: The maximum resident set size (KB) = 1514892 Test 039 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_stochy_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2193,28 +2193,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.342912 - 0: The maximum resident set size (KB) = 659840 + 0: The total amount of wall time = 76.228823 + 0: The maximum resident set size (KB) = 681048 Test 040 control_stochy_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_stochy_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_stochy_restart_intel Checking test 041 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 43.697000 - 0: The maximum resident set size (KB) = 532660 + 0: The total amount of wall time = 45.769532 + 0: The maximum resident set size (KB) = 536260 Test 041 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2225,14 +2225,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 72.674272 - 0: The maximum resident set size (KB) = 677132 + 0: The total amount of wall time = 73.856864 + 0: The maximum resident set size (KB) = 669448 Test 042 control_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_iovr4_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2247,14 +2247,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 116.151685 - 0: The maximum resident set size (KB) = 668308 + 0: The total amount of wall time = 117.270810 + 0: The maximum resident set size (KB) = 664056 Test 043 control_iovr4_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_iovr5_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2269,14 +2269,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.744251 - 0: The maximum resident set size (KB) = 657144 + 0: The total amount of wall time = 119.384146 + 0: The maximum resident set size (KB) = 658700 Test 044 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2323,14 +2323,14 @@ Checking test 045 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.238329 - 0: The maximum resident set size (KB) = 1637868 + 0: The total amount of wall time = 143.097618 + 0: The maximum resident set size (KB) = 1639504 Test 045 control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_ugwpv1_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2377,14 +2377,14 @@ Checking test 046 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 140.131011 - 0: The maximum resident set size (KB) = 1635876 + 0: The total amount of wall time = 139.724288 + 0: The maximum resident set size (KB) = 1636296 Test 046 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_restart_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2423,14 +2423,14 @@ Checking test 047 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 77.786008 - 0: The maximum resident set size (KB) = 917212 + 0: The total amount of wall time = 77.804960 + 0: The maximum resident set size (KB) = 914816 Test 047 control_restart_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2477,14 +2477,14 @@ Checking test 048 control_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 137.802376 - 0: The maximum resident set size (KB) = 1626928 + 0: The total amount of wall time = 140.516098 + 0: The maximum resident set size (KB) = 1628992 Test 048 control_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_restart_noqr_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2523,14 +2523,14 @@ Checking test 049 control_restart_noqr_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 73.897172 - 0: The maximum resident set size (KB) = 976396 + 0: The total amount of wall time = 74.770096 + 0: The maximum resident set size (KB) = 983496 Test 049 control_restart_noqr_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_decomp_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2573,14 +2573,14 @@ Checking test 050 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 149.291314 - 0: The maximum resident set size (KB) = 1628984 + 0: The total amount of wall time = 146.437668 + 0: The maximum resident set size (KB) = 1620860 Test 050 control_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_2threads_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2623,14 +2623,14 @@ Checking test 051 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.092530 - 0: The maximum resident set size (KB) = 1729024 + 0: The total amount of wall time = 133.510836 + 0: The maximum resident set size (KB) = 1723092 Test 051 control_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_lndp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2649,14 +2649,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 255.325593 - 0: The maximum resident set size (KB) = 1650680 + 0: The total amount of wall time = 258.742607 + 0: The maximum resident set size (KB) = 1637392 Test 052 control_p8_lndp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_rrtmgp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2703,14 +2703,14 @@ Checking test 053 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.300277 - 0: The maximum resident set size (KB) = 1710128 + 0: The total amount of wall time = 200.599025 + 0: The maximum resident set size (KB) = 1702404 Test 053 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_mynn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2757,14 +2757,14 @@ Checking test 054 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.897479 - 0: The maximum resident set size (KB) = 1637184 + 0: The total amount of wall time = 147.197657 + 0: The maximum resident set size (KB) = 1642404 Test 054 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/merra2_thompson_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2811,14 +2811,14 @@ Checking test 055 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.484736 - 0: The maximum resident set size (KB) = 1649120 + 0: The total amount of wall time = 167.752512 + 0: The maximum resident set size (KB) = 1659224 Test 055 merra2_thompson_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2829,28 +2829,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.963390 - 0: The maximum resident set size (KB) = 954852 + 0: The total amount of wall time = 262.670310 + 0: The maximum resident set size (KB) = 958156 Test 056 regional_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_restart_intel Checking test 057 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 142.603118 - 0: The maximum resident set size (KB) = 1100224 + 0: The total amount of wall time = 147.856041 + 0: The maximum resident set size (KB) = 1106340 Test 057 regional_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2861,14 +2861,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 277.439950 - 0: The maximum resident set size (KB) = 945648 + 0: The total amount of wall time = 277.430967 + 0: The maximum resident set size (KB) = 949296 Test 058 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2879,14 +2879,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 166.042925 - 0: The maximum resident set size (KB) = 913720 + 0: The total amount of wall time = 164.140136 + 0: The maximum resident set size (KB) = 912796 Test 059 regional_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_noquilt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2894,28 +2894,28 @@ Checking test 060 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 251.987601 - 0: The maximum resident set size (KB) = 1489796 + 0: The total amount of wall time = 257.501830 + 0: The maximum resident set size (KB) = 1492164 Test 060 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_netcdf_parallel_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_netcdf_parallel_intel Checking test 061 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 262.274496 - 0: The maximum resident set size (KB) = 955780 + 0: The total amount of wall time = 260.176121 + 0: The maximum resident set size (KB) = 964196 Test 061 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_2dwrtdecomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2926,14 +2926,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 263.240316 - 0: The maximum resident set size (KB) = 954636 + 0: The total amount of wall time = 266.198251 + 0: The maximum resident set size (KB) = 965596 Test 062 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_wofs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2944,14 +2944,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 325.907451 - 0: The maximum resident set size (KB) = 2075948 + 0: The total amount of wall time = 326.237185 + 0: The maximum resident set size (KB) = 2073676 Test 063 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2998,14 +2998,14 @@ Checking test 064 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.626789 - 0: The maximum resident set size (KB) = 1198808 + 0: The total amount of wall time = 381.812837 + 0: The maximum resident set size (KB) = 1195996 Test 064 rap_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_spp_sppt_shum_skeb_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3016,14 +3016,14 @@ Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 196.388734 - 0: The maximum resident set size (KB) = 1402652 + 0: The total amount of wall time = 210.030089 + 0: The maximum resident set size (KB) = 1397176 Test 065 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3070,14 +3070,14 @@ Checking test 066 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.230446 - 0: The maximum resident set size (KB) = 1137828 + 0: The total amount of wall time = 398.078561 + 0: The maximum resident set size (KB) = 1134492 Test 066 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3124,14 +3124,14 @@ Checking test 067 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.583215 - 0: The maximum resident set size (KB) = 1376080 + 0: The total amount of wall time = 363.671006 + 0: The maximum resident set size (KB) = 1370264 Test 067 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3170,14 +3170,14 @@ Checking test 068 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.193188 - 0: The maximum resident set size (KB) = 1140384 + 0: The total amount of wall time = 193.658583 + 0: The maximum resident set size (KB) = 1147868 Test 068 rap_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3224,14 +3224,14 @@ Checking test 069 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.634547 - 0: The maximum resident set size (KB) = 1184244 + 0: The total amount of wall time = 378.199409 + 0: The maximum resident set size (KB) = 1194100 Test 069 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3278,14 +3278,14 @@ Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 405.687559 - 0: The maximum resident set size (KB) = 1127828 + 0: The total amount of wall time = 403.715879 + 0: The maximum resident set size (KB) = 1150152 Test 070 rap_sfcdiff_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3324,14 +3324,14 @@ Checking test 071 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.694406 - 0: The maximum resident set size (KB) = 1188148 + 0: The total amount of wall time = 287.197301 + 0: The maximum resident set size (KB) = 1195876 Test 071 rap_sfcdiff_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3378,14 +3378,14 @@ Checking test 072 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.579078 - 0: The maximum resident set size (KB) = 1084536 + 0: The total amount of wall time = 192.995481 + 0: The maximum resident set size (KB) = 1082376 Test 072 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_decomp_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3432,14 +3432,14 @@ Checking test 073 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.214608 - 0: The maximum resident set size (KB) = 1037316 + 0: The total amount of wall time = 196.204289 + 0: The maximum resident set size (KB) = 1036976 Test 073 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3486,28 +3486,28 @@ Checking test 074 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 181.989157 - 0: The maximum resident set size (KB) = 1111856 + 0: The total amount of wall time = 180.498921 + 0: The maximum resident set size (KB) = 1122072 Test 074 hrrr_control_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_restart_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_restart_intel Checking test 075 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 101.344048 - 0: The maximum resident set size (KB) = 1032000 + 0: The total amount of wall time = 100.996489 + 0: The maximum resident set size (KB) = 1024276 Test 075 hrrr_control_restart_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1beta_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3554,14 +3554,14 @@ Checking test 076 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 374.988674 - 0: The maximum resident set size (KB) = 1198752 + 0: The total amount of wall time = 371.280874 + 0: The maximum resident set size (KB) = 1186480 Test 076 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1nssl_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3576,14 +3576,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 447.664319 - 0: The maximum resident set size (KB) = 2008844 + 0: The total amount of wall time = 448.783870 + 0: The maximum resident set size (KB) = 1999812 Test 077 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3598,14 +3598,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 438.047166 - 0: The maximum resident set size (KB) = 2178140 + 0: The total amount of wall time = 440.686887 + 0: The maximum resident set size (KB) = 2173320 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_csawmg_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3616,14 +3616,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 300.641683 - 0: The maximum resident set size (KB) = 841096 + 0: The total amount of wall time = 300.318894 + 0: The maximum resident set size (KB) = 831960 Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_csawmgt_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3634,14 +3634,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 292.608527 - 0: The maximum resident set size (KB) = 826068 + 0: The total amount of wall time = 294.368975 + 0: The maximum resident set size (KB) = 839344 Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_ras_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3652,26 +3652,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.881847 - 0: The maximum resident set size (KB) = 803636 + 0: The total amount of wall time = 163.306019 + 0: The maximum resident set size (KB) = 804276 Test 081 control_ras_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_wam_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_wam_intel Checking test 082 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 101.828355 - 0: The maximum resident set size (KB) = 790500 + 0: The total amount of wall time = 100.996148 + 0: The maximum resident set size (KB) = 789896 Test 082 control_wam_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3718,14 +3718,14 @@ Checking test 083 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.165905 - 0: The maximum resident set size (KB) = 1643320 + 0: The total amount of wall time = 130.620680 + 0: The maximum resident set size (KB) = 1633708 Test 083 control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_control_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3736,14 +3736,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 237.223179 - 0: The maximum resident set size (KB) = 956580 + 0: The total amount of wall time = 241.372244 + 0: The maximum resident set size (KB) = 955284 Test 084 regional_control_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_CubedSphereGrid_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3770,364 +3770,364 @@ Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 124.696152 - 0: The maximum resident set size (KB) = 819876 + 0: The total amount of wall time = 126.463882 + 0: The maximum resident set size (KB) = 820836 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_wrtGauss_netcdf_parallel_debug_intel Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 126.377672 - 0: The maximum resident set size (KB) = 829696 + 0: The total amount of wall time = 126.863823 + 0: The maximum resident set size (KB) = 835320 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_stochy_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_stochy_debug_intel Checking test 087 control_stochy_debug_intel 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.268858 - 0: The maximum resident set size (KB) = 838644 + 0: The total amount of wall time = 141.519431 + 0: The maximum resident set size (KB) = 827340 Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_lndp_debug_intel Checking test 088 control_lndp_debug_intel 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.227911 - 0: The maximum resident set size (KB) = 834136 + 0: The total amount of wall time = 127.054486 + 0: The maximum resident set size (KB) = 840340 Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_csawmg_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_csawmg_debug_intel Checking test 089 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.627022 - 0: The maximum resident set size (KB) = 869336 + 0: The total amount of wall time = 192.316025 + 0: The maximum resident set size (KB) = 868568 Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_csawmgt_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_csawmgt_debug_intel Checking test 090 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.229522 - 0: The maximum resident set size (KB) = 863576 + 0: The total amount of wall time = 190.769122 + 0: The maximum resident set size (KB) = 865536 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_ras_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_ras_debug_intel Checking test 091 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.748328 - 0: The maximum resident set size (KB) = 834588 + 0: The total amount of wall time = 127.866464 + 0: The maximum resident set size (KB) = 847600 Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_diag_debug_intel Checking test 092 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 129.122651 - 0: The maximum resident set size (KB) = 893520 + 0: The total amount of wall time = 130.729455 + 0: The maximum resident set size (KB) = 882796 Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_debug_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_debug_p8_intel Checking test 093 control_debug_p8_intel 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.372840 - 0: The maximum resident set size (KB) = 1653364 + 0: The total amount of wall time = 134.800958 + 0: The maximum resident set size (KB) = 1656196 Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_debug_intel Checking test 094 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 833.531753 - 0: The maximum resident set size (KB) = 896448 + 0: The total amount of wall time = 831.820720 + 0: The maximum resident set size (KB) = 902996 Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_debug_intel Checking test 095 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.888217 - 0: The maximum resident set size (KB) = 1223388 + 0: The total amount of wall time = 232.814282 + 0: The maximum resident set size (KB) = 1211012 Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_debug_intel Checking test 096 hrrr_control_debug_intel 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.904315 - 0: The maximum resident set size (KB) = 1209112 + 0: The total amount of wall time = 226.769958 + 0: The maximum resident set size (KB) = 1217372 Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_gf_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_gf_debug_intel Checking test 097 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.443863 - 0: The maximum resident set size (KB) = 1211640 + 0: The total amount of wall time = 229.776855 + 0: The maximum resident set size (KB) = 1219420 Test 097 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_c3_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_c3_debug_intel Checking test 098 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.736137 - 0: The maximum resident set size (KB) = 1218264 + 0: The total amount of wall time = 230.402273 + 0: The maximum resident set size (KB) = 1218524 Test 098 hrrr_c3_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_unified_drag_suite_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_unified_drag_suite_debug_intel Checking test 099 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.074768 - 0: The maximum resident set size (KB) = 1222744 + 0: The total amount of wall time = 229.582364 + 0: The maximum resident set size (KB) = 1209752 Test 099 rap_unified_drag_suite_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_diag_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_diag_debug_intel Checking test 100 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.500881 - 0: The maximum resident set size (KB) = 1297996 + 0: The total amount of wall time = 242.367658 + 0: The maximum resident set size (KB) = 1294420 Test 100 rap_diag_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_cires_ugwp_debug_intel Checking test 101 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 238.289763 - 0: The maximum resident set size (KB) = 1214088 + 0: The total amount of wall time = 235.744729 + 0: The maximum resident set size (KB) = 1224252 Test 101 rap_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_unified_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_unified_ugwp_debug_intel Checking test 102 rap_unified_ugwp_debug_intel 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.965988 - 0: The maximum resident set size (KB) = 1224660 + 0: The total amount of wall time = 235.489446 + 0: The maximum resident set size (KB) = 1221672 Test 102 rap_unified_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_lndp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_lndp_debug_intel Checking test 103 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.413541 - 0: The maximum resident set size (KB) = 1209736 + 0: The total amount of wall time = 236.300609 + 0: The maximum resident set size (KB) = 1209288 Test 103 rap_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_progcld_thompson_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_progcld_thompson_debug_intel Checking test 104 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.939091 - 0: The maximum resident set size (KB) = 1216444 + 0: The total amount of wall time = 235.389214 + 0: The maximum resident set size (KB) = 1219104 Test 104 rap_progcld_thompson_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_noah_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_noah_debug_intel Checking test 105 rap_noah_debug_intel 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.005204 - 0: The maximum resident set size (KB) = 1207800 + 0: The total amount of wall time = 225.233343 + 0: The maximum resident set size (KB) = 1214992 Test 105 rap_noah_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_debug_intel Checking test 106 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.285046 - 0: The maximum resident set size (KB) = 1208368 + 0: The total amount of wall time = 232.277611 + 0: The maximum resident set size (KB) = 1212128 Test 106 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 381.649503 - 0: The maximum resident set size (KB) = 1214212 + 0: The total amount of wall time = 382.333217 + 0: The maximum resident set size (KB) = 1210388 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1beta_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1beta_debug_intel Checking test 108 rrfs_v1beta_debug_intel 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.602866 - 0: The maximum resident set size (KB) = 1216840 + 0: The total amount of wall time = 226.753980 + 0: The maximum resident set size (KB) = 1207832 Test 108 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_clm_lake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_clm_lake_debug_intel Checking test 109 rap_clm_lake_debug_intel 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.497776 - 0: The maximum resident set size (KB) = 1219396 + 0: The total amount of wall time = 302.267840 + 0: The maximum resident set size (KB) = 1218036 Test 109 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_flake_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_flake_debug_intel Checking test 110 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.079503 - 0: The maximum resident set size (KB) = 1212580 + 0: The total amount of wall time = 229.927416 + 0: The maximum resident set size (KB) = 1225648 Test 110 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/gnv1_c96_no_nest_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4168,14 +4168,14 @@ Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 401.946795 - 0: The maximum resident set size (KB) = 1227508 + 0: The total amount of wall time = 401.712462 + 0: The maximum resident set size (KB) = 1221508 Test 111 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -4186,14 +4186,14 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 188.360678 - 0: The maximum resident set size (KB) = 1271692 + 0: The total amount of wall time = 186.751407 + 0: The maximum resident set size (KB) = 1274008 Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn32_phy32_intel Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4240,14 +4240,14 @@ Checking test 113 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 308.607953 - 0: The maximum resident set size (KB) = 1135356 + 0: The total amount of wall time = 314.240348 + 0: The maximum resident set size (KB) = 1136692 Test 113 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_dyn32_phy32_intel Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4294,14 +4294,14 @@ Checking test 114 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.767977 - 0: The maximum resident set size (KB) = 1023908 + 0: The total amount of wall time = 165.309780 + 0: The maximum resident set size (KB) = 1032964 Test 114 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_2threads_dyn32_phy32_intel Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4348,14 +4348,14 @@ Checking test 115 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 289.736942 - 0: The maximum resident set size (KB) = 1288248 + 0: The total amount of wall time = 297.355521 + 0: The maximum resident set size (KB) = 1295132 Test 115 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_2threads_dyn32_phy32_intel Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4402,14 +4402,14 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.021184 - 0: The maximum resident set size (KB) = 1042744 + 0: The total amount of wall time = 155.566038 + 0: The maximum resident set size (KB) = 1034800 Test 116 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_decomp_dyn32_phy32_intel Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4456,14 +4456,14 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.073878 - 0: The maximum resident set size (KB) = 981132 + 0: The total amount of wall time = 174.781311 + 0: The maximum resident set size (KB) = 987576 Test 117 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_restart_dyn32_phy32_intel Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4502,28 +4502,28 @@ Checking test 118 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.605062 - 0: The maximum resident set size (KB) = 1086452 + 0: The total amount of wall time = 237.990645 + 0: The maximum resident set size (KB) = 1094336 Test 118 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_restart_dyn32_phy32_intel Checking test 119 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.679866 - 0: The maximum resident set size (KB) = 956008 + 0: The total amount of wall time = 86.851106 + 0: The maximum resident set size (KB) = 944112 Test 119 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_control_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_control_intel Checking test 120 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4539,40 +4539,40 @@ Checking test 120 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 95.611663 - 0: The maximum resident set size (KB) = 1348476 + 0: The total amount of wall time = 101.035063 + 0: The maximum resident set size (KB) = 1355608 Test 120 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_2threads_intel Checking test 121 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 41.972758 - 0: The maximum resident set size (KB) = 1245788 + 0: The total amount of wall time = 37.051294 + 0: The maximum resident set size (KB) = 1254416 Test 121 conus13km_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_restart_mismatch_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_restart_mismatch_intel Checking test 122 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK + Comparing sfcf002.nc ............ALT CHECK......NOT OK + Comparing atmf002.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 54.974213 - 0: The maximum resident set size (KB) = 1231920 + 0: The total amount of wall time = 53.020658 + 0: The maximum resident set size (KB) = 1229552 -Test 122 conus13km_restart_mismatch_intel PASS +Test 122 conus13km_restart_mismatch_intel FAIL Tries: 2 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn64_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn64_phy32_intel Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4619,42 +4619,42 @@ Checking test 123 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.171709 - 0: The maximum resident set size (KB) = 1086060 + 0: The total amount of wall time = 217.703282 + 0: The maximum resident set size (KB) = 1076232 Test 123 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_debug_dyn32_phy32_intel Checking test 124 rap_control_debug_dyn32_phy32_intel 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.849398 - 0: The maximum resident set size (KB) = 1099676 + 0: The total amount of wall time = 231.235512 + 0: The maximum resident set size (KB) = 1093284 Test 124 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_debug_dyn32_phy32_intel Checking test 125 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 221.320475 - 0: The maximum resident set size (KB) = 1094252 + 0: The total amount of wall time = 221.670530 + 0: The maximum resident set size (KB) = 1104748 Test 125 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_intel Checking test 126 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4668,14 +4668,14 @@ Checking test 126 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 690.732506 - 0: The maximum resident set size (KB) = 1389528 + 0: The total amount of wall time = 689.529277 + 0: The maximum resident set size (KB) = 1374644 Test 126 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_qr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_qr_intel Checking test 127 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4689,81 +4689,81 @@ Checking test 127 conus13km_debug_qr_intel results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 696.630493 - 0: The maximum resident set size (KB) = 987412 + 0: The total amount of wall time = 705.540100 + 0: The maximum resident set size (KB) = 1000076 Test 127 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_2threads_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_2threads_intel Checking test 128 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 387.357449 - 0: The maximum resident set size (KB) = 1292632 + 0: The total amount of wall time = 397.952383 + 0: The maximum resident set size (KB) = 1290152 Test 128 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_radar_tten_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_radar_tten_debug_intel Checking test 129 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 687.341482 - 0: The maximum resident set size (KB) = 1445560 + 0: The total amount of wall time = 694.112501 + 0: The maximum resident set size (KB) = 1450448 Test 129 conus13km_radar_tten_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn64_phy32_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn64_phy32_debug_intel Checking test 130 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.660103 - 0: The maximum resident set size (KB) = 1160976 + 0: The total amount of wall time = 228.431644 + 0: The maximum resident set size (KB) = 1141228 Test 130 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_atm_intel Checking test 131 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 308.308546 - 0: The maximum resident set size (KB) = 873740 + 0: The total amount of wall time = 331.099831 + 0: The maximum resident set size (KB) = 861596 Test 131 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_atm_thompson_gfdlsf_intel Checking test 132 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 286.576304 - 0: The maximum resident set size (KB) = 1262576 + 0: The total amount of wall time = 301.965207 + 0: The maximum resident set size (KB) = 1276580 Test 132 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_atm_ocn_intel Checking test 133 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4772,14 +4772,14 @@ Checking test 133 hafs_regional_atm_ocn_intel 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 = 381.022177 - 0: The maximum resident set size (KB) = 930724 + 0: The total amount of wall time = 385.070141 + 0: The maximum resident set size (KB) = 934340 Test 133 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_atm_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_atm_wav_intel Checking test 134 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4788,14 +4788,14 @@ Checking test 134 hafs_regional_atm_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 837.994246 - 0: The maximum resident set size (KB) = 986504 + 0: The total amount of wall time = 858.478650 + 0: The maximum resident set size (KB) = 981744 Test 134 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_atm_ocn_wav_intel Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4806,14 +4806,14 @@ Checking test 135 hafs_regional_atm_ocn_wav_intel results .... Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 874.813709 - 0: The maximum resident set size (KB) = 1006660 + 0: The total amount of wall time = 908.739175 + 0: The maximum resident set size (KB) = 1002392 Test 135 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_1nest_atm_intel Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4828,21 +4828,21 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 325.766059 - 0: The maximum resident set size (KB) = 601516 + 0: The total amount of wall time = 322.033140 + 0: The maximum resident set size (KB) = 603008 Test 136 hafs_regional_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_telescopic_2nests_atm_intel Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4851,14 +4851,14 @@ Checking test 137 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 405.686236 - 0: The maximum resident set size (KB) = 605744 + 0: The total amount of wall time = 418.074064 + 0: The maximum resident set size (KB) = 614888 Test 137 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_global_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_global_1nest_atm_intel Checking test 138 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4879,15 +4879,15 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK @@ -4905,14 +4905,14 @@ Checking test 138 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 153.769938 - 0: The maximum resident set size (KB) = 434648 + 0: The total amount of wall time = 161.952929 + 0: The maximum resident set size (KB) = 428536 Test 138 hafs_global_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_global_multiple_4nests_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_global_multiple_4nests_atm_intel Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4939,7 +4939,7 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK @@ -4951,25 +4951,25 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile5.nc .........OK Comparing RESTART/20200825.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK @@ -4979,11 +4979,11 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/20200825.180000.sfc_data.nest03.tile8.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile6.nc .........OK Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK @@ -4994,14 +4994,14 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK - 0: The total amount of wall time = 448.004940 - 0: The maximum resident set size (KB) = 537872 + 0: The total amount of wall time = 466.703016 + 0: The maximum resident set size (KB) = 539728 Test 139 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_specified_moving_1nest_atm_intel Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5010,14 +5010,14 @@ Checking test 140 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 222.153899 - 0: The maximum resident set size (KB) = 615012 + 0: The total amount of wall time = 231.189972 + 0: The maximum resident set size (KB) = 615384 Test 140 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_storm_following_1nest_atm_intel Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5039,14 +5039,14 @@ Checking test 141 hafs_regional_storm_following_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 207.152082 - 0: The maximum resident set size (KB) = 613740 + 0: The total amount of wall time = 220.382018 + 0: The maximum resident set size (KB) = 612588 Test 141 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5055,28 +5055,28 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 275.684825 - 0: The maximum resident set size (KB) = 666160 + 0: The total amount of wall time = 283.564397 + 0: The maximum resident set size (KB) = 671124 Test 142 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_global_storm_following_1nest_atm_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_global_storm_following_1nest_atm_intel Checking test 143 hafs_global_storm_following_1nest_atm_intel 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 = 71.765543 - 0: The maximum resident set size (KB) = 447060 + 0: The total amount of wall time = 80.929971 + 0: The maximum resident set size (KB) = 447856 Test 143 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/gnv1_nested_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/gnv1_nested_intel Checking test 144 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5114,7 +5114,7 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile6.nc .........OK Comparing RESTART/20200825.180000.sfc_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.sfc_data.tile4.nc .........OK @@ -5123,28 +5123,28 @@ Checking test 144 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 241.428202 - 0: The maximum resident set size (KB) = 896908 + 0: The total amount of wall time = 250.272030 + 0: The maximum resident set size (KB) = 896112 Test 144 gnv1_nested_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 663.598781 - 0: The maximum resident set size (KB) = 628072 + 0: The total amount of wall time = 685.174602 + 0: The maximum resident set size (KB) = 624168 Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5155,14 +5155,14 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 1032.115674 - 0: The maximum resident set size (KB) = 736528 + 0: The total amount of wall time = 1056.664050 + 0: The maximum resident set size (KB) = 766992 Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_docn_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_docn_intel Checking test 147 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5170,14 +5170,14 @@ Checking test 147 hafs_regional_docn_intel results .... 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 = 311.614410 - 0: The maximum resident set size (KB) = 937632 + 0: The total amount of wall time = 325.905441 + 0: The maximum resident set size (KB) = 955136 Test 147 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_docn_oisst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_docn_oisst_intel Checking test 148 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5185,131 +5185,131 @@ Checking test 148 hafs_regional_docn_oisst_intel results .... 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 = 314.588905 - 0: The maximum resident set size (KB) = 928764 + 0: The total amount of wall time = 326.638054 + 0: The maximum resident set size (KB) = 935124 Test 148 hafs_regional_docn_oisst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hafs_regional_datm_cdeps_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hafs_regional_datm_cdeps_intel Checking test 149 hafs_regional_datm_cdeps_intel 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 = 971.099548 - 0: The maximum resident set size (KB) = 1346884 + 0: The total amount of wall time = 976.887050 + 0: The maximum resident set size (KB) = 1341200 Test 149 hafs_regional_datm_cdeps_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_control_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_control_cfsr_intel Checking test 150 datm_cdeps_control_cfsr_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.553203 - 0: The maximum resident set size (KB) = 1141800 + 0: The total amount of wall time = 124.293896 + 0: The maximum resident set size (KB) = 1139372 Test 150 datm_cdeps_control_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_restart_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_restart_cfsr_intel Checking test 151 datm_cdeps_restart_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 74.210426 - 0: The maximum resident set size (KB) = 1094812 + 0: The total amount of wall time = 76.994059 + 0: The maximum resident set size (KB) = 1090544 Test 151 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_control_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_control_gefs_intel Checking test 152 datm_cdeps_control_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.284511 - 0: The maximum resident set size (KB) = 1003324 + 0: The total amount of wall time = 117.699812 + 0: The maximum resident set size (KB) = 1013080 Test 152 datm_cdeps_control_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_iau_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_iau_gefs_intel Checking test 153 datm_cdeps_iau_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.302234 - 0: The maximum resident set size (KB) = 1001856 + 0: The total amount of wall time = 121.030158 + 0: The maximum resident set size (KB) = 1005656 Test 153 datm_cdeps_iau_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_stochy_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_stochy_gefs_intel Checking test 154 datm_cdeps_stochy_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 120.352890 - 0: The maximum resident set size (KB) = 1002332 + 0: The total amount of wall time = 120.251648 + 0: The maximum resident set size (KB) = 1017784 Test 154 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_ciceC_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_ciceC_cfsr_intel Checking test 155 datm_cdeps_ciceC_cfsr_intel results .... Comparing RESTART/20111002.000000.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.395695 - 0: The maximum resident set size (KB) = 1138148 + 0: The total amount of wall time = 122.696210 + 0: The maximum resident set size (KB) = 1146408 Test 155 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_bulk_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_bulk_cfsr_intel Checking test 156 datm_cdeps_bulk_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 124.372371 - 0: The maximum resident set size (KB) = 1127332 + 0: The total amount of wall time = 126.044688 + 0: The maximum resident set size (KB) = 1135868 Test 156 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_bulk_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_bulk_gefs_intel Checking test 157 datm_cdeps_bulk_gefs_intel results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.879345 - 0: The maximum resident set size (KB) = 1000312 + 0: The total amount of wall time = 118.648730 + 0: The maximum resident set size (KB) = 1015080 Test 157 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_mx025_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_mx025_cfsr_intel Checking test 158 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5318,14 +5318,14 @@ Checking test 158 datm_cdeps_mx025_cfsr_intel 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 = 314.876657 - 0: The maximum resident set size (KB) = 1146904 + 0: The total amount of wall time = 282.286819 + 0: The maximum resident set size (KB) = 1161276 Test 158 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_mx025_gefs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_mx025_gefs_intel Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5334,77 +5334,77 @@ Checking test 159 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 308.635967 - 0: The maximum resident set size (KB) = 1137500 + 0: The total amount of wall time = 276.620833 + 0: The maximum resident set size (KB) = 1134948 Test 159 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_multiple_files_cfsr_intel Checking test 160 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.983622 - 0: The maximum resident set size (KB) = 1145664 + 0: The total amount of wall time = 122.559579 + 0: The maximum resident set size (KB) = 1140444 Test 160 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_3072x1536_cfsr_intel Checking test 161 datm_cdeps_3072x1536_cfsr_intel results .... Comparing RESTART/20111002.000000.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 = 174.114183 - 0: The maximum resident set size (KB) = 2368724 + 0: The total amount of wall time = 175.008822 + 0: The maximum resident set size (KB) = 2416532 Test 161 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_gfs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_gfs_intel Checking test 162 datm_cdeps_gfs_intel results .... Comparing RESTART/20210323.060000.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 = 178.484681 - 0: The maximum resident set size (KB) = 2359492 + 0: The total amount of wall time = 179.618429 + 0: The maximum resident set size (KB) = 2358516 Test 162 datm_cdeps_gfs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_debug_cfsr_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_debug_cfsr_intel Checking test 163 datm_cdeps_debug_cfsr_intel results .... Comparing RESTART/20111001.060000.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 = 298.218854 - 0: The maximum resident set size (KB) = 1065700 + 0: The total amount of wall time = 293.373153 + 0: The maximum resident set size (KB) = 1075736 Test 163 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_control_cfsr_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_control_cfsr_faster_intel Checking test 164 datm_cdeps_control_cfsr_faster_intel results .... Comparing RESTART/20111002.000000.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.263539 - 0: The maximum resident set size (KB) = 1128420 + 0: The total amount of wall time = 122.217720 + 0: The maximum resident set size (KB) = 1150072 Test 164 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_lnd_gswp3_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_lnd_gswp3_intel Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5413,14 +5413,14 @@ Checking test 165 datm_cdeps_lnd_gswp3_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.270837 - 0: The maximum resident set size (KB) = 336372 + 0: The total amount of wall time = 10.380586 + 0: The maximum resident set size (KB) = 333748 Test 165 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/datm_cdeps_lnd_gswp3_rst_intel Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -5429,14 +5429,14 @@ Checking test 166 datm_cdeps_lnd_gswp3_rst_intel results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 9.506061 - 0: The maximum resident set size (KB) = 332732 + 0: The total amount of wall time = 9.008271 + 0: The maximum resident set size (KB) = 342788 Test 166 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_atmlnd_sbs_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_atmlnd_sbs_intel Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5521,14 +5521,14 @@ Checking test 167 control_p8_atmlnd_sbs_intel results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 169.689978 - 0: The maximum resident set size (KB) = 1703096 + 0: The total amount of wall time = 180.570924 + 0: The maximum resident set size (KB) = 1690236 Test 167 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/atmwav_control_noaero_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/atmwav_control_noaero_p8_intel Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5571,14 +5571,14 @@ Checking test 168 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 79.613293 - 0: The maximum resident set size (KB) = 1683440 + 0: The total amount of wall time = 85.152367 + 0: The maximum resident set size (KB) = 1690388 Test 168 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_atmwav_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_atmwav_intel Checking test 169 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5622,14 +5622,14 @@ Checking test 169 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 76.930583 - 0: The maximum resident set size (KB) = 691832 + 0: The total amount of wall time = 77.221233 + 0: The maximum resident set size (KB) = 696636 Test 169 control_atmwav_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/atmaero_control_p8_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/atmaero_control_p8_intel Checking test 170 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5673,14 +5673,14 @@ Checking test 170 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.276673 - 0: The maximum resident set size (KB) = 1775736 + 0: The total amount of wall time = 206.693506 + 0: The maximum resident set size (KB) = 1769004 Test 170 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/atmaero_control_p8_rad_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/atmaero_control_p8_rad_intel Checking test 171 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5724,14 +5724,14 @@ Checking test 171 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 250.110844 - 0: The maximum resident set size (KB) = 1797780 + 0: The total amount of wall time = 252.879039 + 0: The maximum resident set size (KB) = 1811876 Test 171 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/atmaero_control_p8_rad_micro_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/atmaero_control_p8_rad_micro_intel Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5775,14 +5775,14 @@ Checking test 172 atmaero_control_p8_rad_micro_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.692572 - 0: The maximum resident set size (KB) = 1818252 + 0: The total amount of wall time = 266.198419 + 0: The maximum resident set size (KB) = 1817476 Test 172 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_atmaq_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_atmaq_intel Checking test 173 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5798,14 +5798,14 @@ Checking test 173 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 588.126135 - 0: The maximum resident set size (KB) = 5160108 + 0: The total amount of wall time = 607.098806 + 0: The maximum resident set size (KB) = 5137924 Test 173 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_atmaq_debug_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_atmaq_debug_intel Checking test 174 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5819,14 +5819,14 @@ Checking test 174 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 980.477474 - 0: The maximum resident set size (KB) = 4557068 + 0: The total amount of wall time = 1015.989820 + 0: The maximum resident set size (KB) = 4580060 Test 174 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_atmaq_faster_intel +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_atmaq_faster_intel Checking test 175 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5842,14 +5842,14 @@ Checking test 175 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 690.674342 - 0: The maximum resident set size (KB) = 5149108 + 0: The total amount of wall time = 745.138741 + 0: The maximum resident set size (KB) = 5190356 Test 175 regional_atmaq_faster_intel PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c48_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_c48_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c48_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_c48_gnu Checking test 176 control_c48_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5888,14 +5888,14 @@ Checking test 176 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 560.888178 -0: The maximum resident set size (KB) = 860388 +0: The total amount of wall time = 563.952875 +0: The maximum resident set size (KB) = 874664 Test 176 control_c48_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_stochy_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_stochy_gnu Checking test 177 control_stochy_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5906,14 +5906,14 @@ Checking test 177 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 125.928820 - 0: The maximum resident set size (KB) = 723420 + 0: The total amount of wall time = 127.019150 + 0: The maximum resident set size (KB) = 728160 Test 177 control_stochy_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_ras_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_ras_gnu Checking test 178 control_ras_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5924,14 +5924,14 @@ Checking test 178 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.689908 - 0: The maximum resident set size (KB) = 730104 + 0: The total amount of wall time = 216.817613 + 0: The maximum resident set size (KB) = 728852 Test 178 control_ras_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_gnu Checking test 179 control_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -5978,14 +5978,14 @@ Checking test 179 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 205.289733 - 0: The maximum resident set size (KB) = 1509480 + 0: The total amount of wall time = 210.290871 + 0: The maximum resident set size (KB) = 1506036 Test 179 control_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_p8_ugwpv1_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_p8_ugwpv1_gnu Checking test 180 control_p8_ugwpv1_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6032,14 +6032,14 @@ Checking test 180 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.524903 - 0: The maximum resident set size (KB) = 1509408 + 0: The total amount of wall time = 202.999199 + 0: The maximum resident set size (KB) = 1513604 Test 180 control_p8_ugwpv1_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_flake_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_flake_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_flake_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_flake_gnu Checking test 181 control_flake_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -6050,14 +6050,14 @@ Checking test 181 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.969296 - 0: The maximum resident set size (KB) = 804248 + 0: The total amount of wall time = 254.873766 + 0: The maximum resident set size (KB) = 803288 Test 181 control_flake_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_gnu Checking test 182 rap_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6104,14 +6104,14 @@ Checking test 182 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.350215 - 0: The maximum resident set size (KB) = 1089876 + 0: The total amount of wall time = 449.937929 + 0: The maximum resident set size (KB) = 1085136 Test 182 rap_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_decomp_gnu Checking test 183 rap_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6158,14 +6158,14 @@ Checking test 183 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 452.315457 - 0: The maximum resident set size (KB) = 1086868 + 0: The total amount of wall time = 456.424813 + 0: The maximum resident set size (KB) = 1084672 Test 183 rap_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_2threads_gnu Checking test 184 rap_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -6212,14 +6212,14 @@ Checking test 184 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.299777 - 0: The maximum resident set size (KB) = 1151340 + 0: The total amount of wall time = 417.726164 + 0: The maximum resident set size (KB) = 1121576 Test 184 rap_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_restart_gnu Checking test 185 rap_restart_gnu results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -6258,14 +6258,14 @@ Checking test 185 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.284561 - 0: The maximum resident set size (KB) = 888068 + 0: The total amount of wall time = 233.283957 + 0: The maximum resident set size (KB) = 884816 Test 185 rap_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_gnu Checking test 186 rap_sfcdiff_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6312,14 +6312,14 @@ Checking test 186 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 444.900361 - 0: The maximum resident set size (KB) = 1088808 + 0: The total amount of wall time = 456.345546 + 0: The maximum resident set size (KB) = 1088104 Test 186 rap_sfcdiff_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_decomp_gnu Checking test 187 rap_sfcdiff_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6366,14 +6366,14 @@ Checking test 187 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.066573 - 0: The maximum resident set size (KB) = 1088296 + 0: The total amount of wall time = 456.961502 + 0: The maximum resident set size (KB) = 1084600 Test 187 rap_sfcdiff_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_sfcdiff_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_sfcdiff_restart_gnu Checking test 188 rap_sfcdiff_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -6412,14 +6412,14 @@ Checking test 188 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.701153 - 0: The maximum resident set size (KB) = 886548 + 0: The total amount of wall time = 335.709503 + 0: The maximum resident set size (KB) = 882668 Test 188 rap_sfcdiff_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_gnu Checking test 189 hrrr_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6466,14 +6466,14 @@ Checking test 189 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 227.925549 - 0: The maximum resident set size (KB) = 1077860 + 0: The total amount of wall time = 230.043671 + 0: The maximum resident set size (KB) = 1070072 Test 189 hrrr_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_noqr_gnu Checking test 190 hrrr_control_noqr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6520,14 +6520,14 @@ Checking test 190 hrrr_control_noqr_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 230.570718 - 0: The maximum resident set size (KB) = 1135176 + 0: The total amount of wall time = 232.115073 + 0: The maximum resident set size (KB) = 1136736 Test 190 hrrr_control_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_2threads_gnu Checking test 191 hrrr_control_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6574,14 +6574,14 @@ Checking test 191 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 206.111481 - 0: The maximum resident set size (KB) = 1042776 + 0: The total amount of wall time = 208.204322 + 0: The maximum resident set size (KB) = 1043660 Test 191 hrrr_control_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_decomp_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_decomp_gnu Checking test 192 hrrr_control_decomp_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6628,42 +6628,42 @@ Checking test 192 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.216259 - 0: The maximum resident set size (KB) = 1073196 + 0: The total amount of wall time = 232.865684 + 0: The maximum resident set size (KB) = 1071324 Test 192 hrrr_control_decomp_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_restart_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_restart_gnu Checking test 193 hrrr_control_restart_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.691930 - 0: The maximum resident set size (KB) = 881860 + 0: The total amount of wall time = 118.514471 + 0: The maximum resident set size (KB) = 879804 Test 193 hrrr_control_restart_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_restart_noqr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_restart_noqr_gnu Checking test 194 hrrr_control_restart_noqr_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 114.178553 - 0: The maximum resident set size (KB) = 935888 + 0: The total amount of wall time = 115.336429 + 0: The maximum resident set size (KB) = 931480 Test 194 hrrr_control_restart_noqr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1beta_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1beta_gnu Checking test 195 rrfs_v1beta_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -6710,224 +6710,224 @@ Checking test 195 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 442.253338 - 0: The maximum resident set size (KB) = 1085908 + 0: The total amount of wall time = 443.760390 + 0: The maximum resident set size (KB) = 1079864 Test 195 rrfs_v1beta_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_diag_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_diag_debug_gnu Checking test 196 control_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 69.008346 - 0: The maximum resident set size (KB) = 776256 + 0: The total amount of wall time = 69.063109 + 0: The maximum resident set size (KB) = 769696 Test 196 control_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/regional_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/regional_debug_gnu Checking test 197 regional_debug_gnu results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 367.570905 - 0: The maximum resident set size (KB) = 946932 + 0: The total amount of wall time = 368.390925 + 0: The maximum resident set size (KB) = 920408 Test 197 regional_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_debug_gnu Checking test 198 rap_control_debug_gnu 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.186457 - 0: The maximum resident set size (KB) = 1102120 + 0: The total amount of wall time = 114.731638 + 0: The maximum resident set size (KB) = 1092492 Test 198 rap_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_debug_gnu Checking test 199 hrrr_control_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.744707 - 0: The maximum resident set size (KB) = 1096316 + 0: The total amount of wall time = 110.397580 + 0: The maximum resident set size (KB) = 1086464 Test 199 hrrr_control_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_gf_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_gf_debug_gnu Checking test 200 hrrr_gf_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.182524 - 0: The maximum resident set size (KB) = 1095288 + 0: The total amount of wall time = 110.234157 + 0: The maximum resident set size (KB) = 1087416 Test 200 hrrr_gf_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_c3_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_c3_debug_gnu Checking test 201 hrrr_c3_debug_gnu 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.991445 - 0: The maximum resident set size (KB) = 1098892 + 0: The total amount of wall time = 109.520240 + 0: The maximum resident set size (KB) = 1087964 Test 201 hrrr_c3_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_diag_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_diag_debug_gnu Checking test 202 rap_diag_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 115.828321 - 0: The maximum resident set size (KB) = 1274424 + 0: The total amount of wall time = 120.207500 + 0: The maximum resident set size (KB) = 1264460 Test 202 rap_diag_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_noah_sfcdiff_cires_ugwp_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu 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.610165 - 0: The maximum resident set size (KB) = 1101144 + 0: The total amount of wall time = 182.425883 + 0: The maximum resident set size (KB) = 1090564 Test 203 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_progcld_thompson_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_progcld_thompson_debug_gnu Checking test 204 rap_progcld_thompson_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.442102 - 0: The maximum resident set size (KB) = 1100948 + 0: The total amount of wall time = 111.328599 + 0: The maximum resident set size (KB) = 1093344 Test 204 rap_progcld_thompson_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rrfs_v1beta_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rrfs_v1beta_debug_gnu Checking test 205 rrfs_v1beta_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.786909 - 0: The maximum resident set size (KB) = 1096392 + 0: The total amount of wall time = 109.285111 + 0: The maximum resident set size (KB) = 1087844 Test 205 rrfs_v1beta_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_ras_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_ras_debug_gnu Checking test 206 control_ras_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 61.991065 - 0: The maximum resident set size (KB) = 724356 + 0: The total amount of wall time = 62.745897 + 0: The maximum resident set size (KB) = 726020 Test 206 control_ras_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_stochy_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_stochy_debug_gnu Checking test 207 control_stochy_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 68.202002 - 0: The maximum resident set size (KB) = 721688 + 0: The total amount of wall time = 68.621400 + 0: The maximum resident set size (KB) = 718700 Test 207 control_stochy_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_debug_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/control_debug_p8_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_debug_p8_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/control_debug_p8_gnu Checking test 208 control_debug_p8_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 66.751164 - 0: The maximum resident set size (KB) = 1521172 + 0: The total amount of wall time = 69.502870 + 0: The maximum resident set size (KB) = 1500508 Test 208 control_debug_p8_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_flake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_flake_debug_gnu Checking test 209 rap_flake_debug_gnu 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.531577 - 0: The maximum resident set size (KB) = 1099840 + 0: The total amount of wall time = 111.545460 + 0: The maximum resident set size (KB) = 1093496 Test 209 rap_flake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_clm_lake_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_clm_lake_debug_gnu Checking test 210 rap_clm_lake_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 120.067285 - 0: The maximum resident set size (KB) = 1102180 + 0: The total amount of wall time = 128.752394 + 0: The maximum resident set size (KB) = 1093608 Test 210 rap_clm_lake_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/gnv1_c96_no_nest_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/gnv1_c96_no_nest_debug_gnu Checking test 211 gnv1_c96_no_nest_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -6968,14 +6968,14 @@ Checking test 211 gnv1_c96_no_nest_debug_gnu results .... Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 186.499890 - 0: The maximum resident set size (KB) = 1105820 + 0: The total amount of wall time = 196.903686 + 0: The maximum resident set size (KB) = 1099596 Test 211 gnv1_c96_no_nest_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn32_phy32_gnu Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7022,14 +7022,14 @@ Checking test 212 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 429.503381 - 0: The maximum resident set size (KB) = 969980 + 0: The total amount of wall time = 425.690720 + 0: The maximum resident set size (KB) = 965848 Test 212 rap_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_dyn32_phy32_gnu Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7076,14 +7076,14 @@ Checking test 213 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 218.025735 - 0: The maximum resident set size (KB) = 956944 + 0: The total amount of wall time = 218.190638 + 0: The maximum resident set size (KB) = 954572 Test 213 hrrr_control_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_2threads_dyn32_phy32_gnu Checking test 214 rap_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7130,14 +7130,14 @@ Checking test 214 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.287010 - 0: The maximum resident set size (KB) = 968464 + 0: The total amount of wall time = 392.973250 + 0: The maximum resident set size (KB) = 972248 Test 214 rap_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_2threads_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_2threads_dyn32_phy32_gnu Checking test 215 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7184,14 +7184,14 @@ Checking test 215 hrrr_control_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.243220 - 0: The maximum resident set size (KB) = 890144 + 0: The total amount of wall time = 197.088183 + 0: The maximum resident set size (KB) = 893400 Test 215 hrrr_control_2threads_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_decomp_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_decomp_dyn32_phy32_gnu Checking test 216 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7238,14 +7238,14 @@ Checking test 216 hrrr_control_decomp_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.425617 - 0: The maximum resident set size (KB) = 952836 + 0: The total amount of wall time = 223.697485 + 0: The maximum resident set size (KB) = 953908 Test 216 hrrr_control_decomp_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_restart_dyn32_phy32_gnu Checking test 217 rap_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -7284,28 +7284,28 @@ Checking test 217 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 318.363778 - 0: The maximum resident set size (KB) = 856704 + 0: The total amount of wall time = 321.805317 + 0: The maximum resident set size (KB) = 862044 Test 217 rap_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_restart_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_restart_dyn32_phy32_gnu Checking test 218 hrrr_control_restart_dyn32_phy32_gnu results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.620795 - 0: The maximum resident set size (KB) = 858212 + 0: The total amount of wall time = 115.765501 + 0: The maximum resident set size (KB) = 856584 Test 218 hrrr_control_restart_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_control_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_control_gnu Checking test 219 conus13km_control_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7321,40 +7321,40 @@ Checking test 219 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 144.057042 - 0: The maximum resident set size (KB) = 1313320 + 0: The total amount of wall time = 142.300366 + 0: The maximum resident set size (KB) = 1315664 Test 219 conus13km_control_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_2threads_gnu Checking test 220 conus13km_2threads_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 64.485553 - 0: The maximum resident set size (KB) = 1222032 + 0: The total amount of wall time = 66.089888 + 0: The maximum resident set size (KB) = 1222776 Test 220 conus13km_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_restart_mismatch_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_restart_mismatch_gnu Checking test 221 conus13km_restart_mismatch_gnu results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK + Comparing sfcf002.nc ............ALT CHECK......NOT OK + Comparing atmf002.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 81.322564 - 0: The maximum resident set size (KB) = 947320 + 0: The total amount of wall time = 82.108099 + 0: The maximum resident set size (KB) = 943640 -Test 221 conus13km_restart_mismatch_gnu PASS +Test 221 conus13km_restart_mismatch_gnu FAIL Tries: 2 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn64_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn64_phy32_gnu Checking test 222 rap_control_dyn64_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -7401,42 +7401,42 @@ Checking test 222 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 251.577992 - 0: The maximum resident set size (KB) = 987828 + 0: The total amount of wall time = 254.891516 + 0: The maximum resident set size (KB) = 988936 Test 222 rap_control_dyn64_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_debug_dyn32_phy32_gnu Checking test 223 rap_control_debug_dyn32_phy32_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 107.188531 - 0: The maximum resident set size (KB) = 981448 + 0: The total amount of wall time = 109.014468 + 0: The maximum resident set size (KB) = 976080 Test 223 rap_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/hrrr_control_debug_dyn32_phy32_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/hrrr_control_debug_dyn32_phy32_gnu Checking test 224 hrrr_control_debug_dyn32_phy32_gnu 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.054607 - 0: The maximum resident set size (KB) = 968204 + 0: The total amount of wall time = 107.731599 + 0: The maximum resident set size (KB) = 964452 Test 224 hrrr_control_debug_dyn32_phy32_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_gnu Checking test 225 conus13km_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7450,14 +7450,14 @@ Checking test 225 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK - 0: The total amount of wall time = 318.825146 - 0: The maximum resident set size (KB) = 1331000 + 0: The total amount of wall time = 315.881305 + 0: The maximum resident set size (KB) = 1326648 Test 225 conus13km_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_qr_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_qr_gnu Checking test 226 conus13km_debug_qr_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -7471,398 +7471,180 @@ Checking test 226 conus13km_debug_qr_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......OK - 0: The total amount of wall time = 322.551867 - 0: The maximum resident set size (KB) = 957300 + 0: The total amount of wall time = 331.823003 + 0: The maximum resident set size (KB) = 952900 Test 226 conus13km_debug_qr_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_debug_2threads_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_debug_2threads_gnu Checking test 227 conus13km_debug_2threads_gnu 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.182882 - 0: The maximum resident set size (KB) = 1240976 + 0: The total amount of wall time = 186.082803 + 0: The maximum resident set size (KB) = 1237652 Test 227 conus13km_debug_2threads_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/conus13km_radar_tten_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/conus13km_radar_tten_debug_gnu Checking test 228 conus13km_radar_tten_debug_gnu results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 327.623885 - 0: The maximum resident set size (KB) = 1399304 + 0: The total amount of wall time = 314.663192 + 0: The maximum resident set size (KB) = 1395364 Test 228 conus13km_radar_tten_debug_gnu PASS -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/rap_control_dyn64_phy32_debug_gnu +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1804989/rap_control_dyn64_phy32_debug_gnu Checking test 229 rap_control_dyn64_phy32_debug_gnu 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.991536 - 0: The maximum resident set size (KB) = 1004228 + 0: The total amount of wall time = 112.744655 + 0: The maximum resident set size (KB) = 999500 Test 229 rap_control_dyn64_phy32_debug_gnu PASS +FAILED TESTS: +122 conus13km_restart_mismatch_intel failed in check_result +conus13km_restart_mismatch_intel 122 failed in run_test +221 conus13km_restart_mismatch_gnu failed in check_result +conus13km_restart_mismatch_gnu 221 failed in run_test -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_p8_gnu -Checking test 230 cpld_control_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.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_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +REGRESSION TEST FAILED +Mon Jan 15 01:57:02 CST 2024 +Elapsed time: 01h:46m:19s. Have a nice day! +Mon Jan 15 09:45:23 CST 2024 +Start Regression test - 0: The total amount of wall time = 379.178856 - 0: The maximum resident set size (KB) = 4847808 +Testing UFSWM Hash: 2e5b3439a23ac55a4fe0a483303ff69d8b2ff657 +Testing With Submodule Hashes: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb CDEPS-interface/CDEPS (cdeps0.4.17-38-g2aa6bfb) + 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) + f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-2301-gf8f7ba7) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 58757d8b32bd1f76189567ef99284d96003c14e0 FV3 (58757d8) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) + 60c397b910c9f0c5d1b35f9fea2293ccebd27fc8 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9875-g60c397b91) + 569e354ababbde7a7cd68647533769a5c966468d NOAHMP-interface/noahmp (v3.7.1-303-g569e354) + 02693d837f2cd99d20ed08515878c2b5e9525e64 WW3 (6.07.1-343-g02693d83) + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile rrfs_dyn32_phy32_faster_intel elapsed time 507 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_gnu elapsed time 206 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Test 230 cpld_control_p8_gnu PASS Tries: 2 +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_control_intel +Checking test 001 conus13km_control_intel 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 + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + 0: The total amount of wall time = 107.576009 + 0: The maximum resident set size (KB) = 1363020 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_nowave_noaero_p8_gnu -Checking test 231 cpld_control_nowave_noaero_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.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 +Test 001 conus13km_control_intel PASS - 0: The total amount of wall time = 261.797826 - 0: The maximum resident set size (KB) = 2562388 -Test 231 cpld_control_nowave_noaero_p8_gnu PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_2threads_intel +Checking test 002 conus13km_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 42.432349 + 0: The maximum resident set size (KB) = 1253976 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_p8_gnu -Checking test 232 cpld_debug_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +Test 002 conus13km_2threads_intel PASS - 0: The total amount of wall time = 202.872205 - 0: The maximum resident set size (KB) = 4863288 -Test 232 cpld_debug_p8_gnu PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_restart_mismatch_intel +Checking test 003 conus13km_restart_mismatch_intel results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK + 0: The total amount of wall time = 59.310078 + 0: The maximum resident set size (KB) = 1221960 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_control_pdlib_p8_gnu -Checking test 233 cpld_control_pdlib_p8_gnu 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.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_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK +Test 003 conus13km_restart_mismatch_intel PASS - 0: The total amount of wall time = 986.115142 - 0: The maximum resident set size (KB) = 2895212 -Test 233 cpld_control_pdlib_p8_gnu PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_control_gnu +Checking test 004 conus13km_control_gnu 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 + Comparing RESTART/20210512.170000.coupler.res .........OK + Comparing RESTART/20210512.170000.fv_core.res.nc .........OK + Comparing RESTART/20210512.170000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210512.170000.phy_data.nc .........OK + Comparing RESTART/20210512.170000.sfc_data.nc .........OK + 0: The total amount of wall time = 153.783653 + 0: The maximum resident set size (KB) = 1318800 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/cpld_debug_pdlib_p8_gnu -Checking test 234 cpld_debug_pdlib_p8_gnu results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK +Test 004 conus13km_control_gnu PASS - 0: The total amount of wall time = 540.048892 - 0: The maximum resident set size (KB) = 2758440 -Test 234 cpld_debug_pdlib_p8_gnu PASS +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_2threads_gnu +Checking test 005 conus13km_2threads_gnu results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + 0: The total amount of wall time = 67.413643 + 0: The maximum resident set size (KB) = 1226500 -baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_gnu -working dir = /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2191233/datm_cdeps_control_cfsr_gnu -Checking test 235 datm_cdeps_control_cfsr_gnu results .... - Comparing RESTART/20111002.000000.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 +Test 005 conus13km_2threads_gnu PASS + + +baseline dir = /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_gnu +working dir = /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1986904/conus13km_restart_mismatch_gnu +Checking test 006 conus13km_restart_mismatch_gnu results .... + Comparing sfcf002.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 132.439321 - 0: The maximum resident set size (KB) = 754556 + 0: The total amount of wall time = 82.267060 + 0: The maximum resident set size (KB) = 932932 -Test 235 datm_cdeps_control_cfsr_gnu PASS +Test 006 conus13km_restart_mismatch_gnu PASS REGRESSION TEST WAS SUCCESSFUL -Sat Dec 23 12:29:09 CST 2023 -Elapsed time: 01h:51m:53s. Have a nice day! +Mon Jan 15 10:39:11 CST 2024 +Elapsed time: 00h:53m:52s. Have a nice day! diff --git a/tests/machine/cheyenne b/tests/machine/cheyenne deleted file mode 100644 index 7503401d4b..0000000000 --- a/tests/machine/cheyenne +++ /dev/null @@ -1,21 +0,0 @@ - module use /gpfs/fs1/work/strahan/rocoto/modulefiles - module load rocoto/1.3.3 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=pbspro - ROCOTO_NODESIZE=36 - - module use /glade/work/jedipara/cheyenne/spack-stack/modulefiles/misc - module load ecflow/5.8.4 - ECFLOW_START=/glade/work/jedipara/cheyenne/spack-stack/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - QUEUE=regular - COMPILE_QUEUE=regular - PARTITION= - dprefix=/glade/scratch - DISKNM=/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT - STMP=$dprefix - PTMP=$dprefix - SCHEDULER=pbs \ No newline at end of file diff --git a/tests/machine/derecho b/tests/machine/derecho new file mode 100644 index 0000000000..00ca820eb8 --- /dev/null +++ b/tests/machine/derecho @@ -0,0 +1,21 @@ + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PATH=/glade/work/epicufsrt/contrib/derecho/rocoto/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + QUEUE=main + COMPILE_QUEUE=main + PARTITION= + dprefix=/glade/derecho/scratch + DISKNM=/glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/ + STMP=$dprefix + PTMP=$dprefix + SCHEDULER=pbs + cp fv3_conf/fv3_qsub.IN_derecho fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_derecho fv3_conf/compile_qsub.IN + + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=pbspro \ No newline at end of file diff --git a/tests/machine/gaea b/tests/machine/gaea deleted file mode 100644 index cce22b8da9..0000000000 --- a/tests/machine/gaea +++ /dev/null @@ -1,20 +0,0 @@ - module use /lustre/f2/dev/Samuel.Trahan/hafs/modulefiles/ - module load rocoto - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=slurm - - module use /lustre/f2/dev/role.epic/contrib/spack-stack/c4/modulefiles - module load ecflow/5.8.4 - ECFLOW_START=/lustre/f2/dev/role.epic/contrib/spack-stack/c4/ecflow-5.8.4/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) - - DISKNM=/lustre/f2/pdata/ncep/role.epic/RT - QUEUE=normal - COMPILE_QUEUE=normal - PARTITION=c4 - STMP=/lustre/f2/scratch - PTMP=/lustre/f2/scratch - - SCHEDULER=slurm \ No newline at end of file diff --git a/tests/machine/gaea-c5 b/tests/machine/gaea-c5 new file mode 100644 index 0000000000..554b7ea254 --- /dev/null +++ b/tests/machine/gaea-c5 @@ -0,0 +1,24 @@ + module use /lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles + module load rocoto + ROCOTORUN=$(which rocotorun) + ROCOTOSTAT=$(which rocotostat) + ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + + module load PrgEnv-intel/8.3.3 + module load intel-classic/2023.1.0 + module load cray-mpich/8.1.25 + module load python/3.9.12 + module use /lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/modulefiles + module load ecflow/5.8.4 + ECFLOW_START=/lustre/f2/dev/wpo/role.epic/contrib/spack-stack/c5/ecflow-5.8.4/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + DISKNM=/lustre/f2/pdata/ncep/role.epic/C5/RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c5 + STMP=/lustre/f2/scratch + PTMP=/lustre/f2/scratch + + SCHEDULER=slurm \ No newline at end of file diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 1b26423902..f0daa24cdb 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,18 +65,6 @@ elif [[ $MACHINE_ID = stampede ]] ; then fi module purge -elif [[ $MACHINE_ID = gaea ]] ; then - # We are on GAEA. - if ( ! eval module help > /dev/null 2>&1 ) ; then - # We cannot simply load the module command. The GAEA - # /etc/profile modifies a number of module-related variables - # before loading the module command. Without those variables, - # the module command fails. Hence we actually have to source - # /etc/profile here. - source /etc/profile - fi - source /lustre/f2/dev/role.epic/contrib/Lmod_init.sh - elif [[ $MACHINE_ID = gaea-c5 ]] ; then # We are on GAEA C5 if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index 3aaf09d1a9..b7a3fc56f5 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -234,10 +234,10 @@ f_alidr_ai = 'x' f_alvdf_ai = 'x' f_alidf_ai = 'x' - f_albice = 'mdhxx' - f_albsno = 'mdhxx' - f_albpnd = 'mdhxx' - f_coszen = 'mdhxx' + f_albice = 'x' + f_albsno = 'x' + f_albpnd = 'x' + f_coszen = 'x' f_flat = 'mdhxx' f_flat_ai = 'x' f_fsens = 'mdhxx' @@ -265,7 +265,7 @@ f_fbot = 'mdhxx' f_fhocn = 'mdhxx' f_fhocn_ai = 'x' - f_fswthru = 'mdhxx' + f_fswthru = 'x' f_fswthru_ai = 'x' f_fsurf_ai = 'x' f_fcondtop_ai = 'x' @@ -283,19 +283,19 @@ f_taubx = 'x' f_tauby = 'x' f_strength = 'x' - f_divu = 'x' - f_shear = 'x' + f_divu = 'mdhxx' + f_shear = 'mdhxx' f_sig1 = 'x' f_sig2 = 'x' f_sigP = 'x' - f_dvidtt = 'x' - f_dvidtd = 'x' - f_daidtt = 'x' - f_daidtd = 'x' + f_dvidtt = 'mdhxx' + f_dvidtd = 'mdhxx' + f_daidtt = 'mdhxx' + f_daidtd = 'mdhxx' f_dagedtt = 'x' f_dagedtd = 'x' - f_mlt_onset = 'x' - f_frz_onset = 'x' + f_mlt_onset = 'mdhxx' + f_frz_onset = 'mdhxx' f_hisnap = 'x' f_aisnap = 'x' f_trsig = 'x' diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN index a21ec75dbe..8eb7b94dc7 100644 --- a/tests/parm/ufs.configure.atm.IN +++ b/tests/parm/ufs.configure.atm.IN @@ -3,7 +3,7 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN index addc59ff27..0c20f20905 100644 --- a/tests/parm/ufs.configure.atmaero.IN +++ b/tests/parm/ufs.configure.atmaero.IN @@ -3,7 +3,7 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN index 627bdfcfdc..c4b6055fd1 100644 --- a/tests/parm/ufs.configure.leapfrog_atm_wav.IN +++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN @@ -3,7 +3,7 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] globalResourceControl: true # EARTH # @@ -18,7 +18,7 @@ ATM_petlist_bounds: @[atm_petlist_bounds] ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] :: # WAV # diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index 1b5efbd297..995d3bd750 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -3,8 +3,8 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -15,16 +15,14 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -32,10 +30,9 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ocn = @[MESH_OCN] @@ -46,10 +43,9 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESH_ICE] diff --git a/tests/parm/ufs.configure.s2s_aoflux.IN b/tests/parm/ufs.configure.s2s_aoflux_esmf.IN similarity index 100% rename from tests/parm/ufs.configure.s2s_aoflux.IN rename to tests/parm/ufs.configure.s2s_aoflux_esmf.IN diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN new file mode 100644 index 0000000000..6a0234e120 --- /dev/null +++ b/tests/parm/ufs.configure.s2s_esmf.IN @@ -0,0 +1,124 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + 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 + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_ocnalb_run + 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] + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index e5f9439e17..0d3d3f313f 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -3,8 +3,8 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM CHM OCN ICE @@ -15,15 +15,14 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] +:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -31,7 +30,6 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -39,10 +37,9 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ocn = @[MESH_OCN] @@ -53,10 +50,9 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESH_ICE] diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN new file mode 100644 index 0000000000..1cfe5047e9 --- /dev/null +++ b/tests/parm/ufs.configure.s2sa_esmf.IN @@ -0,0 +1,136 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM CHM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + 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_ocnalb_run + 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] + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 84efa7ca6b..885e8c3f22 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -3,8 +3,8 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -15,16 +15,14 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -32,10 +30,9 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ocn = @[MESH_OCN] @@ -46,10 +43,9 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESH_ICE] @@ -62,42 +58,41 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist MED -> OCN :remapMethod=redist + WAV OCN @@[coupling_interval_fast_sec] MED med_phases_prep_atm MED med_phases_prep_ice - MED med_phases_prep_wav_accum - MED med_phases_prep_wav_avg MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - MED -> WAV :remapMethod=redist ATM ICE - WAV ATM -> MED :remapMethod=redist MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice - WAV -> MED :remapMethod=redist - MED med_phases_post_wav MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum @ OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist MED med_phases_post_ocn + MED med_phases_post_wav MED med_phases_restart_write @ :: diff --git a/tests/parm/ufs.configure.s2sw_slow.IN b/tests/parm/ufs.configure.s2sw_esmf.IN similarity index 86% rename from tests/parm/ufs.configure.s2sw_slow.IN rename to tests/parm/ufs.configure.s2sw_esmf.IN index 63e691c892..47c08442dd 100644 --- a/tests/parm/ufs.configure.s2sw_slow.IN +++ b/tests/parm/ufs.configure.s2sw_esmf.IN @@ -3,7 +3,8 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: @[esmf_logkind] +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -14,14 +15,16 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -29,12 +32,11 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false - diro = "." - logfile = "mom6.log" OverwriteSlice = true mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] @@ -44,9 +46,10 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESH_ICE] @@ -59,11 +62,12 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence @@ -102,7 +106,6 @@ runSeq:: DRIVER_attributes:: :: - MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] @@ -113,7 +116,6 @@ MED_attributes:: pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: - ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 @@ -121,7 +123,6 @@ ALLCOMP_attributes:: ScalarFieldName = cpl_scalars start_type = @[RUNTYPE] restart_dir = @[CMEPS_RESTART_DIR] - RunTimeLog = true case_name = ufs.cpld restart_n = @[RESTART_N] restart_option = nhours diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast_esmf.IN new file mode 100644 index 0000000000..5c4c17a2a6 --- /dev/null +++ b/tests/parm/ufs.configure.s2sw_fast_esmf.IN @@ -0,0 +1,140 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# 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 med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_ocnalb_run + 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] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 48f999c211..5960da0118 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -3,8 +3,8 @@ ############################################# # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +logKindFlag: @[esmf_logkind] +globalResourceControl: false # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -15,15 +15,14 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] +:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true :: @@ -31,7 +30,6 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -39,10 +37,9 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ocn = @[MESH_OCN] @@ -53,10 +50,9 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 - DumpFields = false + DumpFields = @[DumpFields] ProfileMemory = false OverwriteSlice = true mesh_ice = @[MESH_ICE] @@ -69,46 +65,45 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false mesh_wav = @[MESH_WAV] - user_sets_restname = true + user_sets_restname = @[WW3_user_sets_restname] :: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist MED -> OCN :remapMethod=redist + WAV OCN @@[coupling_interval_fast_sec] MED med_phases_prep_atm MED med_phases_prep_ice - MED med_phases_prep_wav_accum - MED med_phases_prep_wav_avg MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - MED -> WAV :remapMethod=redist 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 - WAV -> MED :remapMethod=redist - MED med_phases_post_wav MED med_phases_ocnalb_run MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum @ OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist MED med_phases_post_ocn + MED med_phases_post_wav MED med_phases_restart_write @ :: @@ -117,7 +112,6 @@ runSeq:: DRIVER_attributes:: :: - MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] @@ -128,7 +122,6 @@ MED_attributes:: pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: - ALLCOMP_attributes:: ScalarFieldCount = 2 ScalarFieldIdxGridNX = 1 diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN new file mode 100644 index 0000000000..69a4851dec --- /dev/null +++ b/tests/parm/ufs.configure.s2swa_esmf.IN @@ -0,0 +1,152 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: @[esmf_logkind] +globalResourceControl: true + +# 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] +MED_omp_num_threads: @[med_omp_num_threads] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = @[DumpFields] + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg + MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist + MED -> OCN :remapMethod=redist + WAV + 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_ocnalb_run + MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum + @ + OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_post_wav + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast_esmf.IN new file mode 100644 index 0000000000..cba72ec139 --- /dev/null +++ b/tests/parm/ufs.configure.s2swa_fast_esmf.IN @@ -0,0 +1,153 @@ +############################################# +#### UFS Run-Time Configuration File ###### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# 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] +MED_omp_num_threads: @[med_omp_num_threads] + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESH_OCN] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESH_ICE] + eps_imesh = @[eps_imesh] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# WAV # +WAV_model: @[wav_model] +WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] +WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + mesh_wav = @[MESH_WAV] + user_sets_restname = @[WW3_user_sets_restname] +:: + +# 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 med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + 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 + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_ocnalb_run + 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] + WAV_model = @[wav_model] + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + pio_rearranger = @[pio_rearranger] + ocean_albedo_limit = @[ocean_albedo_limit] +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = @[CMEPS_RESTART_DIR] + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 8058ad7609..61fa506188 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -42,11 +42,11 @@ RUN | cpld_restart_qr_p8 | - noaacloud RUN | cpld_2threads_p8 | - derecho noaacloud | | RUN | cpld_decomp_p8 | - noaacloud | | RUN | cpld_mpi_p8 | - noaacloud | | -RUN | cpld_control_ciceC_p8 | - gaea noaacloud | baseline | -RUN | cpld_control_c192_p8 | - wcoss2 jet acorn gaea s4 noaacloud | baseline | -RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn gaea s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet derecho acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet derecho acorn noaacloud | | cpld_bmark_p8 +RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | +RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | +RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 +RUN | cpld_bmark_p8 | - s4 jet derecho acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet derecho acorn noaacloud | | cpld_bmark_p8 # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -141,7 +141,7 @@ RUN | rrfs_v1nssl | RUN | rrfs_v1nssl_nohailnoccn | | baseline | COMPILE | csawmg | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras | - noaacloud | fv3 | -RUN | control_csawmg | - gaea noaacloud | baseline | +RUN | control_csawmg | - noaacloud | baseline | RUN | control_csawmgt | - noaacloud | baseline | RUN | control_ras | - noaacloud acorn | baseline | @@ -304,8 +304,8 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | RUN | regional_atmaq | - jet s4 | baseline | -COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud gaea derecho s4 | fv3 | -RUN | regional_atmaq_debug | - jet gaea derecho s4 noaacloud | baseline | +COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud derecho s4 | fv3 | +RUN | regional_atmaq_debug | - jet derecho s4 noaacloud | baseline | COMPILE | atmaq_faster | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | - jet s4 | fv3 | RUN | regional_atmaq_faster | - jet s4 | baseline | @@ -397,21 +397,21 @@ RUN | rap_control_dyn64_phy32_debug | + hera hercules ### S2S tests ### COMPILE | s2swa | gnu | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_control_p8 | + hera hercules | baseline | +RUN | cpld_control_p8 | + hera | baseline | COMPILE | s2s | gnu | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_control_nowave_noaero_p8 | + hera hercules | baseline | +RUN | cpld_control_nowave_noaero_p8 | + hera | baseline | COMPILE | s2swa_debug | gnu | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera hercules | fv3 | -RUN | cpld_debug_p8 | + hera hercules | baseline | +RUN | cpld_debug_p8 | + hera | baseline | # Unstructured WW3 COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | + hera hercules | fv3 | -RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | +RUN | cpld_control_pdlib_p8 | + hera | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera hercules | baseline | +RUN | cpld_debug_pdlib_p8 | + hera | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | -RUN | datm_cdeps_control_cfsr | + hera hercules | baseline | +RUN | datm_cdeps_control_cfsr | + hera | baseline | diff --git a/tests/rt.sh b/tests/rt.sh index 16541380b1..88ec1269a9 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -385,11 +385,11 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = cheyenne ]]; then + elif [[ $MACHINE_ID = derecho ]]; then QUEUE=regular COMPILE_QUEUE=regular ROCOTO_SCHEDULER=pbspro - elif [[ $MACHINE_ID = gaea ]]; then + elif [[ $MACHINE_ID = gaea-c5 ]]; then QUEUE=normal COMPILE_QUEUE=normal ROCOTO_SCHEDULER=slurm @@ -463,9 +463,9 @@ EOF QUEUE=batch elif [[ $MACHINE_ID = s4 ]]; then QUEUE=s4 - elif [[ $MACHINE_ID = gaea ]]; then + elif [[ $MACHINE_ID = gaea* ]]; then QUEUE=normal - elif [[ $MACHINE_ID = cheyenne ]]; then + elif [[ $MACHINE_ID = derecho ]]; then QUEUE=regular else die "ecFlow is not supported on this machine $MACHINE_ID" diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 0e011692cc..c9c4c01802 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -347,7 +347,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea gaea-c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea-c5 jet s4 noaacloud " =~ " ${MACHINE_ID} " ]]; then printf ".......ALT CHECK.." >> ${RT_LOG} printf ".......ALT CHECK.." if [[ $CMP_DATAONLY == false ]]; then @@ -469,9 +469,6 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ $MACHINE_ID == gaea ]]; then - BUILD_WALLTIME="01:00:00" - fi if [[ $MACHINE_ID == gaea-c5 ]]; then BUILD_WALLTIME="01:00:00" fi @@ -485,14 +482,7 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "$MACHINE_ID" == gaea ]] ; then - cat << EOF >> $ROCOTO_XML - --clusters=es - eslogin - --exclude=gaea9 -EOF - - elif [[ "$MACHINE_ID" == gaea-c5 ]] ; then + if [[ "$MACHINE_ID" == gaea-c5 ]] ; then cat << EOF >> $ROCOTO_XML --clusters=es eslogin_c5 @@ -536,12 +526,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+$ROCOTO_NODESIZE} EOF - if [[ "$MACHINE_ID" == gaea ]] ; then - cat << EOF >> $ROCOTO_XML - --clusters=${PARTITION} -EOF - - elif [[ "$MACHINE_ID" == gaea-c5 ]] ; then + if [[ "$MACHINE_ID" == gaea-c5 ]] ; then cat << EOF >> $ROCOTO_XML --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index 1efc3af6f5..2b9e3ebf9d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -97,7 +97,7 @@ cp ${PATHTR}/modulefiles/ufs_common* ./modulefiles/. cp ${PATHRT}/module-setup.sh module-setup.sh # load nccmp module -if [[ " s4 hera orion hercules gaea gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then +if [[ " s4 hera orion hercules gaea-c5 jet derecho acorn wcoss2 " =~ " $MACHINE_ID " ]]; then if [[ " wcoss2 acorn " =~ " ${MACHINE_ID} " ]] ; then module load intel/19.1.3.304 netcdf/4.7.4 module load nccmp @@ -106,7 +106,7 @@ if [[ " s4 hera orion hercules gaea gaea-c5 jet derecho acorn wcoss2 " =~ " $MAC module load stack-intel/2021.5.0 stack-intel-oneapi-mpi/2021.5.0 module load miniconda/3.9.12 module load nccmp/1.9.0.1 - elif [[ " hera orion hercules gaea gaea-c5 jet " =~ " ${MACHINE_ID} " ]] ; then + elif [[ " hera orion hercules gaea-c5 jet " =~ " ${MACHINE_ID} " ]] ; then module use modulefiles module load modules.fv3 else diff --git a/tests/tests/control_c384 b/tests/tests/control_c384 index 041442bba3..3488b81191 100644 --- a/tests/tests/control_c384 +++ b/tests/tests/control_c384 @@ -53,6 +53,6 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control.nml.IN -if [[ $MACHINE_ID = gaea || $MACHINE_ID = jet ]]; then +if [[ $MACHINE_ID = jet ]]; then TPN=18 fi diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index 0b3a51b9b4..4b6ac9fc26 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -94,9 +94,6 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control_gdas.nml.IN -if [[ $MACHINE_ID = gaea ]]; then - TPN=18 -fi if [[ $MACHINE_ID = jet ]] ; then TPN=20 fi diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 01dab0812b..93e0b796ab 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -134,6 +134,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index cc31499dcf..dc0b9059d1 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -174,6 +174,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/conus13km_control b/tests/tests/conus13km_control index 0beccadb06..5b4bcb4f12 100644 --- a/tests/tests/conus13km_control +++ b/tests/tests/conus13km_control @@ -28,7 +28,8 @@ export LIST_FILES="sfcf000.nc \ export_hrrr_conus13km export RESTART_INTERVAL=1 export QUILTING_RESTART=.false. +export USE_MERRA2=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index ebb6f4c386..1b8fd090af 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -136,6 +136,6 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 37f7ba1f80..cf17fc0c6e 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -119,7 +119,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_template export INPUT_NML=cpld_control.nml.IN -export UFS_CONFIGURE=ufs.configure.s2sw_slow.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index b34e596869..e0bd065597 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -84,7 +84,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_template export INPUT_NML=cpld_control.nml.IN -export UFS_CONFIGURE=ufs.configure.s2sw_slow.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 5b24e45697..728a896bd6 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -83,6 +83,6 @@ export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 8dce041975..72cf32df77 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -93,6 +93,6 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s_aoflux.IN +export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index a7bdb29cf0..a809e89cc2 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -100,6 +100,6 @@ export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index ca73570f27..17bb7805ef 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -98,7 +98,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 4662ea3b22..b2f940f33f 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -113,7 +113,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_template export INPUT_NML=cpld_control.nml.IN -export UFS_CONFIGURE=ufs.configure.s2sw_slow.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index 3e28f3fa22..cd3d746d8c 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -74,6 +74,6 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index 3086203b4b..fcede8710c 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -91,7 +91,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 71529cab46..0941f8c0d1 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -128,7 +128,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_template export INPUT_NML=cpld_control.nml.IN -export UFS_CONFIGURE=ufs.configure.s2sw_slow.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 07994612c0..18dcc1ee74 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -101,6 +101,6 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index ad8ec1c2c8..eeb2626a8f 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -167,6 +167,6 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index 8b33cbfefb..43fa59b1c1 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -128,7 +128,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma export DIAG_TABLE=diag_table_cpld_template export INPUT_NML=cpld_control.nml.IN -export UFS_CONFIGURE=ufs.configure.s2sw_slow.IN +export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 176a4e4698..01a351be21 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -105,6 +105,6 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index a403a45e19..efb61f024a 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -73,6 +73,6 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2sa.IN +export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 4a03dae4a2..ea963defc4 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -164,6 +164,6 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s.IN +export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 index 78aab691b0..c76769a94a 100644 --- a/tests/tests/datm_cdeps_lnd_gswp3 +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -55,6 +55,3 @@ export mosaic_file=INPUT/C96_mosaic.nc export coupling_interval_sec=3600 export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm index b63514076c..c97013a787 100644 --- a/tests/tests/hafs_regional_specified_moving_1nest_atm +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -119,6 +119,3 @@ export MODEL_CONFIGURE=model_configure_hafs.IN export UFS_CONFIGURE=ufs.configure.hafs_atm.IN export FV3_RUN=hafs_fv3_run.IN -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/regional_2dwrtdecomp b/tests/tests/regional_2dwrtdecomp index 46363f8074..7900e76b7b 100644 --- a/tests/tests/regional_2dwrtdecomp +++ b/tests/tests/regional_2dwrtdecomp @@ -45,6 +45,3 @@ WRTTASK_PER_GROUP=10 NTILES=1 export ITASKS=2 -if [[ $MACHINE_ID = gaea ]]; then - TPN=36 -fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index 19ea253f9f..64e5921f76 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -37,6 +37,6 @@ WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/rrfs_v1beta b/tests/tests/rrfs_v1beta index 203f1dc949..0e64a52624 100644 --- a/tests/tests/rrfs_v1beta +++ b/tests/tests/rrfs_v1beta @@ -57,6 +57,6 @@ export_rrfs_v1 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi