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/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 49364d19d8..cd3acbd93c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 49364d19d81cab5317c77828ed67d33ce633fe08 +Subproject commit cd3acbd93c000a9890cb9a24c5be665ea694741a 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/auto/jobs/bl.py b/tests/auto/jobs/bl.py index fe81807d6e..581056ac81 100644 --- a/tests/auto/jobs/bl.py +++ b/tests/auto/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_{job_obj.compiler.upper()}' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' - blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' - rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ - f'REGRESSION_TEST_{job_obj.compiler.upper()}' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' blstore = '/work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs' diff --git a/tests/auto/jobs/rt.py b/tests/auto/jobs/rt.py index 16e13d5b51..706c5058c7 100644 --- a/tests/auto/jobs/rt.py +++ b/tests/auto/jobs/rt.py @@ -18,8 +18,6 @@ def set_directories(job_obj): workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'jet': workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' - elif job_obj.machine == 'gaea': - workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' elif job_obj.machine == 'orion': workdir = '/work/noaa/nems/emc.nemspara/autort/pr' elif job_obj.machine == 'derecho': diff --git a/tests/auto/rt_auto.py b/tests/auto/rt_auto.py index 80d3a5a0e7..2b1b5aaea9 100644 --- a/tests/auto/rt_auto.py +++ b/tests/auto/rt_auto.py @@ -217,9 +217,6 @@ def setup_env(): elif bool(re.match(re.compile('fe.+'), hostname)): machine = 'jet' os.environ['ACCNR'] = 'h-nems' - 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' elif bool(re.match(re.compile('chadmin.+'), hostname)): 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/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 2906da8ac8..37bf3ec41d 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 @@ -320,6 +307,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 @@ -734,11 +725,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 8f5433198a..470b0391b2 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jan 3 04:22:53 UTC 2024 +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_178415/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 = 292.690948 - 0: The maximum resident set size (KB) = 1301824 + 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_178415/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 = 921.386982 - 0: The maximum resident set size (KB) = 1286344 + 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_178415/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 = 253.882313 - 0: The maximum resident set size (KB) = 1283164 + 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_178415/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 = 256.906556 - 0: The maximum resident set size (KB) = 1277932 + 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_178415/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 = 267.010811 - 0: The maximum resident set size (KB) = 1278128 + 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_178415/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 = 263.896579 - 0: The maximum resident set size (KB) = 1279440 + 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_178415/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 = 260.804104 - 0: The maximum resident set size (KB) = 1276700 + 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 -Wed Jan 3 05:33:37 UTC 2024 -Elapsed time: 01h:10m:44s. 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 1ecbf23dca..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 @@ -Wed Jan 3 04:28:20 UTC 2024 +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_168908/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 = 1217.193995 - 0: The maximum resident set size (KB) = 1405184 + 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_168908/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 = 408.570654 - 0: The maximum resident set size (KB) = 1400536 + 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_168908/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 = 422.299545 - 0: The maximum resident set size (KB) = 1398292 + 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 -Wed Jan 3 05:18:48 UTC 2024 -Elapsed time: 00h:50m:29s. 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 0348772957..8389bdc821 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jan 3 04:24:32 UTC 2024 +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_222297/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 = 536.784543 - 0: The maximum resident set size (KB) = 584508 + 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_222297/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 = 529.226881 - 0: The maximum resident set size (KB) = 590552 + 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_222297/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 = 529.625327 - 0: The maximum resident set size (KB) = 587588 + 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 -Wed Jan 3 05:03:00 UTC 2024 -Elapsed time: 00h:38m:29s. 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_acorn.log b/tests/logs/RegressionTests_acorn.log index d484bd45a7..0c09e7856b 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,60 +1,60 @@ -Wed Jan 3 13:45:03 UTC 2024 +Tue Jan 16 03:05:29 UTC 2024 Start Regression test -Testing UFSWM Hash: 111f9037848ddba79b2da26155d274fc3fcca455 +Testing UFSWM Hash: da8bf21571334437156a86c3f6f473d80b78c072 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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (cmeps_v0.4.1-2302-gd6e8a87) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) 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 atmaero_intel elapsed time 486 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 179 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 501 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 478 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 228 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_intel elapsed time 528 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_faster_dyn32_intel elapsed time 486 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 atml_intel elapsed time 498 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 505 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 494 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile datm_cdeps_faster_intel elapsed time 174 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 511 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 195 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 530 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 534 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 ifi_intel elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_debug_intel elapsed time 178 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 + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 496 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 176 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 502 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 480 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 234 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_intel elapsed time 530 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_faster_dyn32_intel elapsed time 494 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 atml_intel elapsed time 491 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 501 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 497 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile datm_cdeps_faster_intel elapsed time 554 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 516 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 510 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 194 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 519 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 535 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 ifi_intel elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_debug_intel elapsed time 172 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 594 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 467 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 176 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 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 491 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 529 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile rrfs_dyn32_phy32_intel elapsed time 464 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 172 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 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 495 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 602 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile s2s_intel elapsed time 530 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 585 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 223 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 939 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_faster_intel elapsed time 882 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 585 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 561 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 208 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_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 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 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_p8_mixedmode_intel +Compile s2swa_32bit_intel elapsed time 617 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 225 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 916 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_faster_intel elapsed time 905 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 594 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 583 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 214 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_intel elapsed time 892 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 165 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 469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.274985 -The maximum resident set size (KB) = 2968676 +The total amount of wall time = 320.490566 +The maximum resident set size (KB) = 2975460 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 905.901583 -The maximum resident set size (KB) = 1597352 +The total amount of wall time = 888.907097 +The maximum resident set size (KB) = 1595136 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK -The total amount of wall time = 616.832216 -The maximum resident set size (KB) = 851680 +The total amount of wall time = 603.060753 +The maximum resident set size (KB) = 859232 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_restart_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -266,14 +266,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 461.086923 -The maximum resident set size (KB) = 848072 +The total amount of wall time = 447.222650 +The maximum resident set size (KB) = 849852 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -337,14 +337,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1057.885100 -The maximum resident set size (KB) = 1580448 +The total amount of wall time = 1034.690402 +The maximum resident set size (KB) = 1572564 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_debug_gfsv17_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -396,14 +396,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1197.496818 -The maximum resident set size (KB) = 1613804 +The total amount of wall time = 1188.264994 +The maximum resident set size (KB) = 1599692 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 363.712297 -The maximum resident set size (KB) = 2996628 +The total amount of wall time = 360.494799 +The maximum resident set size (KB) = 3005440 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 213.947678 -The maximum resident set size (KB) = 3053524 +The total amount of wall time = 213.934369 +The maximum resident set size (KB) = 3061216 Test 008 cpld_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -600,14 +600,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 365.290117 -The maximum resident set size (KB) = 3022328 +The total amount of wall time = 364.521665 +The maximum resident set size (KB) = 3026704 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_restart_qr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -660,14 +660,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 218.375946 -The maximum resident set size (KB) = 3074744 +The total amount of wall time = 216.364000 +The maximum resident set size (KB) = 3081480 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 326.099643 -The maximum resident set size (KB) = 3300636 +The total amount of wall time = 323.955558 +The maximum resident set size (KB) = 3315816 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 357.605419 -The maximum resident set size (KB) = 2989128 +The total amount of wall time = 357.433395 +The maximum resident set size (KB) = 3003004 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_mpi_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -840,14 +840,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 304.219874 -The maximum resident set size (KB) = 2924108 +The total amount of wall time = 302.040355 +The maximum resident set size (KB) = 2923712 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 364.611344 -The maximum resident set size (KB) = 2996440 +The total amount of wall time = 362.825693 +The maximum resident set size (KB) = 3004440 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_s2sa_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -970,14 +970,14 @@ Checking test 015 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 -The total amount of wall time = 346.730345 -The maximum resident set size (KB) = 2963900 +The total amount of wall time = 343.008078 +The maximum resident set size (KB) = 2970044 Test 015 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1041,14 +1041,14 @@ Checking test 016 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 269.414835 -The maximum resident set size (KB) = 1583764 +The total amount of wall time = 268.776094 +The maximum resident set size (KB) = 1595544 Test 016 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 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 -The total amount of wall time = 275.174018 -The maximum resident set size (KB) = 1636248 +The total amount of wall time = 272.379327 +The maximum resident set size (KB) = 1639960 Test 017 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_noaero_p8_agrid_intel Checking test 018 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1179,14 +1179,14 @@ Checking test 018 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 -The total amount of wall time = 275.514036 -The maximum resident set size (KB) = 1637832 +The total amount of wall time = 273.543617 +The maximum resident set size (KB) = 1636704 Test 018 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_c48_intel Checking test 019 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1236,14 +1236,14 @@ Checking test 019 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 -The total amount of wall time = 410.286440 -The maximum resident set size (KB) = 2650948 +The total amount of wall time = 409.244912 +The maximum resident set size (KB) = 2651216 Test 019 cpld_control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_p8_faster_intel Checking test 020 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1308,14 +1308,14 @@ Checking test 020 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 356.966034 -The maximum resident set size (KB) = 2996664 +The total amount of wall time = 354.074067 +The maximum resident set size (KB) = 3003344 Test 020 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_control_pdlib_p8_intel Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1379,14 +1379,14 @@ Checking test 021 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 935.654986 -The maximum resident set size (KB) = 1606812 +The total amount of wall time = 916.680383 +The maximum resident set size (KB) = 1602176 Test 021 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_restart_pdlib_p8_intel Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1438,14 +1438,14 @@ Checking test 022 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 463.786069 -The maximum resident set size (KB) = 882252 +The total amount of wall time = 451.855757 +The maximum resident set size (KB) = 904320 Test 022 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_mpi_pdlib_p8_intel Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1509,14 +1509,14 @@ Checking test 023 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1097.289513 -The maximum resident set size (KB) = 1595004 +The total amount of wall time = 1068.352995 +The maximum resident set size (KB) = 1577036 Test 023 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/cpld_debug_pdlib_p8_intel Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1568,14 +1568,14 @@ Checking test 024 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1466.734965 -The maximum resident set size (KB) = 1621380 +The total amount of wall time = 1476.630092 +The maximum resident set size (KB) = 1621944 Test 024 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_flake_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_flake_intel Checking test 025 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1586,14 +1586,14 @@ Checking test 025 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.331392 -The maximum resident set size (KB) = 582472 +The total amount of wall time = 211.789080 +The maximum resident set size (KB) = 580588 Test 025 control_flake_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_CubedSphereGrid_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_CubedSphereGrid_intel Checking test 026 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1620,14 +1620,14 @@ Checking test 026 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.839331 -The maximum resident set size (KB) = 529316 +The total amount of wall time = 130.670934 +The maximum resident set size (KB) = 527128 Test 026 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_CubedSphereGrid_parallel_intel Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1642,14 +1642,14 @@ Checking test 027 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.971613 -The maximum resident set size (KB) = 537512 +The total amount of wall time = 135.157552 +The maximum resident set size (KB) = 532012 Test 027 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_latlon_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_latlon_intel Checking test 028 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1660,14 +1660,14 @@ Checking test 028 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.915810 -The maximum resident set size (KB) = 533032 +The total amount of wall time = 132.708699 +The maximum resident set size (KB) = 528020 Test 028 control_latlon_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_wrtGauss_netcdf_parallel_intel Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 029 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.746082 -The maximum resident set size (KB) = 534080 +The total amount of wall time = 134.529173 +The maximum resident set size (KB) = 533596 Test 029 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_c48_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_c48_intel Checking test 030 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 030 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 330.833823 -The maximum resident set size (KB) = 716728 +The total amount of wall time = 326.669360 +The maximum resident set size (KB) = 720220 Test 030 control_c48_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_c192_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_c192_intel Checking test 031 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 031 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.698454 -The maximum resident set size (KB) = 643360 +The total amount of wall time = 525.850480 +The maximum resident set size (KB) = 644660 Test 031 control_c192_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_c384_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_c384_intel Checking test 032 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1760,14 +1760,14 @@ Checking test 032 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 580.751964 -The maximum resident set size (KB) = 959600 +The total amount of wall time = 581.042617 +The maximum resident set size (KB) = 959560 Test 032 control_c384_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_c384gdas_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_c384gdas_intel Checking test 033 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1810,14 +1810,14 @@ Checking test 033 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 512.982403 -The maximum resident set size (KB) = 1109780 +The total amount of wall time = 508.936404 +The maximum resident set size (KB) = 1094804 Test 033 control_c384gdas_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_stochy_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_stochy_intel Checking test 034 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1828,28 +1828,28 @@ Checking test 034 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.408693 -The maximum resident set size (KB) = 538524 +The total amount of wall time = 87.552174 +The maximum resident set size (KB) = 532788 Test 034 control_stochy_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_stochy_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_stochy_restart_intel Checking test 035 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.889379 -The maximum resident set size (KB) = 338792 +The total amount of wall time = 49.140600 +The maximum resident set size (KB) = 338060 Test 035 control_stochy_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_lndp_intel Checking test 036 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1860,14 +1860,14 @@ Checking test 036 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.927338 -The maximum resident set size (KB) = 532772 +The total amount of wall time = 82.813070 +The maximum resident set size (KB) = 537888 Test 036 control_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_iovr4_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_iovr4_intel Checking test 037 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1882,14 +1882,14 @@ Checking test 037 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.136416 -The maximum resident set size (KB) = 530024 +The total amount of wall time = 131.857975 +The maximum resident set size (KB) = 528492 Test 037 control_iovr4_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_iovr5_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_iovr5_intel Checking test 038 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1904,14 +1904,14 @@ Checking test 038 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 133.726771 -The maximum resident set size (KB) = 533296 +The total amount of wall time = 132.213550 +The maximum resident set size (KB) = 534680 Test 038 control_iovr5_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_intel Checking test 039 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1958,14 +1958,14 @@ Checking test 039 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 163.746688 -The maximum resident set size (KB) = 1512420 +The total amount of wall time = 162.263937 +The maximum resident set size (KB) = 1513100 Test 039 control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_ugwpv1_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_ugwpv1_intel Checking test 040 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2012,14 +2012,14 @@ Checking test 040 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 160.876655 -The maximum resident set size (KB) = 1513960 +The total amount of wall time = 159.452770 +The maximum resident set size (KB) = 1507084 Test 040 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_restart_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_restart_p8_intel Checking test 041 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2058,14 +2058,14 @@ Checking test 041 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 90.314771 -The maximum resident set size (KB) = 695040 +The total amount of wall time = 89.378030 +The maximum resident set size (KB) = 694936 Test 041 control_restart_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_noqr_p8_intel Checking test 042 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2112,14 +2112,14 @@ Checking test 042 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 -The total amount of wall time = 164.268674 -The maximum resident set size (KB) = 1495692 +The total amount of wall time = 162.908104 +The maximum resident set size (KB) = 1497584 Test 042 control_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_restart_noqr_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_restart_noqr_p8_intel Checking test 043 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2158,14 +2158,14 @@ Checking test 043 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 -The total amount of wall time = 91.828148 -The maximum resident set size (KB) = 702456 +The total amount of wall time = 87.314633 +The maximum resident set size (KB) = 700500 Test 043 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_decomp_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_decomp_p8_intel Checking test 044 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 044 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.447099 -The maximum resident set size (KB) = 1506232 +The total amount of wall time = 166.408779 +The maximum resident set size (KB) = 1507144 Test 044 control_decomp_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_2threads_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_2threads_p8_intel Checking test 045 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2258,14 +2258,14 @@ Checking test 045 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 143.599976 -The maximum resident set size (KB) = 1596004 +The total amount of wall time = 143.374528 +The maximum resident set size (KB) = 1597640 Test 045 control_2threads_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_lndp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_lndp_intel Checking test 046 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2284,14 +2284,14 @@ Checking test 046 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 294.950873 -The maximum resident set size (KB) = 1509132 +The total amount of wall time = 292.416090 +The maximum resident set size (KB) = 1512352 Test 046 control_p8_lndp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_rrtmgp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_rrtmgp_intel Checking test 047 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2338,14 +2338,14 @@ Checking test 047 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.814213 -The maximum resident set size (KB) = 1562164 +The total amount of wall time = 218.458270 +The maximum resident set size (KB) = 1562288 Test 047 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_mynn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_mynn_intel Checking test 048 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2392,14 +2392,14 @@ Checking test 048 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 167.228495 -The maximum resident set size (KB) = 1516008 +The total amount of wall time = 165.149770 +The maximum resident set size (KB) = 1512416 Test 048 control_p8_mynn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/merra2_thompson_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/merra2_thompson_intel Checking test 049 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2446,14 +2446,14 @@ Checking test 049 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 198.427875 -The maximum resident set size (KB) = 1514868 +The total amount of wall time = 195.616191 +The maximum resident set size (KB) = 1517560 Test 049 merra2_thompson_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_control_intel Checking test 050 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2464,28 +2464,28 @@ Checking test 050 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 283.563208 -The maximum resident set size (KB) = 609604 +The total amount of wall time = 285.133959 +The maximum resident set size (KB) = 607688 Test 050 regional_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_restart_intel Checking test 051 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 152.089545 -The maximum resident set size (KB) = 780892 +The total amount of wall time = 150.196587 +The maximum resident set size (KB) = 779444 Test 051 regional_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_decomp_intel Checking test 052 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2496,14 +2496,14 @@ Checking test 052 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.051085 -The maximum resident set size (KB) = 610960 +The total amount of wall time = 298.322756 +The maximum resident set size (KB) = 615472 Test 052 regional_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_2threads_intel Checking test 053 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 053 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 172.511610 -The maximum resident set size (KB) = 663100 +The total amount of wall time = 170.484328 +The maximum resident set size (KB) = 662016 Test 053 regional_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_noquilt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2529,14 +2529,14 @@ Checking test 054 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 276.861375 -The maximum resident set size (KB) = 1150964 +The total amount of wall time = 278.052755 +The maximum resident set size (KB) = 1149324 Test 054 regional_noquilt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_2dwrtdecomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_2dwrtdecomp_intel Checking test 055 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2547,14 +2547,14 @@ Checking test 055 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 281.725434 -The maximum resident set size (KB) = 617104 +The total amount of wall time = 282.071003 +The maximum resident set size (KB) = 611084 Test 055 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_wofs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_wofs_intel Checking test 056 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2565,14 +2565,14 @@ Checking test 056 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 367.854402 -The maximum resident set size (KB) = 1582716 +The total amount of wall time = 364.146166 +The maximum resident set size (KB) = 1587700 Test 056 regional_wofs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_ifi_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_ifi_control_intel Checking test 057 regional_ifi_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2583,14 +2583,14 @@ Checking test 057 regional_ifi_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 315.644584 -The maximum resident set size (KB) = 613632 +The total amount of wall time = 314.752415 +The maximum resident set size (KB) = 608528 Test 057 regional_ifi_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_ifi_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_ifi_decomp_intel Checking test 058 regional_ifi_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2601,14 +2601,14 @@ Checking test 058 regional_ifi_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 332.296132 -The maximum resident set size (KB) = 611972 +The total amount of wall time = 328.360248 +The maximum resident set size (KB) = 613396 Test 058 regional_ifi_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_ifi_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_ifi_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_ifi_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_ifi_2threads_intel Checking test 059 regional_ifi_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2619,14 +2619,14 @@ Checking test 059 regional_ifi_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 193.583205 -The maximum resident set size (KB) = 666460 +The total amount of wall time = 189.430180 +The maximum resident set size (KB) = 665428 Test 059 regional_ifi_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2673,14 +2673,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 404.792661 -The maximum resident set size (KB) = 914920 +The total amount of wall time = 406.032875 +The maximum resident set size (KB) = 915448 Test 060 rap_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2691,14 +2691,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 239.897118 -The maximum resident set size (KB) = 1088796 +The total amount of wall time = 236.877760 +The maximum resident set size (KB) = 1094032 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2745,14 +2745,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.598151 -The maximum resident set size (KB) = 918888 +The total amount of wall time = 419.960387 +The maximum resident set size (KB) = 913888 Test 062 rap_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2799,14 +2799,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.629633 -The maximum resident set size (KB) = 1007048 +The total amount of wall time = 369.438338 +The maximum resident set size (KB) = 1000220 Test 063 rap_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2845,14 +2845,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 208.594665 -The maximum resident set size (KB) = 781012 +The total amount of wall time = 208.398069 +The maximum resident set size (KB) = 783740 Test 064 rap_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_sfcdiff_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2899,14 +2899,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 403.612899 -The maximum resident set size (KB) = 913608 +The total amount of wall time = 404.068514 +The maximum resident set size (KB) = 914240 Test 065 rap_sfcdiff_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2953,14 +2953,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 419.933458 -The maximum resident set size (KB) = 917000 +The total amount of wall time = 421.773990 +The maximum resident set size (KB) = 910344 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_sfcdiff_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2999,14 +2999,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 302.004406 -The maximum resident set size (KB) = 783348 +The total amount of wall time = 301.465379 +The maximum resident set size (KB) = 782720 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3053,14 +3053,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 207.032774 -The maximum resident set size (KB) = 912376 +The total amount of wall time = 206.904925 +The maximum resident set size (KB) = 908076 Test 068 hrrr_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_decomp_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3107,14 +3107,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.836432 -The maximum resident set size (KB) = 908844 +The total amount of wall time = 211.298345 +The maximum resident set size (KB) = 908700 Test 069 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3161,28 +3161,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 186.166639 -The maximum resident set size (KB) = 993872 +The total amount of wall time = 185.828322 +The maximum resident set size (KB) = 990344 Test 070 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_restart_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 109.719420 -The maximum resident set size (KB) = 739428 +The total amount of wall time = 108.060093 +The maximum resident set size (KB) = 740752 Test 071 hrrr_control_restart_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rrfs_v1beta_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3229,14 +3229,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 399.146698 -The maximum resident set size (KB) = 911136 +The total amount of wall time = 395.632299 +The maximum resident set size (KB) = 907344 Test 072 rrfs_v1beta_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rrfs_v1nssl_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3251,14 +3251,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 485.550966 -The maximum resident set size (KB) = 1874464 +The total amount of wall time = 484.566262 +The maximum resident set size (KB) = 1873552 Test 073 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3273,14 +3273,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.291245 -The maximum resident set size (KB) = 1863544 +The total amount of wall time = 468.075965 +The maximum resident set size (KB) = 1859020 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_csawmg_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3291,14 +3291,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 334.309793 -The maximum resident set size (KB) = 604700 +The total amount of wall time = 335.098793 +The maximum resident set size (KB) = 598524 Test 075 control_csawmg_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_csawmgt_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3309,26 +3309,26 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 332.037535 -The maximum resident set size (KB) = 603644 +The total amount of wall time = 332.188157 +The maximum resident set size (KB) = 595292 Test 076 control_csawmgt_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_wam_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_wam_intel Checking test 077 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.241056 -The maximum resident set size (KB) = 278844 +The total amount of wall time = 119.124981 +The maximum resident set size (KB) = 271056 Test 077 control_wam_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_faster_intel Checking test 078 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3375,14 +3375,14 @@ Checking test 078 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 157.434732 -The maximum resident set size (KB) = 1509572 +The total amount of wall time = 156.001767 +The maximum resident set size (KB) = 1498832 Test 078 control_p8_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_control_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_control_faster_intel Checking test 079 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3393,14 +3393,14 @@ Checking test 079 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 276.076316 -The maximum resident set size (KB) = 611252 +The total amount of wall time = 269.804386 +The maximum resident set size (KB) = 603472 Test 079 regional_control_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_CubedSphereGrid_debug_intel Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3427,364 +3427,364 @@ Checking test 080 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 159.193731 -The maximum resident set size (KB) = 690608 +The total amount of wall time = 159.306203 +The maximum resident set size (KB) = 685036 Test 080 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_wrtGauss_netcdf_parallel_debug_intel Checking test 081 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.213243 -The maximum resident set size (KB) = 693736 +The total amount of wall time = 157.086724 +The maximum resident set size (KB) = 683692 Test 081 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_stochy_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_stochy_debug_intel Checking test 082 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.676898 -The maximum resident set size (KB) = 695552 +The total amount of wall time = 179.225210 +The maximum resident set size (KB) = 690740 Test 082 control_stochy_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_lndp_debug_intel Checking test 083 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.428203 -The maximum resident set size (KB) = 698028 +The total amount of wall time = 160.191918 +The maximum resident set size (KB) = 693164 Test 083 control_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_csawmg_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_csawmg_debug_intel Checking test 084 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.361150 -The maximum resident set size (KB) = 739744 +The total amount of wall time = 249.248210 +The maximum resident set size (KB) = 729092 Test 084 control_csawmg_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_csawmgt_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_csawmgt_debug_intel Checking test 085 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.233110 -The maximum resident set size (KB) = 735944 +The total amount of wall time = 248.372275 +The maximum resident set size (KB) = 729788 Test 085 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_ras_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_ras_debug_intel Checking test 086 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.251900 -The maximum resident set size (KB) = 704672 +The total amount of wall time = 162.490724 +The maximum resident set size (KB) = 696168 Test 086 control_ras_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_diag_debug_intel Checking test 087 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.943750 -The maximum resident set size (KB) = 749484 +The total amount of wall time = 163.441455 +The maximum resident set size (KB) = 744056 Test 087 control_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_debug_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_debug_p8_intel Checking test 088 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.748197 -The maximum resident set size (KB) = 1530500 +The total amount of wall time = 164.034392 +The maximum resident set size (KB) = 1524752 Test 088 control_debug_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_debug_intel Checking test 089 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1045.594579 -The maximum resident set size (KB) = 633624 +The total amount of wall time = 1042.444969 +The maximum resident set size (KB) = 628736 Test 089 regional_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_debug_intel Checking test 090 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.704877 -The maximum resident set size (KB) = 1080756 +The total amount of wall time = 298.019732 +The maximum resident set size (KB) = 1073540 Test 090 rap_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_debug_intel Checking test 091 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.821821 -The maximum resident set size (KB) = 1073564 +The total amount of wall time = 293.189888 +The maximum resident set size (KB) = 1065476 Test 091 hrrr_control_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_gf_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_gf_debug_intel Checking test 092 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.184714 -The maximum resident set size (KB) = 1074080 +The total amount of wall time = 296.456031 +The maximum resident set size (KB) = 1075280 Test 092 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_c3_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_c3_debug_intel Checking test 093 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.543737 -The maximum resident set size (KB) = 1078876 +The total amount of wall time = 298.089195 +The maximum resident set size (KB) = 1069264 Test 093 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_unified_drag_suite_debug_intel Checking test 094 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.261668 -The maximum resident set size (KB) = 1080832 +The total amount of wall time = 298.651987 +The maximum resident set size (KB) = 1073768 Test 094 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_diag_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_diag_debug_intel Checking test 095 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 309.237449 -The maximum resident set size (KB) = 1161796 +The total amount of wall time = 308.495802 +The maximum resident set size (KB) = 1153572 Test 095 rap_diag_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_cires_ugwp_debug_intel Checking test 096 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.443858 -The maximum resident set size (KB) = 1079820 +The total amount of wall time = 304.848171 +The maximum resident set size (KB) = 1074556 Test 096 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_unified_ugwp_debug_intel Checking test 097 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 304.414716 -The maximum resident set size (KB) = 1076488 +The total amount of wall time = 305.110521 +The maximum resident set size (KB) = 1072104 Test 097 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_lndp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_lndp_debug_intel Checking test 098 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.752027 -The maximum resident set size (KB) = 1077912 +The total amount of wall time = 300.963872 +The maximum resident set size (KB) = 1073948 Test 098 rap_lndp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_progcld_thompson_debug_intel Checking test 099 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.558287 -The maximum resident set size (KB) = 1080960 +The total amount of wall time = 297.757885 +The maximum resident set size (KB) = 1070772 Test 099 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_noah_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_noah_debug_intel Checking test 100 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.273083 -The maximum resident set size (KB) = 1075260 +The total amount of wall time = 292.244585 +The maximum resident set size (KB) = 1069900 Test 100 rap_noah_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_sfcdiff_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_sfcdiff_debug_intel Checking test 101 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.838789 -The maximum resident set size (KB) = 1077768 +The total amount of wall time = 297.960654 +The maximum resident set size (KB) = 1072540 Test 101 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 493.363939 -The maximum resident set size (KB) = 1077196 +The total amount of wall time = 489.618803 +The maximum resident set size (KB) = 1066692 Test 102 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rrfs_v1beta_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rrfs_v1beta_debug_intel Checking test 103 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.498541 -The maximum resident set size (KB) = 1070804 +The total amount of wall time = 293.309058 +The maximum resident set size (KB) = 1068300 Test 103 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_clm_lake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_clm_lake_debug_intel Checking test 104 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 375.122909 -The maximum resident set size (KB) = 1077848 +The total amount of wall time = 347.777789 +The maximum resident set size (KB) = 1074052 Test 104 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_flake_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_flake_debug_intel Checking test 105 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.967960 -The maximum resident set size (KB) = 1081516 +The total amount of wall time = 297.718192 +The maximum resident set size (KB) = 1074868 Test 105 rap_flake_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/gnv1_c96_no_nest_debug_intel Checking test 106 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3825,26 +3825,26 @@ Checking test 106 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 -The total amount of wall time = 520.639713 -The maximum resident set size (KB) = 1084092 +The total amount of wall time = 520.116482 +The maximum resident set size (KB) = 1077812 Test 106 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_wam_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_wam_debug_intel Checking test 107 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.951846 -The maximum resident set size (KB) = 305544 +The total amount of wall time = 296.493008 +The maximum resident set size (KB) = 299696 Test 107 control_wam_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3855,14 +3855,14 @@ Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 226.928471 -The maximum resident set size (KB) = 957876 +The total amount of wall time = 225.290452 +The maximum resident set size (KB) = 957248 Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_dyn32_phy32_intel Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 109 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 334.763933 -The maximum resident set size (KB) = 791124 +The total amount of wall time = 334.581846 +The maximum resident set size (KB) = 793512 Test 109 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_dyn32_phy32_intel Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3963,14 +3963,14 @@ Checking test 110 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 175.405731 -The maximum resident set size (KB) = 793040 +The total amount of wall time = 174.792658 +The maximum resident set size (KB) = 788500 Test 110 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_2threads_dyn32_phy32_intel Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4017,14 +4017,14 @@ Checking test 111 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.859541 -The maximum resident set size (KB) = 851336 +The total amount of wall time = 306.857979 +The maximum resident set size (KB) = 857160 Test 111 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_2threads_dyn32_phy32_intel Checking test 112 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4071,14 +4071,14 @@ Checking test 112 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 -The total amount of wall time = 159.939334 -The maximum resident set size (KB) = 844772 +The total amount of wall time = 159.228891 +The maximum resident set size (KB) = 844760 Test 112 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_decomp_dyn32_phy32_intel Checking test 113 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4125,14 +4125,14 @@ Checking test 113 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 -The total amount of wall time = 183.557617 -The maximum resident set size (KB) = 790520 +The total amount of wall time = 182.900010 +The maximum resident set size (KB) = 791600 Test 113 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_restart_dyn32_phy32_intel Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4171,28 +4171,28 @@ Checking test 114 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 250.330838 -The maximum resident set size (KB) = 686896 +The total amount of wall time = 249.370215 +The maximum resident set size (KB) = 691884 Test 114 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_restart_dyn32_phy32_intel Checking test 115 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.612150 -The maximum resident set size (KB) = 674196 +The total amount of wall time = 92.403469 +The maximum resident set size (KB) = 668884 Test 115 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_control_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_control_intel Checking test 116 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4208,40 +4208,40 @@ Checking test 116 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 118.585720 -The maximum resident set size (KB) = 1055720 +The total amount of wall time = 114.443863 +The maximum resident set size (KB) = 1056072 Test 116 conus13km_control_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_2threads_intel Checking test 117 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 59.978496 -The maximum resident set size (KB) = 1062072 +The total amount of wall time = 56.219403 +The maximum resident set size (KB) = 1053796 Test 117 conus13km_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_restart_mismatch_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_restart_mismatch_intel Checking test 118 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 71.942438 -The maximum resident set size (KB) = 955772 +The total amount of wall time = 71.152625 +The maximum resident set size (KB) = 955068 Test 118 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_dyn64_phy32_intel Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4288,42 +4288,42 @@ Checking test 119 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 229.959991 -The maximum resident set size (KB) = 814812 +The total amount of wall time = 228.579499 +The maximum resident set size (KB) = 816004 Test 119 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_debug_dyn32_phy32_intel Checking test 120 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.821716 -The maximum resident set size (KB) = 960872 +The total amount of wall time = 292.884135 +The maximum resident set size (KB) = 956664 Test 120 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hrrr_control_debug_dyn32_phy32_intel Checking test 121 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.413830 -The maximum resident set size (KB) = 954980 +The total amount of wall time = 285.392661 +The maximum resident set size (KB) = 950484 Test 121 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_debug_intel Checking test 122 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 122 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 885.529368 -The maximum resident set size (KB) = 1085900 +The total amount of wall time = 883.736283 +The maximum resident set size (KB) = 1085016 Test 122 conus13km_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_debug_qr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_debug_qr_intel Checking test 123 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4358,81 +4358,81 @@ Checking test 123 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 -The total amount of wall time = 888.114150 -The maximum resident set size (KB) = 712052 +The total amount of wall time = 891.637876 +The maximum resident set size (KB) = 710696 Test 123 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_debug_2threads_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_debug_2threads_intel Checking test 124 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 506.963630 -The maximum resident set size (KB) = 1094056 +The total amount of wall time = 506.921465 +The maximum resident set size (KB) = 1085564 Test 124 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/conus13km_radar_tten_debug_intel Checking test 125 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 888.051240 -The maximum resident set size (KB) = 1159600 +The total amount of wall time = 889.017061 +The maximum resident set size (KB) = 1156716 Test 125 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/rap_control_dyn64_phy32_debug_intel Checking test 126 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.179146 -The maximum resident set size (KB) = 981332 +The total amount of wall time = 296.512858 +The maximum resident set size (KB) = 971124 Test 126 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_atm_intel Checking test 127 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 342.020266 -The maximum resident set size (KB) = 618596 +The total amount of wall time = 338.934965 +The maximum resident set size (KB) = 615756 Test 127 hafs_regional_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_atm_thompson_gfdlsf_intel Checking test 128 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 309.302366 -The maximum resident set size (KB) = 975216 +The total amount of wall time = 304.312517 +The maximum resident set size (KB) = 971104 Test 128 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_atm_ocn_intel Checking test 129 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4441,14 +4441,14 @@ Checking test 129 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 -The total amount of wall time = 435.086533 -The maximum resident set size (KB) = 666196 +The total amount of wall time = 417.213053 +The maximum resident set size (KB) = 666504 Test 129 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_atm_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_atm_wav_intel Checking test 130 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4457,14 +4457,14 @@ Checking test 130 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 -The total amount of wall time = 769.690654 -The maximum resident set size (KB) = 701984 +The total amount of wall time = 746.949030 +The maximum resident set size (KB) = 696084 Test 130 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_atm_ocn_wav_intel Checking test 131 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4475,14 +4475,14 @@ Checking test 131 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 -The total amount of wall time = 952.077833 -The maximum resident set size (KB) = 728040 +The total amount of wall time = 938.159643 +The maximum resident set size (KB) = 708568 Test 131 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_1nest_atm_intel Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4504,14 +4504,14 @@ Checking test 132 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 318.668676 -The maximum resident set size (KB) = 388444 +The total amount of wall time = 315.218108 +The maximum resident set size (KB) = 390100 Test 132 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_telescopic_2nests_atm_intel Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4520,14 +4520,14 @@ Checking test 133 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 407.827933 -The maximum resident set size (KB) = 407312 +The total amount of wall time = 402.299864 +The maximum resident set size (KB) = 408232 Test 133 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_global_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_global_1nest_atm_intel Checking test 134 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4574,14 +4574,14 @@ Checking test 134 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 172.781895 -The maximum resident set size (KB) = 291372 +The total amount of wall time = 170.020902 +The maximum resident set size (KB) = 283236 Test 134 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_global_multiple_4nests_atm_intel Checking test 135 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4663,14 +4663,14 @@ Checking test 135 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 -The total amount of wall time = 483.524674 -The maximum resident set size (KB) = 385992 +The total amount of wall time = 481.001526 +The maximum resident set size (KB) = 370988 Test 135 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_specified_moving_1nest_atm_intel Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4679,14 +4679,14 @@ Checking test 136 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 221.346734 -The maximum resident set size (KB) = 422364 +The total amount of wall time = 218.158493 +The maximum resident set size (KB) = 418656 Test 136 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_storm_following_1nest_atm_intel Checking test 137 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4708,14 +4708,14 @@ Checking test 137 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 -The total amount of wall time = 207.933523 -The maximum resident set size (KB) = 427432 +The total amount of wall time = 204.286181 +The maximum resident set size (KB) = 421136 Test 137 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4724,28 +4724,28 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 264.223376 -The maximum resident set size (KB) = 497516 +The total amount of wall time = 261.373737 +The maximum resident set size (KB) = 493456 Test 138 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_global_storm_following_1nest_atm_intel Checking test 139 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 -The total amount of wall time = 91.652657 -The maximum resident set size (KB) = 320176 +The total amount of wall time = 91.124266 +The maximum resident set size (KB) = 314268 Test 139 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/gnv1_nested_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/gnv1_nested_intel Checking test 140 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4792,28 +4792,28 @@ Checking test 140 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 238.167983 -The maximum resident set size (KB) = 683736 +The total amount of wall time = 236.162461 +The maximum resident set size (KB) = 687008 Test 140 gnv1_nested_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 141 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 -The total amount of wall time = 818.537199 -The maximum resident set size (KB) = 505328 +The total amount of wall time = 820.984638 +The maximum resident set size (KB) = 503524 Test 141 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4824,14 +4824,14 @@ Checking test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 526.878529 -The maximum resident set size (KB) = 545320 +The total amount of wall time = 518.705602 +The maximum resident set size (KB) = 526280 Test 142 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_docn_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_docn_intel Checking test 143 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4839,14 +4839,14 @@ Checking test 143 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 -The total amount of wall time = 400.059165 -The maximum resident set size (KB) = 658824 +The total amount of wall time = 385.931886 +The maximum resident set size (KB) = 664700 Test 143 hafs_regional_docn_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_docn_oisst_intel Checking test 144 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4854,131 +4854,131 @@ Checking test 144 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 -The total amount of wall time = 401.815283 -The maximum resident set size (KB) = 649236 +The total amount of wall time = 390.859521 +The maximum resident set size (KB) = 642168 Test 144 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/hafs_regional_datm_cdeps_intel Checking test 145 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 -The total amount of wall time = 948.948174 -The maximum resident set size (KB) = 886500 +The total amount of wall time = 945.360495 +The maximum resident set size (KB) = 886520 Test 145 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_control_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_control_cfsr_intel Checking test 146 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 -The total amount of wall time = 143.286399 -The maximum resident set size (KB) = 740884 +The total amount of wall time = 141.936507 +The maximum resident set size (KB) = 735180 Test 146 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_restart_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_restart_cfsr_intel Checking test 147 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 -The total amount of wall time = 90.876614 -The maximum resident set size (KB) = 716300 +The total amount of wall time = 85.034628 +The maximum resident set size (KB) = 721692 Test 147 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_control_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_control_gefs_intel Checking test 148 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 -The total amount of wall time = 135.839315 -The maximum resident set size (KB) = 618732 +The total amount of wall time = 134.110067 +The maximum resident set size (KB) = 625576 Test 148 datm_cdeps_control_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_iau_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_iau_gefs_intel Checking test 149 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 -The total amount of wall time = 138.474988 -The maximum resident set size (KB) = 622984 +The total amount of wall time = 136.059873 +The maximum resident set size (KB) = 637756 Test 149 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_stochy_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_stochy_gefs_intel Checking test 150 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 -The total amount of wall time = 138.933752 -The maximum resident set size (KB) = 621940 +The total amount of wall time = 137.636937 +The maximum resident set size (KB) = 629932 Test 150 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_ciceC_cfsr_intel Checking test 151 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 -The total amount of wall time = 144.757244 -The maximum resident set size (KB) = 729520 +The total amount of wall time = 142.043669 +The maximum resident set size (KB) = 747720 Test 151 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_bulk_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_bulk_cfsr_intel Checking test 152 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 -The total amount of wall time = 144.758537 -The maximum resident set size (KB) = 728592 +The total amount of wall time = 142.480788 +The maximum resident set size (KB) = 748860 Test 152 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_bulk_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_bulk_gefs_intel Checking test 153 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 -The total amount of wall time = 135.375285 -The maximum resident set size (KB) = 620628 +The total amount of wall time = 134.397431 +The maximum resident set size (KB) = 626240 Test 153 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_mx025_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_mx025_cfsr_intel Checking test 154 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4987,14 +4987,14 @@ Checking test 154 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 -The total amount of wall time = 428.956976 -The maximum resident set size (KB) = 588932 +The total amount of wall time = 341.395327 +The maximum resident set size (KB) = 593952 Test 154 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_mx025_gefs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_mx025_gefs_intel Checking test 155 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -5003,64 +5003,64 @@ Checking test 155 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 -The total amount of wall time = 425.879528 -The maximum resident set size (KB) = 571112 +The total amount of wall time = 337.142737 +The maximum resident set size (KB) = 572524 Test 155 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_multiple_files_cfsr_intel Checking test 156 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 143.777502 -The maximum resident set size (KB) = 729332 +The total amount of wall time = 142.531999 +The maximum resident set size (KB) = 749004 Test 156 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_3072x1536_cfsr_intel Checking test 157 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 -The total amount of wall time = 261.075618 -The maximum resident set size (KB) = 1984076 +The total amount of wall time = 258.132677 +The maximum resident set size (KB) = 1994572 Test 157 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_gfs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_gfs_intel Checking test 158 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 -The total amount of wall time = 260.272645 -The maximum resident set size (KB) = 1982368 +The total amount of wall time = 257.228273 +The maximum resident set size (KB) = 1989848 Test 158 datm_cdeps_gfs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_control_cfsr_faster_intel Checking test 159 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 -The total amount of wall time = 144.255092 -The maximum resident set size (KB) = 728972 +The total amount of wall time = 142.917838 +The maximum resident set size (KB) = 748020 Test 159 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_lnd_gswp3_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_lnd_gswp3_intel Checking test 160 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 @@ -5069,14 +5069,14 @@ Checking test 160 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 -The total amount of wall time = 22.371861 -The maximum resident set size (KB) = 226972 +The total amount of wall time = 22.233000 +The maximum resident set size (KB) = 220928 Test 160 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/datm_cdeps_lnd_gswp3_rst_intel Checking test 161 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 @@ -5085,14 +5085,14 @@ Checking test 161 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 -The total amount of wall time = 26.529420 -The maximum resident set size (KB) = 225620 +The total amount of wall time = 26.231303 +The maximum resident set size (KB) = 223424 Test 161 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_p8_atmlnd_sbs_intel Checking test 162 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5177,14 +5177,14 @@ Checking test 162 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 -The total amount of wall time = 216.951311 -The maximum resident set size (KB) = 1569456 +The total amount of wall time = 217.346618 +The maximum resident set size (KB) = 1568400 Test 162 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/atmwav_control_noaero_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/atmwav_control_noaero_p8_intel Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5227,14 +5227,14 @@ Checking test 163 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 99.750943 -The maximum resident set size (KB) = 1546984 +The total amount of wall time = 98.807577 +The maximum resident set size (KB) = 1546272 Test 163 atmwav_control_noaero_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/control_atmwav_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/control_atmwav_intel Checking test 164 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5278,14 +5278,14 @@ Checking test 164 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.964179 -The maximum resident set size (KB) = 556280 +The total amount of wall time = 90.059340 +The maximum resident set size (KB) = 541140 Test 164 control_atmwav_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/atmaero_control_p8_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/atmaero_control_p8_intel Checking test 165 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5329,14 +5329,14 @@ Checking test 165 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 239.478047 -The maximum resident set size (KB) = 2841916 +The total amount of wall time = 237.264126 +The maximum resident set size (KB) = 2852968 Test 165 atmaero_control_p8_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/atmaero_control_p8_rad_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/atmaero_control_p8_rad_intel Checking test 166 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5380,14 +5380,14 @@ Checking test 166 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 276.705769 -The maximum resident set size (KB) = 2902112 +The total amount of wall time = 275.447676 +The maximum resident set size (KB) = 2908316 Test 166 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/atmaero_control_p8_rad_micro_intel Checking test 167 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5431,14 +5431,14 @@ Checking test 167 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 -The total amount of wall time = 291.993252 -The maximum resident set size (KB) = 2920216 +The total amount of wall time = 290.262908 +The maximum resident set size (KB) = 2923240 Test 167 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_atmaq_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_atmaq_intel Checking test 168 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5454,14 +5454,14 @@ Checking test 168 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 701.271185 -The maximum resident set size (KB) = 5009064 +The total amount of wall time = 679.916412 +The maximum resident set size (KB) = 4985232 Test 168 regional_atmaq_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_atmaq_debug_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_atmaq_debug_intel Checking test 169 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5475,14 +5475,14 @@ Checking test 169 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1316.817781 -The maximum resident set size (KB) = 4447068 +The total amount of wall time = 1313.875906 +The maximum resident set size (KB) = 4430220 Test 169 regional_atmaq_debug_intel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_43889/regional_atmaq_faster_intel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46214/regional_atmaq_faster_intel Checking test 170 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5498,12 +5498,12 @@ Checking test 170 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 909.073117 -The maximum resident set size (KB) = 5009100 +The total amount of wall time = 898.257631 +The maximum resident set size (KB) = 4989324 Test 170 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 3 15:36:44 UTC 2024 -Elapsed time: 01h:51m:42s. Have a nice day! +Tue Jan 16 05:08:13 UTC 2024 +Elapsed time: 02h:02m:45s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 6e42f9f4a7..806d1f73d3 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,60 +1,60 @@ -Tue 02 Jan 2024 05:33:30 PM MST +Sat 13 Jan 2024 07:59:52 AM MST Start Regression test -Testing UFSWM Hash: 2d3e73ead5b39f3d3c343c73043a1184e76763dd +Testing UFSWM Hash: 124aa3fe17c40c1881507d6d9c23120c679ac6f9 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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) 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 atmaero_intel elapsed time 594 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 768 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 578 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 448 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_intel elapsed time 653 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_faster_dyn32_intel elapsed time 724 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 atml_intel elapsed time 611 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 608 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_faster_intel elapsed time 776 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 585 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 453 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_intel elapsed time 662 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_faster_dyn32_intel elapsed time 731 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 atml_intel elapsed time 618 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 719 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 707 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 547 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 259 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 399 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 401 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 125 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 768 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 361 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 844 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 801 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 304 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 664 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 517 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 303 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmwm_intel elapsed time 715 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 558 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 280 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 436 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 127 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 769 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 372 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 849 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 815 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 315 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 668 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=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 310 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 528 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 603 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 740 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 735 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1022 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 499 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 1150 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_intel elapsed time 496 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 999 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 464 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 959 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 469 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_intel elapsed time 1103 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 287 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 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_p8_mixedmode_intel +Compile rrfs_intel elapsed time 597 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 808 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 801 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 1093 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 532 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 1217 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_intel elapsed time 521 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 1087 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 489 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 1054 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 498 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_intel elapsed time 1144 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 295 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 518 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -119,14 +119,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 278.746529 -The maximum resident set size (KB) = 2981968 +The total amount of wall time = 281.213999 +The maximum resident set size (KB) = 2994176 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -190,14 +190,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 800.080357 -The maximum resident set size (KB) = 1609596 +The total amount of wall time = 804.141314 +The maximum resident set size (KB) = 1608696 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_gfsv17_iau_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -206,14 +206,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK -The total amount of wall time = 561.570370 -The maximum resident set size (KB) = 878172 +The total amount of wall time = 558.763185 +The maximum resident set size (KB) = 886900 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_restart_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -266,14 +266,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 412.994222 -The maximum resident set size (KB) = 870828 +The total amount of wall time = 420.250403 +The maximum resident set size (KB) = 881624 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_mpi_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -337,14 +337,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 921.093548 -The maximum resident set size (KB) = 1574680 +The total amount of wall time = 919.342805 +The maximum resident set size (KB) = 1580676 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_debug_gfsv17_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -396,14 +396,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1070.852373 -The maximum resident set size (KB) = 1622340 +The total amount of wall time = 1080.844432 +The maximum resident set size (KB) = 1622012 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -468,14 +468,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.887461 -The maximum resident set size (KB) = 3007384 +The total amount of wall time = 322.967646 +The maximum resident set size (KB) = 3019004 Test 007 cpld_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -528,14 +528,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 182.880730 -The maximum resident set size (KB) = 3070920 +The total amount of wall time = 185.343661 +The maximum resident set size (KB) = 3074564 Test 008 cpld_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -600,14 +600,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 318.964711 -The maximum resident set size (KB) = 3039484 +The total amount of wall time = 323.538883 +The maximum resident set size (KB) = 3043876 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_restart_qr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -660,14 +660,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 184.202592 -The maximum resident set size (KB) = 3097632 +The total amount of wall time = 186.117624 +The maximum resident set size (KB) = 3102704 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_decomp_p8_intel Checking test 011 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,14 +720,14 @@ Checking test 011 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 319.469215 -The maximum resident set size (KB) = 3000460 +The total amount of wall time = 318.185413 +The maximum resident set size (KB) = 3011532 Test 011 cpld_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_mpi_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_mpi_p8_intel Checking test 012 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -780,14 +780,14 @@ Checking test 012 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 261.311036 -The maximum resident set size (KB) = 3293244 +The total amount of wall time = 262.589431 +The maximum resident set size (KB) = 3308104 Test 012 cpld_mpi_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_ciceC_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_ciceC_p8_intel Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -852,14 +852,14 @@ Checking test 013 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 320.178619 -The maximum resident set size (KB) = 3015512 +The total amount of wall time = 321.247293 +The maximum resident set size (KB) = 3028244 Test 013 cpld_control_ciceC_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_c192_p8_intel Checking test 014 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -912,14 +912,14 @@ Checking test 014 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 503.629040 -The maximum resident set size (KB) = 3552300 +The total amount of wall time = 512.063502 +The maximum resident set size (KB) = 3556776 Test 014 cpld_control_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_restart_c192_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_restart_c192_p8_intel Checking test 015 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -972,14 +972,14 @@ Checking test 015 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -The total amount of wall time = 332.043773 -The maximum resident set size (KB) = 3537644 +The total amount of wall time = 347.758842 +The maximum resident set size (KB) = 3536996 Test 015 cpld_restart_c192_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_s2sa_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_s2sa_p8_intel Checking test 016 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1030,14 +1030,14 @@ Checking test 016 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 -The total amount of wall time = 301.149038 -The maximum resident set size (KB) = 2976268 +The total amount of wall time = 305.405034 +The maximum resident set size (KB) = 2988360 Test 016 cpld_s2sa_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_noaero_p8_intel Checking test 017 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1101,14 +1101,14 @@ Checking test 017 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 237.021883 -The maximum resident set size (KB) = 1597488 +The total amount of wall time = 241.751549 +The maximum resident set size (KB) = 1598312 Test 017 cpld_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_nowave_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_nowave_noaero_p8_intel Checking test 018 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1170,14 +1170,14 @@ Checking test 018 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 -The total amount of wall time = 238.804680 -The maximum resident set size (KB) = 1643896 +The total amount of wall time = 241.621862 +The maximum resident set size (KB) = 1649224 Test 018 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_debug_p8_intel Checking test 019 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1230,14 +1230,14 @@ Checking test 019 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 442.358152 -The maximum resident set size (KB) = 3060444 +The total amount of wall time = 458.961391 +The maximum resident set size (KB) = 3070764 Test 019 cpld_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_debug_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_debug_noaero_p8_intel Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1289,14 +1289,14 @@ Checking test 020 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 300.538905 -The maximum resident set size (KB) = 1627368 +The total amount of wall time = 304.062773 +The maximum resident set size (KB) = 1618528 Test 020 cpld_debug_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_noaero_p8_agrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_noaero_p8_agrid_intel Checking test 021 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1358,14 +1358,14 @@ Checking test 021 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 -The total amount of wall time = 240.839896 -The maximum resident set size (KB) = 1640556 +The total amount of wall time = 250.049833 +The maximum resident set size (KB) = 1640676 Test 021 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_c48_intel Checking test 022 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1415,14 +1415,14 @@ Checking test 022 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 -The total amount of wall time = 389.455655 -The maximum resident set size (KB) = 2661332 +The total amount of wall time = 391.480481 +The maximum resident set size (KB) = 2661536 Test 022 cpld_control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_control_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1486,14 +1486,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 818.361682 -The maximum resident set size (KB) = 1620152 +The total amount of wall time = 820.466340 +The maximum resident set size (KB) = 1618992 Test 023 cpld_control_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_restart_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1545,14 +1545,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 415.301053 -The maximum resident set size (KB) = 913976 +The total amount of wall time = 419.916172 +The maximum resident set size (KB) = 938404 Test 024 cpld_restart_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_mpi_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1616,14 +1616,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 943.719525 -The maximum resident set size (KB) = 1586428 +The total amount of wall time = 940.439512 +The maximum resident set size (KB) = 1591228 Test 025 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/cpld_debug_pdlib_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1675,14 +1675,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1343.281480 -The maximum resident set size (KB) = 1625404 +The total amount of wall time = 1328.309022 +The maximum resident set size (KB) = 1632744 Test 026 cpld_debug_pdlib_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_flake_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1693,14 +1693,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 193.555643 -The maximum resident set size (KB) = 589124 +The total amount of wall time = 192.645121 +The maximum resident set size (KB) = 593228 Test 027 control_flake_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_CubedSphereGrid_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1727,14 +1727,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 112.018789 -The maximum resident set size (KB) = 539852 +The total amount of wall time = 111.727118 +The maximum resident set size (KB) = 544908 Test 028 control_CubedSphereGrid_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_CubedSphereGrid_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1749,14 +1749,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 116.977219 -The maximum resident set size (KB) = 546508 +The total amount of wall time = 119.317759 +The maximum resident set size (KB) = 548160 Test 029 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_latlon_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1767,14 +1767,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 112.540773 -The maximum resident set size (KB) = 543688 +The total amount of wall time = 114.591553 +The maximum resident set size (KB) = 544720 Test 030 control_latlon_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_wrtGauss_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1785,14 +1785,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 115.508425 -The maximum resident set size (KB) = 542556 +The total amount of wall time = 115.275349 +The maximum resident set size (KB) = 543680 Test 031 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_c48_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1831,14 +1831,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 306.977658 -The maximum resident set size (KB) = 730112 +The total amount of wall time = 311.623268 +The maximum resident set size (KB) = 731516 Test 032 control_c48_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_c192_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1849,14 +1849,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 462.668773 -The maximum resident set size (KB) = 658360 +The total amount of wall time = 457.181741 +The maximum resident set size (KB) = 667608 Test 033 control_c192_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_c384_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1867,14 +1867,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.556343 -The maximum resident set size (KB) = 980384 +The total amount of wall time = 480.105793 +The maximum resident set size (KB) = 983636 Test 034 control_c384_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_c384gdas_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1917,14 +1917,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 414.961985 -The maximum resident set size (KB) = 1115704 +The total amount of wall time = 423.942597 +The maximum resident set size (KB) = 1124172 Test 035 control_c384gdas_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_stochy_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1935,28 +1935,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 74.323015 -The maximum resident set size (KB) = 545272 +The total amount of wall time = 74.476255 +The maximum resident set size (KB) = 549576 Test 036 control_stochy_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_stochy_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 42.566859 -The maximum resident set size (KB) = 356048 +The total amount of wall time = 42.500876 +The maximum resident set size (KB) = 362820 Test 037 control_stochy_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1967,14 +1967,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 70.964735 -The maximum resident set size (KB) = 545852 +The total amount of wall time = 71.484148 +The maximum resident set size (KB) = 549832 Test 038 control_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_iovr4_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1989,14 +1989,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 113.702488 -The maximum resident set size (KB) = 544504 +The total amount of wall time = 114.918758 +The maximum resident set size (KB) = 549468 Test 039 control_iovr4_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_iovr5_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2011,14 +2011,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 113.971226 -The maximum resident set size (KB) = 540716 +The total amount of wall time = 115.462326 +The maximum resident set size (KB) = 547712 Test 040 control_iovr5_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2065,14 +2065,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 140.530987 -The maximum resident set size (KB) = 1512832 +The total amount of wall time = 138.838150 +The maximum resident set size (KB) = 1519896 Test 041 control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_ugwpv1_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2119,14 +2119,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 137.773371 -The maximum resident set size (KB) = 1517728 +The total amount of wall time = 137.869221 +The maximum resident set size (KB) = 1529164 Test 042 control_p8_ugwpv1_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_restart_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2165,14 +2165,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 76.435764 -The maximum resident set size (KB) = 712160 +The total amount of wall time = 74.263604 +The maximum resident set size (KB) = 722976 Test 043 control_restart_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2219,14 +2219,14 @@ Checking test 044 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 -The total amount of wall time = 137.549692 -The maximum resident set size (KB) = 1504332 +The total amount of wall time = 139.957552 +The maximum resident set size (KB) = 1514452 Test 044 control_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_restart_noqr_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2265,14 +2265,14 @@ Checking test 045 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 -The total amount of wall time = 71.480145 -The maximum resident set size (KB) = 725260 +The total amount of wall time = 72.185752 +The maximum resident set size (KB) = 728232 Test 045 control_restart_noqr_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_decomp_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2315,14 +2315,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 142.180129 -The maximum resident set size (KB) = 1509032 +The total amount of wall time = 143.236045 +The maximum resident set size (KB) = 1519080 Test 046 control_decomp_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_lndp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_lndp_intel Checking test 047 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2341,14 +2341,14 @@ Checking test 047 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 249.785515 -The maximum resident set size (KB) = 1523844 +The total amount of wall time = 253.504590 +The maximum resident set size (KB) = 1523596 Test 047 control_p8_lndp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_rrtmgp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_rrtmgp_intel Checking test 048 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2395,14 +2395,14 @@ Checking test 048 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.983839 -The maximum resident set size (KB) = 1568276 +The total amount of wall time = 188.029772 +The maximum resident set size (KB) = 1585224 Test 048 control_p8_rrtmgp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_mynn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_mynn_intel Checking test 049 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2449,14 +2449,14 @@ Checking test 049 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 139.368604 -The maximum resident set size (KB) = 1524792 +The total amount of wall time = 145.489543 +The maximum resident set size (KB) = 1531236 Test 049 control_p8_mynn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/merra2_thompson_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/merra2_thompson_intel Checking test 050 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2503,14 +2503,14 @@ Checking test 050 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 166.814512 -The maximum resident set size (KB) = 1521136 +The total amount of wall time = 171.907678 +The maximum resident set size (KB) = 1528784 Test 050 merra2_thompson_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_control_intel Checking test 051 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2521,28 +2521,28 @@ Checking test 051 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 254.543263 -The maximum resident set size (KB) = 621664 +The total amount of wall time = 259.735156 +The maximum resident set size (KB) = 628652 Test 051 regional_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_restart_intel Checking test 052 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 138.035632 -The maximum resident set size (KB) = 793480 +The total amount of wall time = 139.221167 +The maximum resident set size (KB) = 797756 Test 052 regional_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_decomp_intel Checking test 053 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2553,14 +2553,14 @@ Checking test 053 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 270.716316 -The maximum resident set size (KB) = 623892 +The total amount of wall time = 282.264557 +The maximum resident set size (KB) = 626532 Test 053 regional_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_noquilt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_noquilt_intel Checking test 054 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2568,28 +2568,28 @@ Checking test 054 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 252.836986 -The maximum resident set size (KB) = 1158716 +The total amount of wall time = 259.738725 +The maximum resident set size (KB) = 1160468 Test 054 regional_noquilt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_netcdf_parallel_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_netcdf_parallel_intel Checking test 055 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 255.414943 -The maximum resident set size (KB) = 618176 +The total amount of wall time = 258.600641 +The maximum resident set size (KB) = 626760 Test 055 regional_netcdf_parallel_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_2dwrtdecomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_2dwrtdecomp_intel Checking test 056 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 056 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 255.660172 -The maximum resident set size (KB) = 625336 +The total amount of wall time = 263.775703 +The maximum resident set size (KB) = 629468 Test 056 regional_2dwrtdecomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_wofs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_wofs_intel Checking test 057 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2618,14 +2618,14 @@ Checking test 057 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 325.149264 -The maximum resident set size (KB) = 1592100 +The total amount of wall time = 327.477351 +The maximum resident set size (KB) = 1596404 Test 057 regional_wofs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2672,14 +2672,14 @@ Checking test 058 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 353.806860 -The maximum resident set size (KB) = 931892 +The total amount of wall time = 353.907556 +The maximum resident set size (KB) = 927692 Test 058 rap_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_spp_sppt_shum_skeb_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2690,14 +2690,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 201.484714 -The maximum resident set size (KB) = 1122064 +The total amount of wall time = 204.679414 +The maximum resident set size (KB) = 1120172 Test 059 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2744,14 +2744,14 @@ Checking test 060 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 370.388988 -The maximum resident set size (KB) = 930700 +The total amount of wall time = 370.835558 +The maximum resident set size (KB) = 930656 Test 060 rap_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_restart_intel Checking test 061 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2790,14 +2790,14 @@ Checking test 061 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 181.019797 -The maximum resident set size (KB) = 807976 +The total amount of wall time = 183.259274 +The maximum resident set size (KB) = 806252 Test 061 rap_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_sfcdiff_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_sfcdiff_intel Checking test 062 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2844,14 +2844,14 @@ Checking test 062 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 357.438001 -The maximum resident set size (KB) = 931688 +The total amount of wall time = 354.358727 +The maximum resident set size (KB) = 931056 Test 062 rap_sfcdiff_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_sfcdiff_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_sfcdiff_decomp_intel Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2898,14 +2898,14 @@ Checking test 063 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 371.154718 -The maximum resident set size (KB) = 928804 +The total amount of wall time = 369.822324 +The maximum resident set size (KB) = 930924 Test 063 rap_sfcdiff_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_sfcdiff_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_sfcdiff_restart_intel Checking test 064 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2944,14 +2944,14 @@ Checking test 064 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 264.519495 -The maximum resident set size (KB) = 807332 +The total amount of wall time = 264.498561 +The maximum resident set size (KB) = 807432 Test 064 rap_sfcdiff_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_intel Checking test 065 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2998,14 +2998,14 @@ Checking test 065 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 180.652077 -The maximum resident set size (KB) = 925736 +The total amount of wall time = 181.612866 +The maximum resident set size (KB) = 923484 Test 065 hrrr_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_decomp_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_decomp_intel Checking test 066 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3052,14 +3052,14 @@ Checking test 066 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.917746 -The maximum resident set size (KB) = 926832 +The total amount of wall time = 187.396320 +The maximum resident set size (KB) = 927232 Test 066 hrrr_control_decomp_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_2threads_intel Checking test 067 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3106,28 +3106,28 @@ Checking test 067 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 156.784139 -The maximum resident set size (KB) = 1014320 +The total amount of wall time = 157.355250 +The maximum resident set size (KB) = 1012104 Test 067 hrrr_control_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_restart_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_restart_intel Checking test 068 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.589261 -The maximum resident set size (KB) = 758804 +The total amount of wall time = 95.622164 +The maximum resident set size (KB) = 761016 Test 068 hrrr_control_restart_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rrfs_v1beta_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rrfs_v1beta_intel Checking test 069 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3174,14 +3174,14 @@ Checking test 069 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 345.784357 -The maximum resident set size (KB) = 928920 +The total amount of wall time = 348.751275 +The maximum resident set size (KB) = 931444 Test 069 rrfs_v1beta_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rrfs_v1nssl_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rrfs_v1nssl_intel Checking test 070 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3196,14 +3196,14 @@ Checking test 070 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 434.027936 -The maximum resident set size (KB) = 1885080 +The total amount of wall time = 433.332311 +The maximum resident set size (KB) = 1885812 Test 070 rrfs_v1nssl_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rrfs_v1nssl_nohailnoccn_intel Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3218,14 +3218,14 @@ Checking test 071 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 415.548010 -The maximum resident set size (KB) = 1875460 +The total amount of wall time = 418.226595 +The maximum resident set size (KB) = 1874760 Test 071 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_csawmg_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_csawmg_intel Checking test 072 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3236,14 +3236,14 @@ Checking test 072 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 299.797654 -The maximum resident set size (KB) = 613208 +The total amount of wall time = 300.028208 +The maximum resident set size (KB) = 615504 Test 072 control_csawmg_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_csawmgt_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_csawmgt_intel Checking test 073 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3254,14 +3254,14 @@ Checking test 073 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 295.326799 -The maximum resident set size (KB) = 615660 +The total amount of wall time = 300.248853 +The maximum resident set size (KB) = 615064 Test 073 control_csawmgt_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_ras_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_ras_intel Checking test 074 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3272,26 +3272,26 @@ Checking test 074 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 160.340928 -The maximum resident set size (KB) = 579864 +The total amount of wall time = 160.688431 +The maximum resident set size (KB) = 581964 Test 074 control_ras_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_wam_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_wam_intel Checking test 075 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 107.217317 -The maximum resident set size (KB) = 304060 +The total amount of wall time = 105.671322 +The maximum resident set size (KB) = 307016 Test 075 control_wam_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_faster_intel Checking test 076 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3338,14 +3338,14 @@ Checking test 076 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 133.357964 -The maximum resident set size (KB) = 1520096 +The total amount of wall time = 135.052673 +The maximum resident set size (KB) = 1523180 Test 076 control_p8_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_control_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_control_faster_intel Checking test 077 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3356,14 +3356,14 @@ Checking test 077 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 244.980198 -The maximum resident set size (KB) = 623896 +The total amount of wall time = 244.003240 +The maximum resident set size (KB) = 625380 Test 077 regional_control_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_CubedSphereGrid_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_CubedSphereGrid_debug_intel Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3390,364 +3390,364 @@ Checking test 078 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 144.521572 -The maximum resident set size (KB) = 715980 +The total amount of wall time = 140.295683 +The maximum resident set size (KB) = 718588 Test 078 control_CubedSphereGrid_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_wrtGauss_netcdf_parallel_debug_intel Checking test 079 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 138.926871 -The maximum resident set size (KB) = 713988 +The total amount of wall time = 140.471731 +The maximum resident set size (KB) = 716328 Test 079 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_stochy_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_stochy_debug_intel Checking test 080 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.033293 -The maximum resident set size (KB) = 721092 +The total amount of wall time = 158.496601 +The maximum resident set size (KB) = 720212 Test 080 control_stochy_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_lndp_debug_intel Checking test 081 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.607001 -The maximum resident set size (KB) = 720628 +The total amount of wall time = 146.440026 +The maximum resident set size (KB) = 717052 Test 081 control_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_csawmg_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_csawmg_debug_intel Checking test 082 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 222.148143 -The maximum resident set size (KB) = 759464 +The total amount of wall time = 230.768076 +The maximum resident set size (KB) = 757392 Test 082 control_csawmg_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_csawmgt_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_csawmgt_debug_intel Checking test 083 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 218.548629 -The maximum resident set size (KB) = 759324 +The total amount of wall time = 218.996444 +The maximum resident set size (KB) = 758364 Test 083 control_csawmgt_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_ras_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_ras_debug_intel Checking test 084 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.424215 -The maximum resident set size (KB) = 728916 +The total amount of wall time = 147.751108 +The maximum resident set size (KB) = 729596 Test 084 control_ras_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_diag_debug_intel Checking test 085 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.984196 -The maximum resident set size (KB) = 771872 +The total amount of wall time = 145.824334 +The maximum resident set size (KB) = 774940 Test 085 control_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_debug_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_debug_p8_intel Checking test 086 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 148.002940 -The maximum resident set size (KB) = 1546236 +The total amount of wall time = 147.270484 +The maximum resident set size (KB) = 1550136 Test 086 control_debug_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_debug_intel Checking test 087 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 949.543974 -The maximum resident set size (KB) = 659884 +The total amount of wall time = 950.906509 +The maximum resident set size (KB) = 657984 Test 087 regional_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_debug_intel Checking test 088 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 274.402322 -The maximum resident set size (KB) = 1099688 +The total amount of wall time = 267.535496 +The maximum resident set size (KB) = 1100112 Test 088 rap_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_debug_intel Checking test 089 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.586678 -The maximum resident set size (KB) = 1097092 +The total amount of wall time = 264.339786 +The maximum resident set size (KB) = 1099660 Test 089 hrrr_control_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_gf_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_gf_debug_intel Checking test 090 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.867625 -The maximum resident set size (KB) = 1101340 +The total amount of wall time = 267.335963 +The maximum resident set size (KB) = 1101200 Test 090 hrrr_gf_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_c3_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_c3_debug_intel Checking test 091 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.743077 -The maximum resident set size (KB) = 1101700 +The total amount of wall time = 268.252668 +The maximum resident set size (KB) = 1098064 Test 091 hrrr_c3_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_unified_drag_suite_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_unified_drag_suite_debug_intel Checking test 092 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.218453 -The maximum resident set size (KB) = 1099552 +The total amount of wall time = 266.727920 +The maximum resident set size (KB) = 1101316 Test 092 rap_unified_drag_suite_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_diag_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_diag_debug_intel Checking test 093 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 279.409203 -The maximum resident set size (KB) = 1184760 +The total amount of wall time = 278.786035 +The maximum resident set size (KB) = 1181964 Test 093 rap_diag_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_cires_ugwp_debug_intel Checking test 094 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 275.959405 -The maximum resident set size (KB) = 1099328 +The total amount of wall time = 273.485843 +The maximum resident set size (KB) = 1103324 Test 094 rap_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_unified_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_unified_ugwp_debug_intel Checking test 095 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.972958 -The maximum resident set size (KB) = 1101896 +The total amount of wall time = 274.118685 +The maximum resident set size (KB) = 1102816 Test 095 rap_unified_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_lndp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_lndp_debug_intel Checking test 096 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 273.514165 -The maximum resident set size (KB) = 1097176 +The total amount of wall time = 268.988033 +The maximum resident set size (KB) = 1100772 Test 096 rap_lndp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_progcld_thompson_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_progcld_thompson_debug_intel Checking test 097 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.985828 -The maximum resident set size (KB) = 1099632 +The total amount of wall time = 266.936389 +The maximum resident set size (KB) = 1103536 Test 097 rap_progcld_thompson_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_noah_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_noah_debug_intel Checking test 098 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.743720 -The maximum resident set size (KB) = 1095724 +The total amount of wall time = 264.275091 +The maximum resident set size (KB) = 1098096 Test 098 rap_noah_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_sfcdiff_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_sfcdiff_debug_intel Checking test 099 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.552481 -The maximum resident set size (KB) = 1099972 +The total amount of wall time = 275.673750 +The maximum resident set size (KB) = 1100040 Test 099 rap_sfcdiff_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 438.912528 -The maximum resident set size (KB) = 1097388 +The total amount of wall time = 440.190929 +The maximum resident set size (KB) = 1098884 Test 100 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rrfs_v1beta_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rrfs_v1beta_debug_intel Checking test 101 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.304436 -The maximum resident set size (KB) = 1093744 +The total amount of wall time = 263.706056 +The maximum resident set size (KB) = 1093444 Test 101 rrfs_v1beta_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_clm_lake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_clm_lake_debug_intel Checking test 102 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 313.338469 -The maximum resident set size (KB) = 1101640 +The total amount of wall time = 319.022245 +The maximum resident set size (KB) = 1104640 Test 102 rap_clm_lake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_flake_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_flake_debug_intel Checking test 103 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.657127 -The maximum resident set size (KB) = 1102216 +The total amount of wall time = 266.339085 +The maximum resident set size (KB) = 1099684 Test 103 rap_flake_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/gnv1_c96_no_nest_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/gnv1_c96_no_nest_debug_intel Checking test 104 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3788,26 +3788,26 @@ Checking test 104 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 -The total amount of wall time = 475.690904 -The maximum resident set size (KB) = 1097108 +The total amount of wall time = 465.492741 +The maximum resident set size (KB) = 1104624 Test 104 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_wam_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_wam_debug_intel Checking test 105 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 265.504570 -The maximum resident set size (KB) = 345472 +The total amount of wall time = 265.670917 +The maximum resident set size (KB) = 349092 Test 105 control_wam_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3818,14 +3818,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 192.159736 -The maximum resident set size (KB) = 978792 +The total amount of wall time = 196.154700 +The maximum resident set size (KB) = 979232 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS Tries: 2 -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_dyn32_phy32_intel Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3872,14 +3872,14 @@ Checking test 107 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 298.139641 -The maximum resident set size (KB) = 807548 +The total amount of wall time = 304.582034 +The maximum resident set size (KB) = 811272 Test 107 rap_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_dyn32_phy32_intel Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3926,14 +3926,14 @@ Checking test 108 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 154.671165 -The maximum resident set size (KB) = 802332 +The total amount of wall time = 154.352967 +The maximum resident set size (KB) = 803632 Test 108 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_decomp_dyn32_phy32_intel Checking test 109 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3980,14 +3980,14 @@ Checking test 109 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 -The total amount of wall time = 162.016849 -The maximum resident set size (KB) = 802336 +The total amount of wall time = 163.073829 +The maximum resident set size (KB) = 802164 Test 109 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_restart_dyn32_phy32_intel Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4026,28 +4026,28 @@ Checking test 110 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 220.434623 -The maximum resident set size (KB) = 718484 +The total amount of wall time = 225.688804 +The maximum resident set size (KB) = 719260 Test 110 rap_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_restart_dyn32_phy32_intel Checking test 111 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 80.867216 -The maximum resident set size (KB) = 702228 +The total amount of wall time = 90.904910 +The maximum resident set size (KB) = 701024 Test 111 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/conus13km_control_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/conus13km_control_intel Checking test 112 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4063,40 +4063,40 @@ Checking test 112 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 100.379640 -The maximum resident set size (KB) = 1055204 +The total amount of wall time = 102.620201 +The maximum resident set size (KB) = 1056476 Test 112 conus13km_control_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/conus13km_2threads_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/conus13km_2threads_intel Checking test 113 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 53.341482 -The maximum resident set size (KB) = 1055272 +The total amount of wall time = 44.158343 +The maximum resident set size (KB) = 1061060 Test 113 conus13km_2threads_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/conus13km_restart_mismatch_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/conus13km_restart_mismatch_intel Checking test 114 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 64.479922 -The maximum resident set size (KB) = 976128 +The total amount of wall time = 57.001980 +The maximum resident set size (KB) = 974340 Test 114 conus13km_restart_mismatch_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_dyn64_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_dyn64_phy32_intel Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4143,42 +4143,42 @@ Checking test 115 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 205.892470 -The maximum resident set size (KB) = 831300 +The total amount of wall time = 210.682946 +The maximum resident set size (KB) = 825068 Test 115 rap_control_dyn64_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_debug_dyn32_phy32_intel Checking test 116 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 263.969758 -The maximum resident set size (KB) = 983604 +The total amount of wall time = 258.130988 +The maximum resident set size (KB) = 983508 Test 116 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hrrr_control_debug_dyn32_phy32_intel Checking test 117 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 257.297576 -The maximum resident set size (KB) = 976104 +The total amount of wall time = 252.791229 +The maximum resident set size (KB) = 977932 Test 117 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/conus13km_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/conus13km_debug_intel Checking test 118 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4192,67 +4192,67 @@ Checking test 118 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 789.073091 -The maximum resident set size (KB) = 1102344 +The total amount of wall time = 796.300015 +The maximum resident set size (KB) = 1107084 Test 118 conus13km_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/conus13km_radar_tten_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/conus13km_radar_tten_debug_intel Checking test 119 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 783.766070 -The maximum resident set size (KB) = 1173976 +The total amount of wall time = 797.852409 +The maximum resident set size (KB) = 1175280 Test 119 conus13km_radar_tten_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/rap_control_dyn64_phy32_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/rap_control_dyn64_phy32_debug_intel Checking test 120 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.259876 -The maximum resident set size (KB) = 1003732 +The total amount of wall time = 262.794494 +The maximum resident set size (KB) = 1002284 Test 120 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_atm_intel Checking test 121 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 253.210206 -The maximum resident set size (KB) = 639200 +The total amount of wall time = 256.557870 +The maximum resident set size (KB) = 636236 Test 121 hafs_regional_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_atm_thompson_gfdlsf_intel Checking test 122 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 283.614912 -The maximum resident set size (KB) = 994036 +The total amount of wall time = 286.948454 +The maximum resident set size (KB) = 989824 Test 122 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_atm_ocn_intel Checking test 123 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4261,14 +4261,14 @@ Checking test 123 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 -The total amount of wall time = 365.924521 -The maximum resident set size (KB) = 698004 +The total amount of wall time = 374.215267 +The maximum resident set size (KB) = 692148 Test 123 hafs_regional_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_atm_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_atm_wav_intel Checking test 124 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4277,14 +4277,14 @@ Checking test 124 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 -The total amount of wall time = 644.866419 -The maximum resident set size (KB) = 720456 +The total amount of wall time = 659.489406 +The maximum resident set size (KB) = 715160 Test 124 hafs_regional_atm_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_atm_ocn_wav_intel Checking test 125 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 125 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 -The total amount of wall time = 710.173795 -The maximum resident set size (KB) = 749844 +The total amount of wall time = 710.814355 +The maximum resident set size (KB) = 735612 Test 125 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_1nest_atm_intel Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4324,14 +4324,14 @@ Checking test 126 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 262.210082 -The maximum resident set size (KB) = 400964 +The total amount of wall time = 264.412626 +The maximum resident set size (KB) = 396304 Test 126 hafs_regional_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_telescopic_2nests_atm_intel Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4340,14 +4340,14 @@ Checking test 127 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 324.895546 -The maximum resident set size (KB) = 416620 +The total amount of wall time = 324.883299 +The maximum resident set size (KB) = 417660 Test 127 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_global_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_global_1nest_atm_intel Checking test 128 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4394,14 +4394,14 @@ Checking test 128 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 121.252748 -The maximum resident set size (KB) = 317604 +The total amount of wall time = 124.940203 +The maximum resident set size (KB) = 313692 Test 128 hafs_global_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_global_multiple_4nests_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_global_multiple_4nests_atm_intel Checking test 129 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4483,14 +4483,14 @@ Checking test 129 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 -The total amount of wall time = 360.236233 -The maximum resident set size (KB) = 382428 +The total amount of wall time = 358.026567 +The maximum resident set size (KB) = 382448 Test 129 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_specified_moving_1nest_atm_intel Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4499,14 +4499,14 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 179.313851 -The maximum resident set size (KB) = 436092 +The total amount of wall time = 181.509005 +The maximum resident set size (KB) = 433172 Test 130 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_storm_following_1nest_atm_intel Checking test 131 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4528,14 +4528,14 @@ Checking test 131 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 -The total amount of wall time = 165.909540 -The maximum resident set size (KB) = 438448 +The total amount of wall time = 167.870955 +The maximum resident set size (KB) = 434868 Test 131 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4544,28 +4544,28 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 208.381185 -The maximum resident set size (KB) = 510976 +The total amount of wall time = 212.236785 +The maximum resident set size (KB) = 506952 Test 132 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_global_storm_following_1nest_atm_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_global_storm_following_1nest_atm_intel Checking test 133 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 -The total amount of wall time = 57.501733 -The maximum resident set size (KB) = 350672 +The total amount of wall time = 59.139950 +The maximum resident set size (KB) = 345440 Test 133 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/gnv1_nested_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/gnv1_nested_intel Checking test 134 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4612,28 +4612,28 @@ Checking test 134 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 182.037763 -The maximum resident set size (KB) = 714200 +The total amount of wall time = 186.667881 +The maximum resident set size (KB) = 710508 Test 134 gnv1_nested_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 135 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 -The total amount of wall time = 721.074395 -The maximum resident set size (KB) = 528556 +The total amount of wall time = 707.081291 +The maximum resident set size (KB) = 532136 Test 135 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4644,14 +4644,14 @@ Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 409.424182 -The maximum resident set size (KB) = 552944 +The total amount of wall time = 412.977188 +The maximum resident set size (KB) = 551516 Test 136 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_docn_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_docn_intel Checking test 137 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4659,14 +4659,14 @@ Checking test 137 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 -The total amount of wall time = 317.276637 -The maximum resident set size (KB) = 672988 +The total amount of wall time = 317.908076 +The maximum resident set size (KB) = 673804 Test 137 hafs_regional_docn_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_docn_oisst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_docn_oisst_intel Checking test 138 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4674,131 +4674,131 @@ Checking test 138 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 -The total amount of wall time = 319.441033 -The maximum resident set size (KB) = 652740 +The total amount of wall time = 322.214315 +The maximum resident set size (KB) = 656304 Test 138 hafs_regional_docn_oisst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/hafs_regional_datm_cdeps_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/hafs_regional_datm_cdeps_intel Checking test 139 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 -The total amount of wall time = 958.936834 -The maximum resident set size (KB) = 831116 +The total amount of wall time = 962.919394 +The maximum resident set size (KB) = 892048 Test 139 hafs_regional_datm_cdeps_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_control_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_control_cfsr_intel Checking test 140 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 -The total amount of wall time = 140.162547 -The maximum resident set size (KB) = 735940 +The total amount of wall time = 139.401023 +The maximum resident set size (KB) = 746496 Test 140 datm_cdeps_control_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_restart_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_restart_cfsr_intel Checking test 141 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 -The total amount of wall time = 86.993633 -The maximum resident set size (KB) = 735460 +The total amount of wall time = 83.749446 +The maximum resident set size (KB) = 748500 Test 141 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_control_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_control_gefs_intel Checking test 142 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 -The total amount of wall time = 131.380182 -The maximum resident set size (KB) = 631104 +The total amount of wall time = 132.294159 +The maximum resident set size (KB) = 638348 Test 142 datm_cdeps_control_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_iau_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_iau_gefs_intel Checking test 143 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 -The total amount of wall time = 135.213751 -The maximum resident set size (KB) = 627544 +The total amount of wall time = 134.273283 +The maximum resident set size (KB) = 637396 Test 143 datm_cdeps_iau_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_stochy_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_stochy_gefs_intel Checking test 144 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 -The total amount of wall time = 133.826032 -The maximum resident set size (KB) = 628488 +The total amount of wall time = 133.948390 +The maximum resident set size (KB) = 635820 Test 144 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_ciceC_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_ciceC_cfsr_intel Checking test 145 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 -The total amount of wall time = 139.974909 -The maximum resident set size (KB) = 748676 +The total amount of wall time = 140.309328 +The maximum resident set size (KB) = 758984 Test 145 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_bulk_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_bulk_cfsr_intel Checking test 146 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 -The total amount of wall time = 140.284792 -The maximum resident set size (KB) = 735920 +The total amount of wall time = 140.367181 +The maximum resident set size (KB) = 758700 Test 146 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_bulk_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_bulk_gefs_intel Checking test 147 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 -The total amount of wall time = 131.888710 -The maximum resident set size (KB) = 629780 +The total amount of wall time = 130.594489 +The maximum resident set size (KB) = 638264 Test 147 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_mx025_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_mx025_cfsr_intel Checking test 148 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4807,14 +4807,14 @@ Checking test 148 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 -The total amount of wall time = 388.728054 -The maximum resident set size (KB) = 595340 +The total amount of wall time = 324.167723 +The maximum resident set size (KB) = 614536 Test 148 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_mx025_gefs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_mx025_gefs_intel Checking test 149 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4823,77 +4823,77 @@ Checking test 149 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 -The total amount of wall time = 394.802938 -The maximum resident set size (KB) = 581848 +The total amount of wall time = 323.239436 +The maximum resident set size (KB) = 596268 Test 149 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_multiple_files_cfsr_intel Checking test 150 datm_cdeps_multiple_files_cfsr_intel results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 139.435697 -The maximum resident set size (KB) = 749740 +The total amount of wall time = 139.592726 +The maximum resident set size (KB) = 760508 Test 150 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_3072x1536_cfsr_intel Checking test 151 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 -The total amount of wall time = 223.971542 -The maximum resident set size (KB) = 1993772 +The total amount of wall time = 225.480193 +The maximum resident set size (KB) = 2001936 Test 151 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_gfs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_gfs_intel Checking test 152 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 -The total amount of wall time = 226.151734 -The maximum resident set size (KB) = 1993816 +The total amount of wall time = 226.234252 +The maximum resident set size (KB) = 2001036 Test 152 datm_cdeps_gfs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_debug_cfsr_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_debug_cfsr_intel Checking test 153 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 -The total amount of wall time = 289.445250 -The maximum resident set size (KB) = 740556 +The total amount of wall time = 292.404733 +The maximum resident set size (KB) = 731904 Test 153 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_control_cfsr_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_control_cfsr_faster_intel Checking test 154 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 -The total amount of wall time = 141.714435 -The maximum resident set size (KB) = 749340 +The total amount of wall time = 138.947344 +The maximum resident set size (KB) = 759524 Test 154 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_lnd_gswp3_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_lnd_gswp3_intel Checking test 155 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 @@ -4902,14 +4902,14 @@ Checking test 155 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 -The total amount of wall time = 7.472820 -The maximum resident set size (KB) = 224420 +The total amount of wall time = 8.146693 +The maximum resident set size (KB) = 232496 Test 155 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/datm_cdeps_lnd_gswp3_rst_intel Checking test 156 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 @@ -4918,14 +4918,14 @@ Checking test 156 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 -The total amount of wall time = 12.112672 -The maximum resident set size (KB) = 232160 +The total amount of wall time = 12.361628 +The maximum resident set size (KB) = 232924 Test 156 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_p8_atmlnd_sbs_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_p8_atmlnd_sbs_intel Checking test 157 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5010,14 +5010,14 @@ Checking test 157 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 -The total amount of wall time = 178.103561 -The maximum resident set size (KB) = 1575064 +The total amount of wall time = 175.719577 +The maximum resident set size (KB) = 1572268 Test 157 control_p8_atmlnd_sbs_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/atmwav_control_noaero_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/atmwav_control_noaero_p8_intel Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5060,14 +5060,14 @@ Checking test 158 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 82.434909 -The maximum resident set size (KB) = 1555132 +The total amount of wall time = 81.557636 +The maximum resident set size (KB) = 1553560 Test 158 atmwav_control_noaero_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/control_atmwav_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/control_atmwav_intel Checking test 159 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5111,14 +5111,14 @@ Checking test 159 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 79.106925 -The maximum resident set size (KB) = 567512 +The total amount of wall time = 75.811033 +The maximum resident set size (KB) = 562872 Test 159 control_atmwav_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/atmaero_control_p8_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/atmaero_control_p8_intel Checking test 160 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5162,14 +5162,14 @@ Checking test 160 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 204.568736 -The maximum resident set size (KB) = 2867224 +The total amount of wall time = 205.817010 +The maximum resident set size (KB) = 2867448 Test 160 atmaero_control_p8_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/atmaero_control_p8_rad_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/atmaero_control_p8_rad_intel Checking test 161 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5213,14 +5213,14 @@ Checking test 161 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 244.816164 -The maximum resident set size (KB) = 2916240 +The total amount of wall time = 245.239466 +The maximum resident set size (KB) = 2920324 Test 161 atmaero_control_p8_rad_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/atmaero_control_p8_rad_micro_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/atmaero_control_p8_rad_micro_intel Checking test 162 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5264,14 +5264,14 @@ Checking test 162 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 -The total amount of wall time = 256.263081 -The maximum resident set size (KB) = 2931652 +The total amount of wall time = 256.983593 +The maximum resident set size (KB) = 2935988 Test 162 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_atmaq_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_atmaq_intel Checking test 163 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5287,14 +5287,14 @@ Checking test 163 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 745.333304 -The maximum resident set size (KB) = 4976408 +The total amount of wall time = 781.779272 +The maximum resident set size (KB) = 4993736 Test 163 regional_atmaq_intel PASS -baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_86282/regional_atmaq_faster_intel +baseline dir = /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /glade/derecho/scratch/jongkim/FV3_RT/rt_129472/regional_atmaq_faster_intel Checking test 164 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5310,12 +5310,12 @@ Checking test 164 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 962.959986 -The maximum resident set size (KB) = 4978168 +The total amount of wall time = 1108.109801 +The maximum resident set size (KB) = 4993272 Test 164 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 02 Jan 2024 06:45:16 PM MST -Elapsed time: 01h:11m:46s. Have a nice day! +Sat 13 Jan 2024 09:16:46 AM MST +Elapsed time: 01h:16m:54s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea-c5.log b/tests/logs/RegressionTests_gaea-c5.log index f5b2ce9fd0..dcf81f22d1 100644 --- a/tests/logs/RegressionTests_gaea-c5.log +++ b/tests/logs/RegressionTests_gaea-c5.log @@ -1,62 +1,62 @@ -Tue 02 Jan 2024 07:33:04 PM EST +Fri 12 Jan 2024 11:44:15 PM EST Start Regression test -Testing UFSWM Hash: 2d3e73ead5b39f3d3c343c73043a1184e76763dd +Testing UFSWM Hash: 124aa3fe17c40c1881507d6d9c23120c679ac6f9 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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) 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 atmaero_intel elapsed time 600 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 373 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 780 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 580 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 447 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_intel elapsed time 635 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_faster_dyn32_intel elapsed time 748 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 atml_intel elapsed time 617 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 620 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 659 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 568 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 300 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 382 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 383 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 158 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 662 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 415 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 848 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 674 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 364 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 674 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 552 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 361 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 554 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 590 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 711 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 712 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 813 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 527 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 1217 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_intel elapsed time 527 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 1046 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 815 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 478 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 773 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 478 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_intel elapsed time 1159 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 359 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 522 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 599 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 397 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 769 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 587 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 453 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_intel elapsed time 637 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_faster_dyn32_intel elapsed time 732 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 atml_intel elapsed time 607 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 640 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 625 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 570 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 367 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 624 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 623 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 152 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 654 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 425 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 844 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 676 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 363 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 701 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 543 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 365 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 573 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 591 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 719 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 723 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 858 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 537 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 1241 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_intel elapsed time 546 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 1051 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 841 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 516 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 809 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 479 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_intel elapsed time 1155 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 362 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 537 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,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 = 302.865258 - 0: The maximum resident set size (KB) = 3047068 + 0: The total amount of wall time = 306.156188 + 0: The maximum resident set size (KB) = 3046964 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,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 = 788.388516 - 0: The maximum resident set size (KB) = 1675924 + 0: The total amount of wall time = 795.380701 + 0: The maximum resident set size (KB) = 1677800 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_gfsv17_iau_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -208,14 +208,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 = 560.682025 - 0: The maximum resident set size (KB) = 934660 + 0: The total amount of wall time = 547.440129 + 0: The maximum resident set size (KB) = 933248 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -268,14 +268,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 = 401.265724 - 0: The maximum resident set size (KB) = 924460 + 0: The total amount of wall time = 401.281258 + 0: The maximum resident set size (KB) = 934556 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_mpi_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -339,14 +339,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 = 927.887898 - 0: The maximum resident set size (KB) = 1659504 + 0: The total amount of wall time = 861.985358 + 0: The maximum resident set size (KB) = 1654564 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_debug_gfsv17_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -398,14 +398,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 = 1237.227193 - 0: The maximum resident set size (KB) = 1688644 + 0: The total amount of wall time = 1250.691886 + 0: The maximum resident set size (KB) = 1663500 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -470,14 +470,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 = 358.237130 - 0: The maximum resident set size (KB) = 3073576 + 0: The total amount of wall time = 354.465347 + 0: The maximum resident set size (KB) = 3083684 Test 007 cpld_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -530,14 +530,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 = 207.453801 - 0: The maximum resident set size (KB) = 3137596 + 0: The total amount of wall time = 210.903305 + 0: The maximum resident set size (KB) = 3148452 Test 008 cpld_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -602,14 +602,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 = 353.104710 - 0: The maximum resident set size (KB) = 3098448 + 0: The total amount of wall time = 350.344800 + 0: The maximum resident set size (KB) = 3102768 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_qr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -662,14 +662,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 = 210.225867 - 0: The maximum resident set size (KB) = 3156256 + 0: The total amount of wall time = 214.083993 + 0: The maximum resident set size (KB) = 3160384 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -722,14 +722,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 = 325.389741 - 0: The maximum resident set size (KB) = 3384520 + 0: The total amount of wall time = 317.958235 + 0: The maximum resident set size (KB) = 3394124 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -782,14 +782,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 = 350.202424 - 0: The maximum resident set size (KB) = 3070604 + 0: The total amount of wall time = 346.585063 + 0: The maximum resident set size (KB) = 3080156 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_mpi_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -842,14 +842,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 = 297.360492 - 0: The maximum resident set size (KB) = 2999912 + 0: The total amount of wall time = 298.635161 + 0: The maximum resident set size (KB) = 3016008 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_ciceC_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -914,14 +914,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 = 352.998953 - 0: The maximum resident set size (KB) = 3073848 + 0: The total amount of wall time = 353.995856 + 0: The maximum resident set size (KB) = 3083092 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_c192_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -974,14 +974,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 = 593.687611 - 0: The maximum resident set size (KB) = 3255580 + 0: The total amount of wall time = 603.093590 + 0: The maximum resident set size (KB) = 3258660 Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_c192_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1034,14 +1034,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 = 413.380262 - 0: The maximum resident set size (KB) = 3588636 + 0: The total amount of wall time = 415.910374 + 0: The maximum resident set size (KB) = 3588008 Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1089,14 +1089,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 = 744.717101 - 0: The maximum resident set size (KB) = 4025348 + 0: The total amount of wall time = 769.575918 + 0: The maximum resident set size (KB) = 4017064 Test 017 cpld_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_bmark_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1144,14 +1144,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 = 532.714825 - 0: The maximum resident set size (KB) = 4326048 + 0: The total amount of wall time = 546.530584 + 0: The maximum resident set size (KB) = 4329572 Test 018 cpld_restart_bmark_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_s2sa_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1202,14 +1202,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 = 337.604312 - 0: The maximum resident set size (KB) = 3039356 + 0: The total amount of wall time = 339.477507 + 0: The maximum resident set size (KB) = 3036096 Test 019 cpld_s2sa_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1273,14 +1273,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 = 260.335932 - 0: The maximum resident set size (KB) = 1670352 + 0: The total amount of wall time = 259.722499 + 0: The maximum resident set size (KB) = 1665748 Test 020 cpld_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_nowave_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -1342,14 +1342,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 = 265.093935 - 0: The maximum resident set size (KB) = 1724528 + 0: The total amount of wall time = 264.846715 + 0: The maximum resident set size (KB) = 1717364 Test 021 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1402,14 +1402,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 = 488.084169 - 0: The maximum resident set size (KB) = 3087168 + 0: The total amount of wall time = 491.659192 + 0: The maximum resident set size (KB) = 3090480 Test 022 cpld_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_debug_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1461,14 +1461,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 = 323.753626 - 0: The maximum resident set size (KB) = 1670368 + 0: The total amount of wall time = 323.818149 + 0: The maximum resident set size (KB) = 1661520 Test 023 cpld_debug_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_noaero_p8_agrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -1530,14 +1530,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 = 268.098289 - 0: The maximum resident set size (KB) = 1722436 + 0: The total amount of wall time = 267.617359 + 0: The maximum resident set size (KB) = 1706868 Test 024 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1587,14 +1587,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 = 413.365268 - 0: The maximum resident set size (KB) = 2629728 + 0: The total amount of wall time = 413.271831 + 0: The maximum resident set size (KB) = 2635304 Test 025 cpld_control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1659,14 +1659,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 = 343.581303 - 0: The maximum resident set size (KB) = 3070736 + 0: The total amount of wall time = 348.337304 + 0: The maximum resident set size (KB) = 3083696 Test 026 cpld_control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_control_pdlib_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1730,14 +1730,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 = 896.973774 - 0: The maximum resident set size (KB) = 1690956 + 0: The total amount of wall time = 880.169889 + 0: The maximum resident set size (KB) = 1698808 Test 027 cpld_control_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_restart_pdlib_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1789,14 +1789,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 = 437.197056 - 0: The maximum resident set size (KB) = 961228 + 0: The total amount of wall time = 426.141150 + 0: The maximum resident set size (KB) = 994416 Test 028 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_mpi_pdlib_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1860,14 +1860,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 = 1056.138436 - 0: The maximum resident set size (KB) = 1653012 + 0: The total amount of wall time = 1018.796800 + 0: The maximum resident set size (KB) = 1651800 Test 029 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/cpld_debug_pdlib_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1919,14 +1919,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 = 1583.765819 - 0: The maximum resident set size (KB) = 1671668 + 0: The total amount of wall time = 1573.725901 + 0: The maximum resident set size (KB) = 1694472 Test 030 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_flake_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,14 +1937,14 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.590688 - 0: The maximum resident set size (KB) = 661900 + 0: The total amount of wall time = 197.006641 + 0: The maximum resident set size (KB) = 655520 Test 031 control_flake_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_CubedSphereGrid_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_CubedSphereGrid_intel Checking test 032 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1971,14 +1971,14 @@ Checking test 032 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 123.167333 - 0: The maximum resident set size (KB) = 603916 + 0: The total amount of wall time = 125.877322 + 0: The maximum resident set size (KB) = 604504 Test 032 control_CubedSphereGrid_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_CubedSphereGrid_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.413173 - 0: The maximum resident set size (KB) = 618080 + 0: The total amount of wall time = 133.968224 + 0: The maximum resident set size (KB) = 602856 Test 033 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_latlon_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2011,14 +2011,14 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.676463 - 0: The maximum resident set size (KB) = 613640 + 0: The total amount of wall time = 126.601651 + 0: The maximum resident set size (KB) = 605784 Test 034 control_latlon_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2029,14 +2029,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.560560 - 0: The maximum resident set size (KB) = 612908 + 0: The total amount of wall time = 129.775367 + 0: The maximum resident set size (KB) = 606196 Test 035 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_c48_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2075,14 +2075,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 = 337.019383 -0: The maximum resident set size (KB) = 724384 +0: The total amount of wall time = 333.988366 +0: The maximum resident set size (KB) = 719104 Test 036 control_c48_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_c192_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2093,14 +2093,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.138919 - 0: The maximum resident set size (KB) = 728232 + 0: The total amount of wall time = 501.929788 + 0: The maximum resident set size (KB) = 727908 Test 037 control_c192_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_c384_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2111,14 +2111,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1005.061931 - 0: The maximum resident set size (KB) = 1022268 + 0: The total amount of wall time = 997.744496 + 0: The maximum resident set size (KB) = 1012052 Test 038 control_c384_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_c384gdas_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2161,14 +2161,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 = 844.391600 - 0: The maximum resident set size (KB) = 1166664 + 0: The total amount of wall time = 880.636266 + 0: The maximum resident set size (KB) = 1166028 Test 039 control_c384gdas_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_stochy_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2179,28 +2179,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.317416 - 0: The maximum resident set size (KB) = 617812 + 0: The total amount of wall time = 85.309484 + 0: The maximum resident set size (KB) = 611840 Test 040 control_stochy_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_stochy_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 46.937574 - 0: The maximum resident set size (KB) = 417720 + 0: The total amount of wall time = 46.665257 + 0: The maximum resident set size (KB) = 419240 Test 041 control_stochy_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2211,14 +2211,14 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.972837 - 0: The maximum resident set size (KB) = 614192 + 0: The total amount of wall time = 78.504912 + 0: The maximum resident set size (KB) = 599180 Test 042 control_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_iovr4_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_iovr4_intel Checking test 043 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2233,14 +2233,14 @@ Checking test 043 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.840382 - 0: The maximum resident set size (KB) = 604680 + 0: The total amount of wall time = 127.830968 + 0: The maximum resident set size (KB) = 607284 Test 043 control_iovr4_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_iovr5_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_iovr5_intel Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2255,14 +2255,14 @@ Checking test 044 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.405912 - 0: The maximum resident set size (KB) = 613196 + 0: The total amount of wall time = 126.148595 + 0: The maximum resident set size (KB) = 605572 Test 044 control_iovr5_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_intel Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2309,14 +2309,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 = 158.722498 - 0: The maximum resident set size (KB) = 1585868 + 0: The total amount of wall time = 152.061144 + 0: The maximum resident set size (KB) = 1574588 Test 045 control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_ugwpv1_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_ugwpv1_intel Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2363,14 +2363,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 = 154.359089 - 0: The maximum resident set size (KB) = 1594864 + 0: The total amount of wall time = 152.154097 + 0: The maximum resident set size (KB) = 1588968 Test 046 control_p8_ugwpv1_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_restart_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_restart_p8_intel Checking test 047 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2409,14 +2409,14 @@ Checking test 047 control_restart_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 = 86.168536 - 0: The maximum resident set size (KB) = 775360 + 0: The total amount of wall time = 84.088257 + 0: The maximum resident set size (KB) = 775960 Test 047 control_restart_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_noqr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_noqr_p8_intel Checking test 048 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2463,14 +2463,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 = 155.281706 - 0: The maximum resident set size (KB) = 1577036 + 0: The total amount of wall time = 153.627990 + 0: The maximum resident set size (KB) = 1571984 Test 048 control_noqr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_restart_noqr_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_restart_noqr_p8_intel Checking test 049 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2509,14 +2509,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 = 82.743181 - 0: The maximum resident set size (KB) = 789088 + 0: The total amount of wall time = 82.296647 + 0: The maximum resident set size (KB) = 778184 Test 049 control_restart_noqr_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_decomp_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_decomp_p8_intel Checking test 050 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2559,14 +2559,14 @@ Checking test 050 control_decomp_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 = 159.861427 - 0: The maximum resident set size (KB) = 1580924 + 0: The total amount of wall time = 154.481415 + 0: The maximum resident set size (KB) = 1575712 Test 050 control_decomp_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_2threads_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_2threads_p8_intel Checking test 051 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2609,14 +2609,14 @@ Checking test 051 control_2threads_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 = 135.135448 - 0: The maximum resident set size (KB) = 1672960 + 0: The total amount of wall time = 136.110392 + 0: The maximum resident set size (KB) = 1678728 Test 051 control_2threads_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_lndp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_lndp_intel Checking test 052 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2635,14 +2635,14 @@ Checking test 052 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 284.877132 - 0: The maximum resident set size (KB) = 1586208 + 0: The total amount of wall time = 273.048879 + 0: The maximum resident set size (KB) = 1574100 Test 052 control_p8_lndp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_rrtmgp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_rrtmgp_intel Checking test 053 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2689,14 +2689,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 = 205.158283 - 0: The maximum resident set size (KB) = 1648016 + 0: The total amount of wall time = 203.966806 + 0: The maximum resident set size (KB) = 1639388 Test 053 control_p8_rrtmgp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_mynn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_mynn_intel Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2743,14 +2743,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 = 157.684725 - 0: The maximum resident set size (KB) = 1599900 + 0: The total amount of wall time = 156.528508 + 0: The maximum resident set size (KB) = 1582764 Test 054 control_p8_mynn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/merra2_thompson_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/merra2_thompson_intel Checking test 055 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2797,14 +2797,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 = 185.090057 - 0: The maximum resident set size (KB) = 1595312 + 0: The total amount of wall time = 185.245601 + 0: The maximum resident set size (KB) = 1583756 Test 055 merra2_thompson_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_control_intel Checking test 056 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2815,28 +2815,28 @@ Checking test 056 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.370500 - 0: The maximum resident set size (KB) = 605608 + 0: The total amount of wall time = 281.652251 + 0: The maximum resident set size (KB) = 602208 Test 056 regional_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 169.172465 - 0: The maximum resident set size (KB) = 780552 + 0: The total amount of wall time = 161.802009 + 0: The maximum resident set size (KB) = 774732 Test 057 regional_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_decomp_intel Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2847,14 +2847,14 @@ Checking test 058 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 310.525599 - 0: The maximum resident set size (KB) = 607736 + 0: The total amount of wall time = 291.819289 + 0: The maximum resident set size (KB) = 608324 Test 058 regional_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_2threads_intel Checking test 059 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2865,14 +2865,14 @@ Checking test 059 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 194.708620 - 0: The maximum resident set size (KB) = 752600 + 0: The total amount of wall time = 175.127363 + 0: The maximum resident set size (KB) = 748020 Test 059 regional_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_noquilt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_noquilt_intel Checking test 060 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2880,28 +2880,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 = 268.604370 - 0: The maximum resident set size (KB) = 1143264 + 0: The total amount of wall time = 266.502228 + 0: The maximum resident set size (KB) = 1146104 Test 060 regional_noquilt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_netcdf_parallel_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 295.817290 - 0: The maximum resident set size (KB) = 605104 + 0: The total amount of wall time = 277.712944 + 0: The maximum resident set size (KB) = 603652 Test 061 regional_netcdf_parallel_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_2dwrtdecomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_2dwrtdecomp_intel Checking test 062 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 062 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.712685 - 0: The maximum resident set size (KB) = 604644 + 0: The total amount of wall time = 282.257764 + 0: The maximum resident set size (KB) = 602960 Test 062 regional_2dwrtdecomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_wofs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_wofs_intel Checking test 063 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2930,14 +2930,14 @@ Checking test 063 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 368.509879 - 0: The maximum resident set size (KB) = 1574572 + 0: The total amount of wall time = 363.694922 + 0: The maximum resident set size (KB) = 1577128 Test 063 regional_wofs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_control_intel Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2984,14 +2984,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 = 381.362373 - 0: The maximum resident set size (KB) = 998676 + 0: The total amount of wall time = 374.329287 + 0: The maximum resident set size (KB) = 991512 Test 064 rap_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_spp_sppt_shum_skeb_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_spp_sppt_shum_skeb_intel Checking test 065 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3002,14 +3002,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 = 230.266698 - 0: The maximum resident set size (KB) = 1170432 + 0: The total amount of wall time = 231.224182 + 0: The maximum resident set size (KB) = 1168440 Test 065 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_decomp_intel Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3056,14 +3056,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 = 397.109570 - 0: The maximum resident set size (KB) = 992164 + 0: The total amount of wall time = 391.786297 + 0: The maximum resident set size (KB) = 993340 Test 066 rap_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_2threads_intel Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3110,14 +3110,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 = 348.510992 - 0: The maximum resident set size (KB) = 1085404 + 0: The total amount of wall time = 345.390039 + 0: The maximum resident set size (KB) = 1076948 Test 067 rap_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_restart_intel Checking test 068 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -3156,14 +3156,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 = 194.914372 - 0: The maximum resident set size (KB) = 866540 + 0: The total amount of wall time = 191.794893 + 0: The maximum resident set size (KB) = 862928 Test 068 rap_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_sfcdiff_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_sfcdiff_intel Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3210,14 +3210,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 = 381.466195 - 0: The maximum resident set size (KB) = 988096 + 0: The total amount of wall time = 382.706255 + 0: The maximum resident set size (KB) = 989728 Test 069 rap_sfcdiff_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_sfcdiff_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_sfcdiff_decomp_intel Checking test 070 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3264,14 +3264,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 = 388.898416 - 0: The maximum resident set size (KB) = 988064 + 0: The total amount of wall time = 390.063955 + 0: The maximum resident set size (KB) = 989532 Test 070 rap_sfcdiff_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_sfcdiff_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_sfcdiff_restart_intel Checking test 071 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3310,14 +3310,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 = 278.371287 - 0: The maximum resident set size (KB) = 866976 + 0: The total amount of wall time = 283.773197 + 0: The maximum resident set size (KB) = 863416 Test 071 rap_sfcdiff_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_intel Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3364,14 +3364,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 = 194.917431 - 0: The maximum resident set size (KB) = 993552 + 0: The total amount of wall time = 194.320308 + 0: The maximum resident set size (KB) = 986776 Test 072 hrrr_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_decomp_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_decomp_intel Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3418,14 +3418,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 = 201.704817 - 0: The maximum resident set size (KB) = 991576 + 0: The total amount of wall time = 202.220099 + 0: The maximum resident set size (KB) = 985244 Test 073 hrrr_control_decomp_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_2threads_intel Checking test 074 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3472,28 +3472,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 = 172.499077 - 0: The maximum resident set size (KB) = 1077544 + 0: The total amount of wall time = 175.260069 + 0: The maximum resident set size (KB) = 1074116 Test 074 hrrr_control_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_restart_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.439507 - 0: The maximum resident set size (KB) = 817552 + 0: The total amount of wall time = 101.449793 + 0: The maximum resident set size (KB) = 819608 Test 075 hrrr_control_restart_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rrfs_v1beta_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rrfs_v1beta_intel Checking test 076 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3540,14 +3540,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.002946 - 0: The maximum resident set size (KB) = 994304 + 0: The total amount of wall time = 377.610199 + 0: The maximum resident set size (KB) = 986980 Test 076 rrfs_v1beta_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rrfs_v1nssl_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rrfs_v1nssl_intel Checking test 077 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3562,14 +3562,14 @@ Checking test 077 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 459.466858 - 0: The maximum resident set size (KB) = 1950000 + 0: The total amount of wall time = 448.079481 + 0: The maximum resident set size (KB) = 1949792 Test 077 rrfs_v1nssl_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rrfs_v1nssl_nohailnoccn_intel Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3584,14 +3584,14 @@ Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 445.860642 - 0: The maximum resident set size (KB) = 1945572 + 0: The total amount of wall time = 436.748012 + 0: The maximum resident set size (KB) = 1931696 Test 078 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_csawmg_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_csawmg_intel Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3602,14 +3602,14 @@ Checking test 079 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 322.023282 - 0: The maximum resident set size (KB) = 675776 + 0: The total amount of wall time = 317.201120 + 0: The maximum resident set size (KB) = 680384 Test 079 control_csawmg_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_csawmgt_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_csawmgt_intel Checking test 080 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3620,14 +3620,14 @@ Checking test 080 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 320.114989 - 0: The maximum resident set size (KB) = 682448 + 0: The total amount of wall time = 319.497203 + 0: The maximum resident set size (KB) = 679904 Test 080 control_csawmgt_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_ras_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_ras_intel Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3638,26 +3638,26 @@ Checking test 081 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.010270 - 0: The maximum resident set size (KB) = 651460 + 0: The total amount of wall time = 173.992920 + 0: The maximum resident set size (KB) = 638064 Test 081 control_ras_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_wam_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 114.258519 - 0: The maximum resident set size (KB) = 364200 + 0: The total amount of wall time = 114.680177 + 0: The maximum resident set size (KB) = 360744 Test 082 control_wam_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_faster_intel Checking test 083 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3704,14 +3704,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 = 152.763737 - 0: The maximum resident set size (KB) = 1581068 + 0: The total amount of wall time = 148.627386 + 0: The maximum resident set size (KB) = 1570512 Test 083 control_p8_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_control_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_control_faster_intel Checking test 084 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3722,14 +3722,14 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 282.455905 - 0: The maximum resident set size (KB) = 597712 + 0: The total amount of wall time = 275.358774 + 0: The maximum resident set size (KB) = 596208 Test 084 regional_control_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_CubedSphereGrid_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_CubedSphereGrid_debug_intel Checking test 085 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3756,364 +3756,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 = 149.541570 - 0: The maximum resident set size (KB) = 757532 + 0: The total amount of wall time = 151.893771 + 0: The maximum resident set size (KB) = 756220 Test 085 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.288263 - 0: The maximum resident set size (KB) = 758680 + 0: The total amount of wall time = 150.359361 + 0: The maximum resident set size (KB) = 760168 Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_stochy_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 165.613787 - 0: The maximum resident set size (KB) = 765228 + 0: The total amount of wall time = 169.965930 + 0: The maximum resident set size (KB) = 750064 Test 087 control_stochy_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 150.448842 - 0: The maximum resident set size (KB) = 764788 + 0: The total amount of wall time = 152.672815 + 0: The maximum resident set size (KB) = 767896 Test 088 control_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_csawmg_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.298570 - 0: The maximum resident set size (KB) = 806532 + 0: The total amount of wall time = 235.157278 + 0: The maximum resident set size (KB) = 788548 Test 089 control_csawmg_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_csawmgt_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 231.422714 - 0: The maximum resident set size (KB) = 808332 + 0: The total amount of wall time = 229.951263 + 0: The maximum resident set size (KB) = 802060 Test 090 control_csawmgt_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_ras_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.425383 - 0: The maximum resident set size (KB) = 774540 + 0: The total amount of wall time = 151.917060 + 0: The maximum resident set size (KB) = 774976 Test 091 control_ras_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 152.206714 - 0: The maximum resident set size (KB) = 818376 + 0: The total amount of wall time = 152.507075 + 0: The maximum resident set size (KB) = 818748 Test 092 control_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_debug_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 156.397478 - 0: The maximum resident set size (KB) = 1598644 + 0: The total amount of wall time = 155.851719 + 0: The maximum resident set size (KB) = 1581196 Test 093 control_debug_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 992.522563 - 0: The maximum resident set size (KB) = 612936 + 0: The total amount of wall time = 970.191282 + 0: The maximum resident set size (KB) = 613692 Test 094 regional_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 275.748477 - 0: The maximum resident set size (KB) = 1146520 + 0: The total amount of wall time = 275.573789 + 0: The maximum resident set size (KB) = 1143940 Test 095 rap_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 273.315059 - 0: The maximum resident set size (KB) = 1147848 + 0: The total amount of wall time = 275.188618 + 0: The maximum resident set size (KB) = 1140132 Test 096 hrrr_control_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_gf_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 280.348912 - 0: The maximum resident set size (KB) = 1146088 + 0: The total amount of wall time = 280.403746 + 0: The maximum resident set size (KB) = 1141788 Test 097 hrrr_gf_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_c3_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 279.586223 - 0: The maximum resident set size (KB) = 1147384 + 0: The total amount of wall time = 279.218689 + 0: The maximum resident set size (KB) = 1128316 Test 098 hrrr_c3_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_unified_drag_suite_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 276.350715 - 0: The maximum resident set size (KB) = 1133176 + 0: The total amount of wall time = 281.069438 + 0: The maximum resident set size (KB) = 1130912 Test 099 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_diag_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.734788 - 0: The maximum resident set size (KB) = 1229840 + 0: The total amount of wall time = 285.068109 + 0: The maximum resident set size (KB) = 1225948 Test 100 rap_diag_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 285.116758 - 0: The maximum resident set size (KB) = 1132116 + 0: The total amount of wall time = 281.067546 + 0: The maximum resident set size (KB) = 1146476 Test 101 rap_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_unified_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 279.093094 - 0: The maximum resident set size (KB) = 1143820 + 0: The total amount of wall time = 288.665121 + 0: The maximum resident set size (KB) = 1143736 Test 102 rap_unified_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_lndp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 277.750050 - 0: The maximum resident set size (KB) = 1132324 + 0: The total amount of wall time = 275.988987 + 0: The maximum resident set size (KB) = 1142664 Test 103 rap_lndp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_progcld_thompson_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 274.115082 - 0: The maximum resident set size (KB) = 1133272 + 0: The total amount of wall time = 278.982340 + 0: The maximum resident set size (KB) = 1129420 Test 104 rap_progcld_thompson_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_noah_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 268.695276 - 0: The maximum resident set size (KB) = 1134892 + 0: The total amount of wall time = 272.881505 + 0: The maximum resident set size (KB) = 1143816 Test 105 rap_noah_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_sfcdiff_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.973433 - 0: The maximum resident set size (KB) = 1130788 + 0: The total amount of wall time = 280.429564 + 0: The maximum resident set size (KB) = 1144072 Test 106 rap_sfcdiff_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 446.945133 - 0: The maximum resident set size (KB) = 1143848 + 0: The total amount of wall time = 450.232464 + 0: The maximum resident set size (KB) = 1140368 Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rrfs_v1beta_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 270.796384 - 0: The maximum resident set size (KB) = 1141216 + 0: The total amount of wall time = 281.592210 + 0: The maximum resident set size (KB) = 1141388 Test 108 rrfs_v1beta_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_clm_lake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 332.674487 - 0: The maximum resident set size (KB) = 1134168 + 0: The total amount of wall time = 327.010152 + 0: The maximum resident set size (KB) = 1144800 Test 109 rap_clm_lake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_flake_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 275.363666 - 0: The maximum resident set size (KB) = 1133340 + 0: The total amount of wall time = 278.823738 + 0: The maximum resident set size (KB) = 1129140 Test 110 rap_flake_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/gnv1_c96_no_nest_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/gnv1_c96_no_nest_debug_intel Checking test 111 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4154,26 +4154,26 @@ 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 = 474.253138 - 0: The maximum resident set size (KB) = 1153652 + 0: The total amount of wall time = 481.064303 + 0: The maximum resident set size (KB) = 1135720 Test 111 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_wam_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 276.829981 - 0: The maximum resident set size (KB) = 378372 + 0: The total amount of wall time = 278.520626 + 0: The maximum resident set size (KB) = 377588 Test 112 control_wam_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -4184,14 +4184,14 @@ Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 214.620003 - 0: The maximum resident set size (KB) = 1036604 + 0: The total amount of wall time = 214.831453 + 0: The maximum resident set size (KB) = 1038444 Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_control_dyn32_phy32_intel Checking test 114 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4238,14 +4238,14 @@ Checking test 114 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 = 318.720818 - 0: The maximum resident set size (KB) = 881372 + 0: The total amount of wall time = 309.690827 + 0: The maximum resident set size (KB) = 875600 Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_dyn32_phy32_intel Checking test 115 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4292,14 +4292,14 @@ Checking test 115 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 = 165.917985 - 0: The maximum resident set size (KB) = 867808 + 0: The total amount of wall time = 163.802659 + 0: The maximum resident set size (KB) = 873172 Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_2threads_dyn32_phy32_intel Checking test 116 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4346,14 +4346,14 @@ Checking test 116 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 = 290.994743 - 0: The maximum resident set size (KB) = 941728 + 0: The total amount of wall time = 285.598374 + 0: The maximum resident set size (KB) = 931412 Test 116 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_2threads_dyn32_phy32_intel Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4400,14 +4400,14 @@ Checking test 117 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 = 149.619313 - 0: The maximum resident set size (KB) = 927876 + 0: The total amount of wall time = 148.093412 + 0: The maximum resident set size (KB) = 928000 Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hrrr_control_decomp_dyn32_phy32_intel Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4454,14 +4454,14 @@ Checking test 118 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 = 174.753506 - 0: The maximum resident set size (KB) = 876152 + 0: The total amount of wall time = 173.951736 + 0: The maximum resident set size (KB) = 871920 Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_restart_dyn32_phy32_intel Checking test 119 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4500,28 +4500,28 @@ Checking test 119 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 = 230.688755 - 0: The maximum resident set size (KB) = 772568 + 0: The total amount of wall time = 235.231029 + 0: The maximum resident set size (KB) = 775196 Test 119 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 87.842821 - 0: The maximum resident set size (KB) = 754068 + 0: The total amount of wall time = 87.915772 + 0: The maximum resident set size (KB) = 756716 Test 120 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_control_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/conus13km_control_intel Checking test 121 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4537,40 +4537,40 @@ Checking test 121 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 = 106.143392 - 0: The maximum resident set size (KB) = 1135300 + 0: The total amount of wall time = 107.270126 + 0: The maximum resident set size (KB) = 1136468 Test 121 conus13km_control_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 54.820780 - 0: The maximum resident set size (KB) = 1117632 + 0: The total amount of wall time = 53.531777 + 0: The maximum resident set size (KB) = 1116244 Test 122 conus13km_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_restart_mismatch_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 64.078028 - 0: The maximum resident set size (KB) = 1038512 + 0: The total amount of wall time = 62.582088 + 0: The maximum resident set size (KB) = 1039288 Test 123 conus13km_restart_mismatch_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_dyn64_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/rap_control_dyn64_phy32_intel Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4617,42 +4617,42 @@ Checking test 124 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 = 218.068104 - 0: The maximum resident set size (KB) = 889736 + 0: The total amount of wall time = 220.152598 + 0: The maximum resident set size (KB) = 896544 Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 268.210358 - 0: The maximum resident set size (KB) = 1021444 + 0: The total amount of wall time = 266.706031 + 0: The maximum resident set size (KB) = 1022880 Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 263.700336 - 0: The maximum resident set size (KB) = 1004624 + 0: The total amount of wall time = 268.471775 + 0: The maximum resident set size (KB) = 1016836 Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/conus13km_debug_intel Checking test 127 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4666,14 +4666,14 @@ Checking test 127 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 = 826.496689 - 0: The maximum resident set size (KB) = 1154424 + 0: The total amount of wall time = 812.741402 + 0: The maximum resident set size (KB) = 1117532 Test 127 conus13km_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_debug_qr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/conus13km_debug_qr_intel Checking test 128 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4687,81 +4687,81 @@ Checking test 128 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 = 856.489508 - 0: The maximum resident set size (KB) = 785628 + 0: The total amount of wall time = 829.346902 + 0: The maximum resident set size (KB) = 786180 Test 128 conus13km_debug_qr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_debug_2threads_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.092203 - 0: The maximum resident set size (KB) = 1142264 + 0: The total amount of wall time = 477.134776 + 0: The maximum resident set size (KB) = 1137608 Test 129 conus13km_debug_2threads_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/conus13km_radar_tten_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 821.701203 - 0: The maximum resident set size (KB) = 1224884 + 0: The total amount of wall time = 822.565335 + 0: The maximum resident set size (KB) = 1186852 Test 130 conus13km_radar_tten_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/rap_control_dyn64_phy32_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 274.466084 - 0: The maximum resident set size (KB) = 1047540 + 0: The total amount of wall time = 273.657067 + 0: The maximum resident set size (KB) = 1019776 Test 131 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 327.519139 - 0: The maximum resident set size (KB) = 686844 + 0: The total amount of wall time = 318.349052 + 0: The maximum resident set size (KB) = 698872 Test 132 hafs_regional_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 333.560072 - 0: The maximum resident set size (KB) = 1049300 + 0: The total amount of wall time = 320.069100 + 0: The maximum resident set size (KB) = 1054600 Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_atm_ocn_intel Checking test 134 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4770,14 +4770,14 @@ Checking test 134 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 = 461.084883 - 0: The maximum resident set size (KB) = 733620 + 0: The total amount of wall time = 455.434225 + 0: The maximum resident set size (KB) = 741908 Test 134 hafs_regional_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_atm_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_atm_wav_intel Checking test 135 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4786,14 +4786,14 @@ Checking test 135 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 = 728.160545 - 0: The maximum resident set size (KB) = 769916 + 0: The total amount of wall time = 704.965449 + 0: The maximum resident set size (KB) = 773820 Test 135 hafs_regional_atm_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_atm_ocn_wav_intel Checking test 136 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4804,14 +4804,14 @@ Checking test 136 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 = 784.060973 - 0: The maximum resident set size (KB) = 796380 + 0: The total amount of wall time = 773.775631 + 0: The maximum resident set size (KB) = 782716 Test 136 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_1nest_atm_intel Checking test 137 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4833,14 +4833,14 @@ Checking test 137 hafs_regional_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 = 335.184098 - 0: The maximum resident set size (KB) = 464204 + 0: The total amount of wall time = 331.413600 + 0: The maximum resident set size (KB) = 467236 Test 137 hafs_regional_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_telescopic_2nests_atm_intel Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4849,14 +4849,14 @@ Checking test 138 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.478068 - 0: The maximum resident set size (KB) = 482728 + 0: The total amount of wall time = 428.329918 + 0: The maximum resident set size (KB) = 491412 Test 138 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_global_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_global_1nest_atm_intel Checking test 139 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4903,14 +4903,14 @@ Checking test 139 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 = 197.753950 - 0: The maximum resident set size (KB) = 361672 + 0: The total amount of wall time = 200.633888 + 0: The maximum resident set size (KB) = 362260 Test 139 hafs_global_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_global_multiple_4nests_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_global_multiple_4nests_atm_intel Checking test 140 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4992,14 +4992,14 @@ Checking test 140 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 = 542.317722 - 0: The maximum resident set size (KB) = 448108 + 0: The total amount of wall time = 562.763276 + 0: The maximum resident set size (KB) = 437284 Test 140 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5008,14 +5008,14 @@ Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 243.056246 - 0: The maximum resident set size (KB) = 496312 + 0: The total amount of wall time = 229.988352 + 0: The maximum resident set size (KB) = 499432 Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5037,14 +5037,14 @@ Checking test 142 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 = 233.475463 - 0: The maximum resident set size (KB) = 490916 + 0: The total amount of wall time = 215.908937 + 0: The maximum resident set size (KB) = 497656 Test 142 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5053,28 +5053,28 @@ Checking test 143 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 = 302.972465 - 0: The maximum resident set size (KB) = 555756 + 0: The total amount of wall time = 293.377741 + 0: The maximum resident set size (KB) = 555492 Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 120.022814 - 0: The maximum resident set size (KB) = 394344 + 0: The total amount of wall time = 128.401788 + 0: The maximum resident set size (KB) = 392612 Test 144 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/gnv1_nested_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/gnv1_nested_intel Checking test 145 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5121,28 +5121,28 @@ Checking test 145 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 = 284.572730 - 0: The maximum resident set size (KB) = 752392 + 0: The total amount of wall time = 293.862095 + 0: The maximum resident set size (KB) = 758964 Test 145 gnv1_nested_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 794.744095 - 0: The maximum resident set size (KB) = 566040 + 0: The total amount of wall time = 764.721146 + 0: The maximum resident set size (KB) = 565776 Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5153,14 +5153,14 @@ Checking test 147 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 = 495.371851 - 0: The maximum resident set size (KB) = 596088 + 0: The total amount of wall time = 471.384089 + 0: The maximum resident set size (KB) = 598936 Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_docn_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_docn_intel Checking test 148 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5168,14 +5168,14 @@ Checking test 148 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 = 373.011631 - 0: The maximum resident set size (KB) = 717800 + 0: The total amount of wall time = 371.400885 + 0: The maximum resident set size (KB) = 731112 Test 148 hafs_regional_docn_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_docn_oisst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/hafs_regional_docn_oisst_intel Checking test 149 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -5183,131 +5183,131 @@ Checking test 149 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 = 372.759728 - 0: The maximum resident set size (KB) = 701348 + 0: The total amount of wall time = 399.748738 + 0: The maximum resident set size (KB) = 708012 Test 149 hafs_regional_docn_oisst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/hafs_regional_datm_cdeps_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 1202.021363 - 0: The maximum resident set size (KB) = 820684 + 0: The total amount of wall time = 1200.887161 + 0: The maximum resident set size (KB) = 881812 Test 150 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_control_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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.929495 - 0: The maximum resident set size (KB) = 736220 + 0: The total amount of wall time = 150.865152 + 0: The maximum resident set size (KB) = 744360 Test 151 datm_cdeps_control_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_restart_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 89.533852 - 0: The maximum resident set size (KB) = 723700 + 0: The total amount of wall time = 91.127567 + 0: The maximum resident set size (KB) = 732672 Test 152 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_control_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 141.946761 - 0: The maximum resident set size (KB) = 615340 + 0: The total amount of wall time = 141.394114 + 0: The maximum resident set size (KB) = 623312 Test 153 datm_cdeps_control_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_iau_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 142.236416 - 0: The maximum resident set size (KB) = 617236 + 0: The total amount of wall time = 141.202339 + 0: The maximum resident set size (KB) = 623236 Test 154 datm_cdeps_iau_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_stochy_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 142.576652 - 0: The maximum resident set size (KB) = 617660 + 0: The total amount of wall time = 142.803075 + 0: The maximum resident set size (KB) = 623220 Test 155 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_ciceC_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 148.358277 - 0: The maximum resident set size (KB) = 737104 + 0: The total amount of wall time = 148.363182 + 0: The maximum resident set size (KB) = 744836 Test 156 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_bulk_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 149.019594 - 0: The maximum resident set size (KB) = 724812 + 0: The total amount of wall time = 149.130439 + 0: The maximum resident set size (KB) = 744704 Test 157 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_bulk_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 139.733297 - 0: The maximum resident set size (KB) = 617096 + 0: The total amount of wall time = 139.116457 + 0: The maximum resident set size (KB) = 625500 Test 158 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_mx025_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5316,14 +5316,14 @@ Checking test 159 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 = 386.313495 - 0: The maximum resident set size (KB) = 672816 + 0: The total amount of wall time = 346.303026 + 0: The maximum resident set size (KB) = 683556 Test 159 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_mx025_gefs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5332,77 +5332,77 @@ Checking test 160 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 = 389.576012 - 0: The maximum resident set size (KB) = 656116 + 0: The total amount of wall time = 345.624625 + 0: The maximum resident set size (KB) = 665656 Test 160 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 150.909804 - 0: The maximum resident set size (KB) = 725132 + 0: The total amount of wall time = 149.754808 + 0: The maximum resident set size (KB) = 744268 Test 161 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 284.277350 - 0: The maximum resident set size (KB) = 1980176 + 0: The total amount of wall time = 277.267341 + 0: The maximum resident set size (KB) = 1986308 Test 162 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_gfs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 276.552734 - 0: The maximum resident set size (KB) = 1983752 + 0: The total amount of wall time = 276.149552 + 0: The maximum resident set size (KB) = 1984628 Test 163 datm_cdeps_gfs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_debug_cfsr_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 312.415614 - 0: The maximum resident set size (KB) = 725380 + 0: The total amount of wall time = 311.444758 + 0: The maximum resident set size (KB) = 732444 Test 164 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_control_cfsr_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 = 148.005519 - 0: The maximum resident set size (KB) = 726140 + 0: The total amount of wall time = 148.753443 + 0: The maximum resident set size (KB) = 744972 Test 165 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_lnd_gswp3_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5411,14 +5411,14 @@ Checking test 166 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 = 27.125886 - 0: The maximum resident set size (KB) = 312324 + 0: The total amount of wall time = 24.146745 + 0: The maximum resident set size (KB) = 304756 Test 166 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/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 @@ -5427,14 +5427,14 @@ Checking test 167 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 = 27.772052 - 0: The maximum resident set size (KB) = 312880 + 0: The total amount of wall time = 27.736507 + 0: The maximum resident set size (KB) = 304348 Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_p8_atmlnd_sbs_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_p8_atmlnd_sbs_intel Checking test 168 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5519,14 +5519,14 @@ Checking test 168 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 = 207.337986 - 0: The maximum resident set size (KB) = 1632364 + 0: The total amount of wall time = 208.947270 + 0: The maximum resident set size (KB) = 1644564 Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/atmwav_control_noaero_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/atmwav_control_noaero_p8_intel Checking test 169 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5569,14 +5569,14 @@ Checking test 169 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 = 92.988397 - 0: The maximum resident set size (KB) = 1615156 + 0: The total amount of wall time = 92.249929 + 0: The maximum resident set size (KB) = 1612224 Test 169 atmwav_control_noaero_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/control_atmwav_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/control_atmwav_intel Checking test 170 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5620,14 +5620,14 @@ Checking test 170 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 = 86.112247 - 0: The maximum resident set size (KB) = 629852 + 0: The total amount of wall time = 85.570057 + 0: The maximum resident set size (KB) = 621888 Test 170 control_atmwav_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/atmaero_control_p8_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/atmaero_control_p8_intel Checking test 171 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5671,14 +5671,14 @@ Checking test 171 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.595354 - 0: The maximum resident set size (KB) = 2919900 + 0: The total amount of wall time = 232.650508 + 0: The maximum resident set size (KB) = 2931208 Test 171 atmaero_control_p8_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/atmaero_control_p8_rad_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/atmaero_control_p8_rad_intel Checking test 172 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5722,14 +5722,14 @@ Checking test 172 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 = 263.591432 - 0: The maximum resident set size (KB) = 2978528 + 0: The total amount of wall time = 262.747898 + 0: The maximum resident set size (KB) = 2984856 Test 172 atmaero_control_p8_rad_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/atmaero_control_p8_rad_micro_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/atmaero_control_p8_rad_micro_intel Checking test 173 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5773,14 +5773,14 @@ Checking test 173 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 = 283.346836 - 0: The maximum resident set size (KB) = 2997216 + 0: The total amount of wall time = 277.748696 + 0: The maximum resident set size (KB) = 2994868 Test 173 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_atmaq_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_atmaq_intel Checking test 174 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5796,14 +5796,14 @@ Checking test 174 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 = 721.948388 - 0: The maximum resident set size (KB) = 4999404 + 0: The total amount of wall time = 653.091550 + 0: The maximum resident set size (KB) = 5001424 Test 174 regional_atmaq_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_atmaq_debug_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_atmaq_debug_intel Checking test 175 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5817,14 +5817,14 @@ Checking test 175 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 = 1239.110402 - 0: The maximum resident set size (KB) = 4410556 + 0: The total amount of wall time = 1260.725380 + 0: The maximum resident set size (KB) = 4427684 Test 175 regional_atmaq_debug_intel PASS -baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_153175/regional_atmaq_faster_intel +baseline dir = /lustre/f2/pdata/ncep/role.epic/C5/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /lustre/f2/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_45073/regional_atmaq_faster_intel Checking test 176 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5840,12 +5840,12 @@ Checking test 176 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 = 890.209265 - 0: The maximum resident set size (KB) = 5013100 + 0: The total amount of wall time = 1149.487293 + 0: The maximum resident set size (KB) = 5010284 Test 176 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Tue 02 Jan 2024 09:05:25 PM EST -Elapsed time: 01h:32m:26s. Have a nice day! +Sat 13 Jan 2024 02:03:47 AM EST +Elapsed time: 02h:19m:37s. Have a nice day! diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log deleted file mode 100644 index f5ffb656c6..0000000000 --- a/tests/logs/RegressionTests_gaea.log +++ /dev/null @@ -1,5619 +0,0 @@ -Thu 21 Dec 2023 07:03:39 PM EST -Start Regression test - -Testing UFSWM Hash: fd74f75ea992122cb03d2cded7e3a964502d6f40 -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) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 961eca9edff7d64281c21cbcf842c5e0aa6eea06 FV3 (remotes/origin/develop-smoke-dust) - 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) - 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 atmaero_intel elapsed time 694 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_faster_intel elapsed time 724 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 657 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 300 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_intel elapsed time 726 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_faster_dyn32_intel elapsed time 693 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 atml_intel elapsed time 689 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 725 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 707 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 659 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 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 271 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 247 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 71 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 747 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 225 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 813 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 760 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 224 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 799 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 651 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 210 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 666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 716 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 802 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 816 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 899 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 326 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 1052 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_intel elapsed time 324 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 1299 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 965 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 303 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 869 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 260 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_intel elapsed time 986 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 206 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 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_p8_mixedmode_intel -Checking test 001 cpld_control_p8_mixedmode_intel 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 - - 0: The total amount of wall time = 309.287638 - 0: The maximum resident set size (KB) = 1569608 - -Test 001 cpld_control_p8_mixedmode_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_gfsv17_intel -Checking test 002 cpld_control_gfsv17_intel 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 - - 0: The total amount of wall time = 913.270959 - 0: The maximum resident set size (KB) = 1487616 - -Test 002 cpld_control_gfsv17_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_gfsv17_iau_intel -Checking test 003 cpld_control_gfsv17_iau_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing 20210323.000000.out_pnt.ww3 .........OK - Comparing 20210323.000000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 607.958733 - 0: The maximum resident set size (KB) = 744656 - -Test 003 cpld_control_gfsv17_iau_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_restart_gfsv17_intel -Checking test 004 cpld_restart_gfsv17_intel results .... - Comparing sfcf024.tile1.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 - - 0: The total amount of wall time = 429.051035 - 0: The maximum resident set size (KB) = 734988 - -Test 004 cpld_restart_gfsv17_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_mpi_gfsv17_intel -Checking test 005 cpld_mpi_gfsv17_intel 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 - - 0: The total amount of wall time = 1041.305589 - 0: The maximum resident set size (KB) = 1466956 - -Test 005 cpld_mpi_gfsv17_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_debug_gfsv17_intel -Checking test 006 cpld_debug_gfsv17_intel 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 - - 0: The total amount of wall time = 1252.609196 - 0: The maximum resident set size (KB) = 1506304 - -Test 006 cpld_debug_gfsv17_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_p8_intel -Checking test 007 cpld_control_p8_intel 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 - - 0: The total amount of wall time = 344.223251 - 0: The maximum resident set size (KB) = 1603228 - -Test 007 cpld_control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_restart_p8_intel -Checking test 008 cpld_restart_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 - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 197.138690 - 0: The maximum resident set size (KB) = 1471932 - -Test 008 cpld_restart_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_qr_p8_intel -Checking test 009 cpld_control_qr_p8_intel 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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......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 - - 0: The total amount of wall time = 345.429703 - 0: The maximum resident set size (KB) = 1641340 - -Test 009 cpld_control_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_restart_qr_p8_intel -Checking test 010 cpld_restart_qr_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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......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 - - 0: The total amount of wall time = 198.324637 - 0: The maximum resident set size (KB) = 1490976 - -Test 010 cpld_restart_qr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_2threads_p8_intel -Checking test 011 cpld_2threads_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 - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 333.333836 - 0: The maximum resident set size (KB) = 1827664 - -Test 011 cpld_2threads_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_decomp_p8_intel -Checking test 012 cpld_decomp_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 - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 345.727704 - 0: The maximum resident set size (KB) = 1609840 - -Test 012 cpld_decomp_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_mpi_p8_intel -Checking test 013 cpld_mpi_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 - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 283.697695 - 0: The maximum resident set size (KB) = 1571000 - -Test 013 cpld_mpi_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_bmark_p8_intel -Checking test 014 cpld_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 615.983027 - 0: The maximum resident set size (KB) = 3072704 - -Test 014 cpld_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_restart_bmark_p8_intel -Checking test 015 cpld_restart_bmark_p8_intel results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing RESTART/20130401.060000.coupler.res .........OK - Comparing RESTART/20130401.060000.fv_core.res.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20130401.060000.MOM.res.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK - Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - Comparing 20130401.060000.out_pnt.ww3 .........OK - Comparing 20130401.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 363.844203 - 0: The maximum resident set size (KB) = 2996228 - -Test 015 cpld_restart_bmark_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_s2sa_p8_intel -Checking test 016 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 = 328.575009 - 0: The maximum resident set size (KB) = 1585968 - -Test 016 cpld_s2sa_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_noaero_p8_intel -Checking test 017 cpld_control_noaero_p8_intel 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 - - 0: The total amount of wall time = 263.359462 - 0: The maximum resident set size (KB) = 1485896 - -Test 017 cpld_control_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_nowave_noaero_p8_intel -Checking test 018 cpld_control_nowave_noaero_p8_intel 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 - - 0: The total amount of wall time = 263.603242 - 0: The maximum resident set size (KB) = 1520080 - -Test 018 cpld_control_nowave_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_debug_p8_intel -Checking test 019 cpld_debug_p8_intel 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 - - 0: The total amount of wall time = 497.885116 - 0: The maximum resident set size (KB) = 1623192 - -Test 019 cpld_debug_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_debug_noaero_p8_intel -Checking test 020 cpld_debug_noaero_p8_intel 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 - - 0: The total amount of wall time = 335.066281 - 0: The maximum resident set size (KB) = 1503948 - -Test 020 cpld_debug_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_noaero_p8_agrid_intel -Checking test 021 cpld_control_noaero_p8_agrid_intel 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 - - 0: The total amount of wall time = 262.599142 - 0: The maximum resident set size (KB) = 1521148 - -Test 021 cpld_control_noaero_p8_agrid_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_c48_intel -Checking test 022 cpld_control_c48_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 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 = 569.774007 - 0: The maximum resident set size (KB) = 2589628 - -Test 022 cpld_control_c48_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_p8_faster_intel -Checking test 023 cpld_control_p8_faster_intel 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 - - 0: The total amount of wall time = 333.838728 - 0: The maximum resident set size (KB) = 1615780 - -Test 023 cpld_control_p8_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_control_pdlib_p8_intel -Checking test 024 cpld_control_pdlib_p8_intel 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 - - 0: The total amount of wall time = 959.081917 - 0: The maximum resident set size (KB) = 1483956 - -Test 024 cpld_control_pdlib_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_restart_pdlib_p8_intel -Checking test 025 cpld_restart_pdlib_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 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 - - 0: The total amount of wall time = 448.651918 - 0: The maximum resident set size (KB) = 782212 - -Test 025 cpld_restart_pdlib_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_mpi_pdlib_p8_intel -Checking test 026 cpld_mpi_pdlib_p8_intel 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 - - 0: The total amount of wall time = 1115.640610 - 0: The maximum resident set size (KB) = 1479064 - -Test 026 cpld_mpi_pdlib_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/cpld_debug_pdlib_p8_intel -Checking test 027 cpld_debug_pdlib_p8_intel 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 - - 0: The total amount of wall time = 1564.905156 - 0: The maximum resident set size (KB) = 1520600 - -Test 027 cpld_debug_pdlib_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_flake_intel -Checking test 028 control_flake_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 207.237214 - 0: The maximum resident set size (KB) = 506968 - -Test 028 control_flake_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_CubedSphereGrid_intel -Checking test 029 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.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 atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.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 - - 0: The total amount of wall time = 136.855155 - 0: The maximum resident set size (KB) = 456308 - -Test 029 control_CubedSphereGrid_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_CubedSphereGrid_parallel_intel -Checking test 030 control_CubedSphereGrid_parallel_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing cubed_sphere_grid_sfcf000.nc .........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 GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 149.763590 - 0: The maximum resident set size (KB) = 459888 - -Test 030 control_CubedSphereGrid_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_latlon_intel -Checking test 031 control_latlon_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 139.977224 - 0: The maximum resident set size (KB) = 456064 - -Test 031 control_latlon_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_wrtGauss_netcdf_parallel_intel -Checking test 032 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.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 = 149.212114 - 0: The maximum resident set size (KB) = 455676 - -Test 032 control_wrtGauss_netcdf_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_c48_intel -Checking test 033 control_c48_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.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 - -0: The total amount of wall time = 419.145162 -0: The maximum resident set size (KB) = 687192 - -Test 033 control_c48_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_c192_intel -Checking test 034 control_c192_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 572.638579 - 0: The maximum resident set size (KB) = 575176 - -Test 034 control_c192_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_c384_intel -Checking test 035 control_c384_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 1128.432562 - 0: The maximum resident set size (KB) = 874544 - -Test 035 control_c384_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_c384gdas_intel -Checking test 036 control_c384gdas_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - 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 .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........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 ............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 .........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 ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......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.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 = 946.824890 - 0: The maximum resident set size (KB) = 998196 - -Test 036 control_c384gdas_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_stochy_intel -Checking test 037 control_stochy_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 91.283909 - 0: The maximum resident set size (KB) = 461388 - -Test 037 control_stochy_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_stochy_restart_intel -Checking test 038 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 = 50.979729 - 0: The maximum resident set size (KB) = 254408 - -Test 038 control_stochy_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_lndp_intel -Checking test 039 control_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 85.159284 - 0: The maximum resident set size (KB) = 461212 - -Test 039 control_lndp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_iovr4_intel -Checking test 040 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 139.750533 - 0: The maximum resident set size (KB) = 456056 - -Test 040 control_iovr4_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_iovr5_intel -Checking test 041 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 140.114647 - 0: The maximum resident set size (KB) = 455984 - -Test 041 control_iovr5_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_intel -Checking test 042 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 169.952802 - 0: The maximum resident set size (KB) = 1427276 - -Test 042 control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_ugwpv1_intel -Checking test 043 control_p8_ugwpv1_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 160.609847 - 0: The maximum resident set size (KB) = 1430200 - -Test 043 control_p8_ugwpv1_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_restart_p8_intel -Checking test 044 control_restart_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 88.530256 - 0: The maximum resident set size (KB) = 604432 - -Test 044 control_restart_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_noqr_p8_intel -Checking test 045 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 162.750797 - 0: The maximum resident set size (KB) = 1417696 - -Test 045 control_noqr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_restart_noqr_p8_intel -Checking test 046 control_restart_noqr_p8_intel results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 85.743428 - 0: The maximum resident set size (KB) = 622536 - -Test 046 control_restart_noqr_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_decomp_p8_intel -Checking test 047 control_decomp_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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.176437 - 0: The maximum resident set size (KB) = 1421156 - -Test 047 control_decomp_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_2threads_p8_intel -Checking test 048 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 155.539208 - 0: The maximum resident set size (KB) = 1513040 - -Test 048 control_2threads_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_lndp_intel -Checking test 049 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - - 0: The total amount of wall time = 306.076572 - 0: The maximum resident set size (KB) = 1427900 - -Test 049 control_p8_lndp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_rrtmgp_intel -Checking test 050 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 227.540176 - 0: The maximum resident set size (KB) = 1464292 - -Test 050 control_p8_rrtmgp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_mynn_intel -Checking test 051 control_p8_mynn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 169.349156 - 0: The maximum resident set size (KB) = 1432468 - -Test 051 control_p8_mynn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/merra2_thompson_intel -Checking test 052 merra2_thompson_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 199.229045 - 0: The maximum resident set size (KB) = 1431676 - -Test 052 merra2_thompson_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_control_intel -Checking test 053 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 347.535391 - 0: The maximum resident set size (KB) = 581000 - -Test 053 regional_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_restart_intel -Checking test 054 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 = 180.952021 - 0: The maximum resident set size (KB) = 753852 - -Test 054 regional_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_decomp_intel -Checking test 055 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 364.138005 - 0: The maximum resident set size (KB) = 584828 - -Test 055 regional_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_2threads_intel -Checking test 056 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 214.123046 - 0: The maximum resident set size (KB) = 592716 - -Test 056 regional_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_noquilt_intel -Checking test 057 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 = 319.875919 - 0: The maximum resident set size (KB) = 1075376 - -Test 057 regional_noquilt_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_netcdf_parallel_intel -Checking test 058 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - - 0: The total amount of wall time = 351.770654 - 0: The maximum resident set size (KB) = 580484 - -Test 058 regional_netcdf_parallel_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_2dwrtdecomp_intel -Checking test 059 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 352.464297 - 0: The maximum resident set size (KB) = 584516 - -Test 059 regional_2dwrtdecomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_wofs_intel -Checking test 060 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 447.146609 - 0: The maximum resident set size (KB) = 1550688 - -Test 060 regional_wofs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_intel -Checking test 061 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 455.299234 - 0: The maximum resident set size (KB) = 835304 - -Test 061 rap_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_spp_sppt_shum_skeb_intel -Checking test 062 regional_spp_sppt_shum_skeb_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 258.947222 - 0: The maximum resident set size (KB) = 1012356 - -Test 062 regional_spp_sppt_shum_skeb_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_decomp_intel -Checking test 063 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 470.007215 - 0: The maximum resident set size (KB) = 834636 - -Test 063 rap_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_2threads_intel -Checking test 064 rap_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 430.979378 - 0: The maximum resident set size (KB) = 922300 - -Test 064 rap_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_restart_intel -Checking test 065 rap_restart_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........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 - - 0: The total amount of wall time = 232.655227 - 0: The maximum resident set size (KB) = 706212 - -Test 065 rap_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_sfcdiff_intel -Checking test 066 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 453.932496 - 0: The maximum resident set size (KB) = 834044 - -Test 066 rap_sfcdiff_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_sfcdiff_decomp_intel -Checking test 067 rap_sfcdiff_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 469.138281 - 0: The maximum resident set size (KB) = 833516 - -Test 067 rap_sfcdiff_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_sfcdiff_restart_intel -Checking test 068 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 339.910006 - 0: The maximum resident set size (KB) = 704924 - -Test 068 rap_sfcdiff_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_intel -Checking test 069 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 228.203845 - 0: The maximum resident set size (KB) = 830424 - -Test 069 hrrr_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_decomp_intel -Checking test 070 hrrr_control_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 233.895727 - 0: The maximum resident set size (KB) = 830244 - -Test 070 hrrr_control_decomp_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_2threads_intel -Checking test 071 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 210.551882 - 0: The maximum resident set size (KB) = 913756 - -Test 071 hrrr_control_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_restart_intel -Checking test 072 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 = 119.117777 - 0: The maximum resident set size (KB) = 664792 - -Test 072 hrrr_control_restart_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rrfs_v1beta_intel -Checking test 073 rrfs_v1beta_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 447.032323 - 0: The maximum resident set size (KB) = 830096 - -Test 073 rrfs_v1beta_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rrfs_v1nssl_intel -Checking test 074 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 568.707710 - 0: The maximum resident set size (KB) = 1790408 - -Test 074 rrfs_v1nssl_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rrfs_v1nssl_nohailnoccn_intel -Checking test 075 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 544.845508 - 0: The maximum resident set size (KB) = 1785768 - -Test 075 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_csawmgt_intel -Checking test 076 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 361.505747 - 0: The maximum resident set size (KB) = 523888 - -Test 076 control_csawmgt_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_ras_intel -Checking test 077 control_ras_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 195.424128 - 0: The maximum resident set size (KB) = 494596 - -Test 077 control_ras_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_wam_intel -Checking test 078 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 122.788350 - 0: The maximum resident set size (KB) = 204812 - -Test 078 control_wam_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_faster_intel -Checking test 079 control_p8_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 - - 0: The total amount of wall time = 154.421088 - 0: The maximum resident set size (KB) = 1427528 - -Test 079 control_p8_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_control_faster_intel -Checking test 080 regional_control_faster_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 322.262653 - 0: The maximum resident set size (KB) = 580564 - -Test 080 regional_control_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_CubedSphereGrid_debug_intel -Checking test 081 control_CubedSphereGrid_debug_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - - 0: The total amount of wall time = 153.115722 - 0: The maximum resident set size (KB) = 619928 - -Test 081 control_CubedSphereGrid_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 082 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 = 152.484879 - 0: The maximum resident set size (KB) = 618924 - -Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_stochy_debug_intel -Checking test 083 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 = 171.812301 - 0: The maximum resident set size (KB) = 626496 - -Test 083 control_stochy_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_lndp_debug_intel -Checking test 084 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 = 154.434135 - 0: The maximum resident set size (KB) = 625684 - -Test 084 control_lndp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_csawmg_debug_intel -Checking test 085 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 = 244.872949 - 0: The maximum resident set size (KB) = 660292 - -Test 085 control_csawmg_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_csawmgt_debug_intel -Checking test 086 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 = 239.928976 - 0: The maximum resident set size (KB) = 660876 - -Test 086 control_csawmgt_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_ras_debug_intel -Checking test 087 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 = 155.855926 - 0: The maximum resident set size (KB) = 633472 - -Test 087 control_ras_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_diag_debug_intel -Checking test 088 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 = 157.856808 - 0: The maximum resident set size (KB) = 679344 - -Test 088 control_diag_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_debug_p8_intel -Checking test 089 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 = 163.184933 - 0: The maximum resident set size (KB) = 1445184 - -Test 089 control_debug_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_debug_intel -Checking test 090 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 = 1051.585475 - 0: The maximum resident set size (KB) = 605684 - -Test 090 regional_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_debug_intel -Checking test 091 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 = 284.306645 - 0: The maximum resident set size (KB) = 1001924 - -Test 091 rap_control_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_debug_intel -Checking test 092 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 = 277.370431 - 0: The maximum resident set size (KB) = 995812 - -Test 092 hrrr_control_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_gf_debug_intel -Checking test 093 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 = 282.511386 - 0: The maximum resident set size (KB) = 1000068 - -Test 093 hrrr_gf_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_c3_debug_intel -Checking test 094 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 = 283.757288 - 0: The maximum resident set size (KB) = 1000152 - -Test 094 hrrr_c3_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_unified_drag_suite_debug_intel -Checking test 095 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 = 284.827125 - 0: The maximum resident set size (KB) = 1002276 - -Test 095 rap_unified_drag_suite_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_diag_debug_intel -Checking test 096 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 = 298.360946 - 0: The maximum resident set size (KB) = 1083584 - -Test 096 rap_diag_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_cires_ugwp_debug_intel -Checking test 097 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 = 289.692735 - 0: The maximum resident set size (KB) = 1001716 - -Test 097 rap_cires_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_unified_ugwp_debug_intel -Checking test 098 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 = 290.375640 - 0: The maximum resident set size (KB) = 1000048 - -Test 098 rap_unified_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_lndp_debug_intel -Checking test 099 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 = 286.484147 - 0: The maximum resident set size (KB) = 999968 - -Test 099 rap_lndp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_progcld_thompson_debug_intel -Checking test 100 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 = 284.964508 - 0: The maximum resident set size (KB) = 1002000 - -Test 100 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_noah_debug_intel -Checking test 101 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 = 279.389483 - 0: The maximum resident set size (KB) = 998372 - -Test 101 rap_noah_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_sfcdiff_debug_intel -Checking test 102 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 = 284.137882 - 0: The maximum resident set size (KB) = 999480 - -Test 102 rap_sfcdiff_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_noah_sfcdiff_cires_ugwp_debug_intel -Checking test 103 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 = 469.143130 - 0: The maximum resident set size (KB) = 1000528 - -Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rrfs_v1beta_debug_intel -Checking test 104 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 = 280.336884 - 0: The maximum resident set size (KB) = 995312 - -Test 104 rrfs_v1beta_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_clm_lake_debug_intel -Checking test 105 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 = 345.972389 - 0: The maximum resident set size (KB) = 1002476 - -Test 105 rap_clm_lake_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_flake_debug_intel -Checking test 106 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 = 283.989447 - 0: The maximum resident set size (KB) = 1000204 - -Test 106 rap_flake_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/gnv1_c96_no_nest_debug_intel -Checking test 107 gnv1_c96_no_nest_debug_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/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - 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 = 496.388248 - 0: The maximum resident set size (KB) = 1003324 - -Test 107 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_wam_debug_intel -Checking test 108 control_wam_debug_intel results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 287.966703 - 0: The maximum resident set size (KB) = 235208 - -Test 108 control_wam_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 241.586494 - 0: The maximum resident set size (KB) = 874212 - -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_dyn32_phy32_intel -Checking test 110 rap_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 371.635152 - 0: The maximum resident set size (KB) = 715320 - -Test 110 rap_control_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_dyn32_phy32_intel -Checking test 111 hrrr_control_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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.131505 - 0: The maximum resident set size (KB) = 712932 - -Test 111 hrrr_control_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_2threads_dyn32_phy32_intel -Checking test 112 rap_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 350.422782 - 0: The maximum resident set size (KB) = 775020 - -Test 112 rap_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_2threads_dyn32_phy32_intel -Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 177.616035 - 0: The maximum resident set size (KB) = 768976 - -Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_decomp_dyn32_phy32_intel -Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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.305529 - 0: The maximum resident set size (KB) = 713060 - -Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_restart_dyn32_phy32_intel -Checking test 115 rap_restart_dyn32_phy32_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........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 - - 0: The total amount of wall time = 279.306792 - 0: The maximum resident set size (KB) = 609660 - -Test 115 rap_restart_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_restart_dyn32_phy32_intel -Checking test 116 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 = 101.645742 - 0: The maximum resident set size (KB) = 598296 - -Test 116 hrrr_control_restart_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_control_intel -Checking test 117 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 = 119.820887 - 0: The maximum resident set size (KB) = 932732 - -Test 117 conus13km_control_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_2threads_intel -Checking test 118 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 = 45.996955 - 0: The maximum resident set size (KB) = 942460 - -Test 118 conus13km_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_restart_mismatch_intel -Checking test 119 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 65.810348 - 0: The maximum resident set size (KB) = 884524 - -Test 119 conus13km_restart_mismatch_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_dyn64_phy32_intel -Checking test 120 rap_control_dyn64_phy32_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - 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.591639 - 0: The maximum resident set size (KB) = 738308 - -Test 120 rap_control_dyn64_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_debug_dyn32_phy32_intel -Checking test 121 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 = 280.775190 - 0: The maximum resident set size (KB) = 880320 - -Test 121 rap_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hrrr_control_debug_dyn32_phy32_intel -Checking test 122 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 = 274.435219 - 0: The maximum resident set size (KB) = 877324 - -Test 122 hrrr_control_debug_dyn32_phy32_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_debug_intel -Checking test 123 conus13km_debug_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.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 = 860.338512 - 0: The maximum resident set size (KB) = 965052 - -Test 123 conus13km_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_debug_qr_intel -Checking test 124 conus13km_debug_qr_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.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 ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - 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 = 890.050627 - 0: The maximum resident set size (KB) = 636584 - -Test 124 conus13km_debug_qr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_debug_2threads_intel -Checking test 125 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 = 486.474653 - 0: The maximum resident set size (KB) = 976196 - -Test 125 conus13km_debug_2threads_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/conus13km_radar_tten_debug_intel -Checking test 126 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 = 861.017936 - 0: The maximum resident set size (KB) = 1036364 - -Test 126 conus13km_radar_tten_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/rap_control_dyn64_phy32_debug_intel -Checking test 127 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.870418 - 0: The maximum resident set size (KB) = 902108 - -Test 127 rap_control_dyn64_phy32_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_atm_intel -Checking test 128 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - - 0: The total amount of wall time = 317.267989 - 0: The maximum resident set size (KB) = 510800 - -Test 128 hafs_regional_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - - 0: The total amount of wall time = 292.680858 - 0: The maximum resident set size (KB) = 861448 - -Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_atm_ocn_intel -Checking test 130 hafs_regional_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - - 0: The total amount of wall time = 446.586192 - 0: The maximum resident set size (KB) = 538132 - -Test 130 hafs_regional_atm_ocn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_atm_wav_intel -Checking test 131 hafs_regional_atm_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - 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 = 943.150847 - 0: The maximum resident set size (KB) = 573296 - -Test 131 hafs_regional_atm_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_atm_ocn_wav_intel -Checking test 132 hafs_regional_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - 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 = 1047.992386 - 0: The maximum resident set size (KB) = 591852 - -Test 132 hafs_regional_atm_ocn_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_1nest_atm_intel -Checking test 133 hafs_regional_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......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 = 363.526738 - 0: The maximum resident set size (KB) = 299808 - -Test 133 hafs_regional_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_telescopic_2nests_atm_intel -Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - - 0: The total amount of wall time = 457.871049 - 0: The maximum resident set size (KB) = 316980 - -Test 134 hafs_regional_telescopic_2nests_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_global_1nest_atm_intel -Checking test 135 hafs_global_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........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 .........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.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_tracer.res.nest02.tile7.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.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 .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......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 - 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.tile1.nc ............ALT CHECK......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 .........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 = 207.403586 - 0: The maximum resident set size (KB) = 213672 - -Test 135 hafs_global_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_global_multiple_4nests_atm_intel -Checking test 136 hafs_global_multiple_4nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - 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.tile2.nc .........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 .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc ............ALT CHECK......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.tile4.nc ............ALT CHECK......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_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 - 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......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.nest03.tile8.nc .........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 - 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.sfc_data.nest04.tile9.nc .........OK - Comparing RESTART/20200825.180000.sfc_data.nest05.tile10.nc ............ALT CHECK......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 .........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 .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest03.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - 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 = 538.382013 - 0: The maximum resident set size (KB) = 256096 - -Test 136 hafs_global_multiple_4nests_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_specified_moving_1nest_atm_intel -Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - - 0: The total amount of wall time = 245.035242 - 0: The maximum resident set size (KB) = 336476 - -Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_storm_following_1nest_atm_intel -Checking test 138 hafs_regional_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 - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......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 = 230.977565 - 0: The maximum resident set size (KB) = 331172 - -Test 138 hafs_regional_storm_following_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_storm_following_1nest_atm_ocn_intel -Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - - 0: The total amount of wall time = 293.810876 - 0: The maximum resident set size (KB) = 366192 - -Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_global_storm_following_1nest_atm_intel -Checking test 140 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 = 110.072254 - 0: The maximum resident set size (KB) = 247432 - -Test 140 hafs_global_storm_following_1nest_atm_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/gnv1_nested_intel -Checking test 141 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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.tile4.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile5.nc .........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 .........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 ............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 ............ALT CHECK......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.phy_data.nest02.tile7.nc ............ALT CHECK......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 - 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.tile1.nc ............ALT CHECK......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 .........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 = 306.170203 - 0: The maximum resident set size (KB) = 604620 - -Test 141 gnv1_nested_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -Checking test 142 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 = 809.447805 - 0: The maximum resident set size (KB) = 382688 - -Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - - 0: The total amount of wall time = 680.442926 - 0: The maximum resident set size (KB) = 409692 - -Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_docn_intel -Checking test 144 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 = 396.507995 - 0: The maximum resident set size (KB) = 538716 - -Test 144 hafs_regional_docn_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_docn_oisst_intel -Checking test 145 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 = 399.952280 - 0: The maximum resident set size (KB) = 525264 - -Test 145 hafs_regional_docn_oisst_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/hafs_regional_datm_cdeps_intel -Checking test 146 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 = 1191.833388 - 0: The maximum resident set size (KB) = 847272 - -Test 146 hafs_regional_datm_cdeps_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_control_cfsr_intel -Checking test 147 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 = 165.843125 - 0: The maximum resident set size (KB) = 729964 - -Test 147 datm_cdeps_control_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_restart_cfsr_intel -Checking test 148 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 = 96.771424 - 0: The maximum resident set size (KB) = 719164 - -Test 148 datm_cdeps_restart_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_control_gefs_intel -Checking test 149 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 = 158.381751 - 0: The maximum resident set size (KB) = 610160 - -Test 149 datm_cdeps_control_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_iau_gefs_intel -Checking test 150 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 = 157.585886 - 0: The maximum resident set size (KB) = 612728 - -Test 150 datm_cdeps_iau_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_stochy_gefs_intel -Checking test 151 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 = 158.037522 - 0: The maximum resident set size (KB) = 611224 - -Test 151 datm_cdeps_stochy_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_ciceC_cfsr_intel -Checking test 152 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 = 163.196982 - 0: The maximum resident set size (KB) = 730116 - -Test 152 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_bulk_cfsr_intel -Checking test 153 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 = 163.136816 - 0: The maximum resident set size (KB) = 730016 - -Test 153 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_bulk_gefs_intel -Checking test 154 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 = 155.169848 - 0: The maximum resident set size (KB) = 612748 - -Test 154 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_mx025_cfsr_intel -Checking test 155 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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 392.767184 - 0: The maximum resident set size (KB) = 514256 - -Test 155 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_mx025_gefs_intel -Checking test 156 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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 380.740310 - 0: The maximum resident set size (KB) = 494468 - -Test 156 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_multiple_files_cfsr_intel -Checking test 157 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 = 165.038326 - 0: The maximum resident set size (KB) = 712628 - -Test 157 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_3072x1536_cfsr_intel -Checking test 158 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 = 268.873701 - 0: The maximum resident set size (KB) = 1959552 - -Test 158 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_gfs_intel -Checking test 159 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 = 264.896690 - 0: The maximum resident set size (KB) = 1959588 - -Test 159 datm_cdeps_gfs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_debug_cfsr_intel -Checking test 160 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 = 369.176051 - 0: The maximum resident set size (KB) = 719380 - -Test 160 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_control_cfsr_faster_intel -Checking test 161 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 = 162.693561 - 0: The maximum resident set size (KB) = 718468 - -Test 161 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_lnd_gswp3_intel -Checking test 162 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 - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - 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.302590 - 0: The maximum resident set size (KB) = 117244 - -Test 162 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/datm_cdeps_lnd_gswp3_rst_intel -Checking test 163 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 - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - 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.472319 - 0: The maximum resident set size (KB) = 115280 - -Test 163 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_p8_atmlnd_sbs_intel -Checking test 164 control_p8_atmlnd_sbs_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - 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 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 atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.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 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 ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - 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.199923 - 0: The maximum resident set size (KB) = 1466488 - -Test 164 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/atmwav_control_noaero_p8_intel -Checking test 165 atmwav_control_noaero_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - - 0: The total amount of wall time = 91.227831 - 0: The maximum resident set size (KB) = 1446652 - -Test 165 atmwav_control_noaero_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/control_atmwav_intel -Checking test 166 control_atmwav_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - - 0: The total amount of wall time = 91.537894 - 0: The maximum resident set size (KB) = 469864 - -Test 166 control_atmwav_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/atmaero_control_p8_intel -Checking test 167 atmaero_control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.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 - - 0: The total amount of wall time = 231.441520 - 0: The maximum resident set size (KB) = 1506404 - -Test 167 atmaero_control_p8_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/atmaero_control_p8_rad_intel -Checking test 168 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.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 - - 0: The total amount of wall time = 281.688844 - 0: The maximum resident set size (KB) = 1522452 - -Test 168 atmaero_control_p8_rad_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/atmaero_control_p8_rad_micro_intel -Checking test 169 atmaero_control_p8_rad_micro_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.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 - - 0: The total amount of wall time = 298.745973 - 0: The maximum resident set size (KB) = 1531704 - -Test 169 atmaero_control_p8_rad_micro_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_atmaq_intel -Checking test 170 regional_atmaq_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - 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 ............ALT CHECK......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.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK - - 0: The total amount of wall time = 699.582754 - 0: The maximum resident set size (KB) = 4686464 - -Test 170 regional_atmaq_intel PASS - - -baseline dir = /lustre/f2/pdata/ncep/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /lustre/f2/pdata/ncep/Jong.Kim/c4/c4/PTMP/Jong.Kim/FV3_RT/rt_30915/regional_atmaq_faster_intel -Checking test 171 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - 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 ............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.sfc_data.nc .........OK - - 0: The total amount of wall time = 984.315339 - 0: The maximum resident set size (KB) = 4688680 - -Test 171 regional_atmaq_faster_intel PASS Tries: 2 - - -REGRESSION TEST WAS SUCCESSFUL -Thu 21 Dec 2023 08:40:27 PM EST -Elapsed time: 01h:36m:58s. Have a nice day! diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 6268e96f83..a2505fd3f0 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,3 +1,4 @@ +<<<<<<< HEAD Thu Jan 4 19:05:09 UTC 2024 Start Regression test @@ -9,11 +10,25 @@ Testing With Submodule Hashes: f8f7ba76ac8b0687695c2a76deaf45ab5c2e39f3 CMEPS-interface/CMEPS (cmeps_v0.4.1-1408-gf8f7ba7) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 49364d19d81cab5317c77828ed67d33ce633fe08 FV3 (heads/sfc_coldstart) +======= +Fri Jan 12 16:12:45 UTC 2024 +Start Regression test + +Testing UFSWM Hash: 54aafed124370a502777db4cf1945b19d31fff5a +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-1408-gf8f7ba7) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 58757d8b32bd1f76189567ef99284d96003c14e0 FV3 (remotes/origin/mr2_peq) +>>>>>>> upstream/develop 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) +<<<<<<< HEAD 37e740526993fd162d092266ced19c625fbc3d8e stochastic_physics (ufs-v2.0.0-193-g37e7405) Compile atm_debug_dyn32_intel elapsed time 262 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 192 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug @@ -71,6 +86,65 @@ Compile wam_intel elapsed time 549 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_ baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_p8_mixedmode_intel +======= + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 259 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 585 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 201 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_debug_gnu elapsed time 195 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atm_dyn64_phy32_gnu elapsed time 292 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_faster_dyn32_intel elapsed time 556 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 206 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 584 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 617 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atml_intel elapsed time 566 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 597 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 583 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 556 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 190 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 350 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_gnu elapsed time 802 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 362 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 86 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 654 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 210 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 649 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 671 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 184 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 205 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 516 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 184 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 530 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 548 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 638 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 821 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 636 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 241 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 693 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 128 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 824 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 875 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 734 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 276 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 979 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 140 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 267 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 963 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 847 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 736 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_gnu elapsed time 102 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 190 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 500 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_p8_mixedmode_intel +>>>>>>> upstream/develop Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -135,14 +209,24 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 305.635575 0: The maximum resident set size (KB) = 3154260 +======= + 0: The total amount of wall time = 313.948086 + 0: The maximum resident set size (KB) = 3176556 +>>>>>>> upstream/develop Test 001 cpld_control_p8_mixedmode_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_gfsv17_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_gfsv17_intel +>>>>>>> upstream/develop Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -206,14 +290,24 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 968.756844 0: The maximum resident set size (KB) = 1731636 +======= + 0: The total amount of wall time = 949.965904 + 0: The maximum resident set size (KB) = 1727732 +>>>>>>> upstream/develop Test 002 cpld_control_gfsv17_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_gfsv17_iau_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_gfsv17_iau_intel +>>>>>>> upstream/develop Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -222,14 +316,24 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 625.664476 0: The maximum resident set size (KB) = 1095352 +======= + 0: The total amount of wall time = 619.793912 + 0: The maximum resident set size (KB) = 1125576 +>>>>>>> upstream/develop Test 003 cpld_control_gfsv17_iau_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_gfsv17_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_gfsv17_intel +>>>>>>> upstream/develop Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -282,14 +386,24 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 444.678639 0: The maximum resident set size (KB) = 1092700 +======= + 0: The total amount of wall time = 446.747135 + 0: The maximum resident set size (KB) = 1113388 +>>>>>>> upstream/develop Test 004 cpld_restart_gfsv17_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_mpi_gfsv17_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_mpi_gfsv17_intel +>>>>>>> upstream/develop Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -353,14 +467,24 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1060.370729 0: The maximum resident set size (KB) = 1610380 +======= + 0: The total amount of wall time = 1068.183753 + 0: The maximum resident set size (KB) = 1628936 +>>>>>>> upstream/develop Test 005 cpld_mpi_gfsv17_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_gfsv17_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_gfsv17_intel +>>>>>>> upstream/develop Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -412,14 +536,24 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1173.570753 0: The maximum resident set size (KB) = 1675720 +======= + 0: The total amount of wall time = 1135.973213 + 0: The maximum resident set size (KB) = 1681756 +>>>>>>> upstream/develop Test 006 cpld_debug_gfsv17_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_p8_intel +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_p8_intel +>>>>>>> upstream/develop Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -484,12 +618,18 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 335.908810 0: The maximum resident set size (KB) = 3180736 +======= + 0: The total amount of wall time = 331.936750 + 0: The maximum resident set size (KB) = 3213000 +>>>>>>> upstream/develop Test 007 cpld_control_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8.v2.sfc_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_p8.v2.sfc_intel Checking test 008 cpld_control_p8.v2.sfc_intel results .... @@ -565,6 +705,11 @@ Test 008 cpld_control_p8.v2.sfc_intel FAIL Tries: 2 baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_p8_intel Checking test 009 cpld_restart_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_p8_intel +Checking test 008 cpld_restart_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -616,15 +761,26 @@ Checking test 009 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 191.257381 0: The maximum resident set size (KB) = 3210620 +======= + 0: The total amount of wall time = 187.924894 + 0: The maximum resident set size (KB) = 3254304 +>>>>>>> upstream/develop Test 009 cpld_restart_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_qr_p8_intel Checking test 010 cpld_control_qr_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_qr_p8_intel +Checking test 009 cpld_control_qr_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -688,15 +844,26 @@ Checking test 010 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 330.779041 0: The maximum resident set size (KB) = 3232724 +======= + 0: The total amount of wall time = 329.071478 + 0: The maximum resident set size (KB) = 3240976 +>>>>>>> upstream/develop Test 010 cpld_control_qr_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_qr_p8_intel Checking test 011 cpld_restart_qr_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_qr_p8_intel +Checking test 010 cpld_restart_qr_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -748,15 +915,26 @@ Checking test 011 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 191.180150 0: The maximum resident set size (KB) = 3255360 +======= + 0: The total amount of wall time = 200.183224 + 0: The maximum resident set size (KB) = 3259944 +>>>>>>> upstream/develop Test 011 cpld_restart_qr_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_2threads_p8_intel Checking test 012 cpld_2threads_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_2threads_p8_intel +Checking test 011 cpld_2threads_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -808,15 +986,26 @@ Checking test 012 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 313.444064 0: The maximum resident set size (KB) = 3523524 +======= + 0: The total amount of wall time = 316.773608 + 0: The maximum resident set size (KB) = 3550684 +>>>>>>> upstream/develop Test 012 cpld_2threads_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_decomp_p8_intel Checking test 013 cpld_decomp_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_decomp_p8_intel +Checking test 012 cpld_decomp_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -868,15 +1057,26 @@ Checking test 013 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 333.188748 0: The maximum resident set size (KB) = 3163260 +======= + 0: The total amount of wall time = 333.211430 + 0: The maximum resident set size (KB) = 3209824 +>>>>>>> upstream/develop Test 013 cpld_decomp_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_mpi_p8_intel Checking test 014 cpld_mpi_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_mpi_p8_intel +Checking test 013 cpld_mpi_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -928,15 +1128,26 @@ Checking test 014 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 267.988001 0: The maximum resident set size (KB) = 3053732 +======= + 0: The total amount of wall time = 273.599640 + 0: The maximum resident set size (KB) = 3045392 +>>>>>>> upstream/develop Test 014 cpld_mpi_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_ciceC_p8_intel Checking test 015 cpld_control_ciceC_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_ciceC_p8_intel +Checking test 014 cpld_control_ciceC_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1000,15 +1211,26 @@ Checking test 015 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 332.846656 0: The maximum resident set size (KB) = 3146980 +======= + 0: The total amount of wall time = 335.096731 + 0: The maximum resident set size (KB) = 3211852 +>>>>>>> upstream/develop Test 015 cpld_control_ciceC_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_c192_p8_intel Checking test 016 cpld_control_c192_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_c192_p8_intel +Checking test 015 cpld_control_c192_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1060,15 +1282,26 @@ Checking test 016 cpld_control_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 584.763659 0: The maximum resident set size (KB) = 3257312 +======= + 0: The total amount of wall time = 590.468217 + 0: The maximum resident set size (KB) = 3330600 +>>>>>>> upstream/develop Test 016 cpld_control_c192_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_c192_p8_intel Checking test 017 cpld_restart_c192_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_c192_p8_intel +Checking test 016 cpld_restart_c192_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK Comparing sfcf030.tile3.nc .........OK @@ -1120,15 +1353,26 @@ Checking test 017 cpld_restart_c192_p8_intel results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 366.554282 0: The maximum resident set size (KB) = 3566868 +======= + 0: The total amount of wall time = 349.995400 + 0: The maximum resident set size (KB) = 3623732 +>>>>>>> upstream/develop Test 017 cpld_restart_c192_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_bmark_p8_intel Checking test 018 cpld_bmark_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_bmark_p8_intel +Checking test 017 cpld_bmark_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1175,15 +1419,26 @@ Checking test 018 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 615.357785 0: The maximum resident set size (KB) = 4136608 +======= + 0: The total amount of wall time = 597.171245 + 0: The maximum resident set size (KB) = 4100488 +>>>>>>> upstream/develop Test 018 cpld_bmark_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_bmark_p8_intel Checking test 019 cpld_restart_bmark_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_bmark_p8_intel +Checking test 018 cpld_restart_bmark_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -1230,15 +1485,26 @@ Checking test 019 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 455.167338 0: The maximum resident set size (KB) = 4354940 +======= + 0: The total amount of wall time = 383.495397 + 0: The maximum resident set size (KB) = 4344460 +>>>>>>> upstream/develop Test 019 cpld_restart_bmark_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_s2sa_p8_intel Checking test 020 cpld_s2sa_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_s2sa_p8_intel +Checking test 019 cpld_s2sa_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1288,15 +1554,26 @@ Checking test 020 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 +<<<<<<< HEAD 0: The total amount of wall time = 308.972225 0: The maximum resident set size (KB) = 3148116 +======= + 0: The total amount of wall time = 312.714348 + 0: The maximum resident set size (KB) = 3156552 +>>>>>>> upstream/develop Test 020 cpld_s2sa_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_noaero_p8_intel Checking test 021 cpld_control_noaero_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_noaero_p8_intel +Checking test 020 cpld_control_noaero_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1359,15 +1636,26 @@ Checking test 021 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 260.351147 0: The maximum resident set size (KB) = 1724796 +======= + 0: The total amount of wall time = 260.177707 + 0: The maximum resident set size (KB) = 1723232 +>>>>>>> upstream/develop Test 021 cpld_control_noaero_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_nowave_noaero_p8_intel Checking test 022 cpld_control_nowave_noaero_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_nowave_noaero_p8_intel +Checking test 021 cpld_control_nowave_noaero_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1428,15 +1716,26 @@ Checking test 022 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 +<<<<<<< HEAD 0: The total amount of wall time = 256.465528 0: The maximum resident set size (KB) = 1739388 +======= + 0: The total amount of wall time = 252.421061 + 0: The maximum resident set size (KB) = 1768652 +>>>>>>> upstream/develop Test 022 cpld_control_nowave_noaero_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_p8_intel Checking test 023 cpld_debug_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_p8_intel +Checking test 022 cpld_debug_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1488,15 +1787,26 @@ Checking test 023 cpld_debug_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 478.923584 0: The maximum resident set size (KB) = 3176876 +======= + 0: The total amount of wall time = 494.456455 + 0: The maximum resident set size (KB) = 3220792 +>>>>>>> upstream/develop Test 023 cpld_debug_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_noaero_p8_intel Checking test 024 cpld_debug_noaero_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_noaero_p8_intel +Checking test 023 cpld_debug_noaero_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -1547,15 +1857,26 @@ Checking test 024 cpld_debug_noaero_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 322.936948 0: The maximum resident set size (KB) = 1713096 +======= + 0: The total amount of wall time = 330.238615 + 0: The maximum resident set size (KB) = 1725484 +>>>>>>> upstream/develop Test 024 cpld_debug_noaero_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_noaero_p8_agrid_intel Checking test 025 cpld_control_noaero_p8_agrid_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_noaero_p8_agrid_intel +Checking test 024 cpld_control_noaero_p8_agrid_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1616,15 +1937,26 @@ Checking test 025 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 +<<<<<<< HEAD 0: The total amount of wall time = 253.949219 0: The maximum resident set size (KB) = 1740116 +======= + 0: The total amount of wall time = 255.528971 + 0: The maximum resident set size (KB) = 1773208 +>>>>>>> upstream/develop Test 025 cpld_control_noaero_p8_agrid_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_c48_intel Checking test 026 cpld_control_c48_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_c48_intel +Checking test 025 cpld_control_c48_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1673,15 +2005,26 @@ Checking test 026 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 +<<<<<<< HEAD 0: The total amount of wall time = 559.899414 0: The maximum resident set size (KB) = 2810716 +======= + 0: The total amount of wall time = 549.818386 + 0: The maximum resident set size (KB) = 2823676 +>>>>>>> upstream/develop Test 026 cpld_control_c48_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_p8_faster_intel Checking test 027 cpld_control_p8_faster_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_p8_faster_intel +Checking test 026 cpld_control_p8_faster_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1745,15 +2088,26 @@ Checking test 027 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 319.586790 0: The maximum resident set size (KB) = 3172676 +======= + 0: The total amount of wall time = 317.755202 + 0: The maximum resident set size (KB) = 3189532 +>>>>>>> upstream/develop Test 027 cpld_control_p8_faster_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_pdlib_p8_intel Checking test 028 cpld_control_pdlib_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_pdlib_p8_intel +Checking test 027 cpld_control_pdlib_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1816,15 +2170,26 @@ Checking test 028 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 962.445138 0: The maximum resident set size (KB) = 1715852 +======= + 0: The total amount of wall time = 961.574763 + 0: The maximum resident set size (KB) = 1766688 +>>>>>>> upstream/develop Test 028 cpld_control_pdlib_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_restart_pdlib_p8_intel Checking test 029 cpld_restart_pdlib_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_restart_pdlib_p8_intel +Checking test 028 cpld_restart_pdlib_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1875,15 +2240,26 @@ Checking test 029 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 450.950510 0: The maximum resident set size (KB) = 1145680 +======= + 0: The total amount of wall time = 448.975311 + 0: The maximum resident set size (KB) = 1171528 +>>>>>>> upstream/develop Test 029 cpld_restart_pdlib_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_mpi_pdlib_p8_intel Checking test 030 cpld_mpi_pdlib_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_mpi_pdlib_p8_intel +Checking test 029 cpld_mpi_pdlib_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1946,15 +2322,26 @@ Checking test 030 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1108.011306 0: The maximum resident set size (KB) = 1658896 +======= + 0: The total amount of wall time = 1107.656854 + 0: The maximum resident set size (KB) = 1669356 +>>>>>>> upstream/develop Test 030 cpld_mpi_pdlib_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_pdlib_p8_intel Checking test 031 cpld_debug_pdlib_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_pdlib_p8_intel +Checking test 030 cpld_debug_pdlib_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -2005,15 +2392,26 @@ Checking test 031 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1423.889373 0: The maximum resident set size (KB) = 1701540 +======= + 0: The total amount of wall time = 1444.487801 + 0: The maximum resident set size (KB) = 1704184 +>>>>>>> upstream/develop Test 031 cpld_debug_pdlib_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_flake_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_flake_intel Checking test 032 control_flake_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_flake_intel +Checking test 031 control_flake_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2023,15 +2421,26 @@ Checking test 032 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 192.714492 0: The maximum resident set size (KB) = 689924 +======= + 0: The total amount of wall time = 188.469609 + 0: The maximum resident set size (KB) = 693268 +>>>>>>> upstream/develop Test 032 control_flake_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_CubedSphereGrid_intel Checking test 033 control_CubedSphereGrid_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_CubedSphereGrid_intel +Checking test 032 control_CubedSphereGrid_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2057,12 +2466,18 @@ Checking test 033 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 140.249065 0: The maximum resident set size (KB) = 643184 +======= + 0: The total amount of wall time = 134.261818 + 0: The maximum resident set size (KB) = 646284 +>>>>>>> upstream/develop Test 033 control_CubedSphereGrid_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_CubedSphereGrid_parallel_intel Checking test 034 control_CubedSphereGrid_parallel_intel results .... @@ -2073,21 +2488,44 @@ Checking test 034 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 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_CubedSphereGrid_parallel_intel +Checking test 033 control_CubedSphereGrid_parallel_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_sfcf000.nc .........OK + Comparing cubed_sphere_grid_sfcf024.nc ............ALT CHECK......OK + Comparing cubed_sphere_grid_atmf000.nc ............ALT CHECK......OK +>>>>>>> upstream/develop Comparing cubed_sphere_grid_atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 143.886947 0: The maximum resident set size (KB) = 645676 +======= + 0: The total amount of wall time = 141.954443 + 0: The maximum resident set size (KB) = 650152 +>>>>>>> upstream/develop Test 034 control_CubedSphereGrid_parallel_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_latlon_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_latlon_intel Checking test 035 control_latlon_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_latlon_intel +Checking test 034 control_latlon_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2097,15 +2535,26 @@ Checking test 035 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 142.331782 0: The maximum resident set size (KB) = 644864 +======= + 0: The total amount of wall time = 137.848044 + 0: The maximum resident set size (KB) = 648968 +>>>>>>> upstream/develop Test 035 control_latlon_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_wrtGauss_netcdf_parallel_intel Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_wrtGauss_netcdf_parallel_intel +Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2115,15 +2564,26 @@ Checking test 036 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 145.841294 0: The maximum resident set size (KB) = 642656 +======= + 0: The total amount of wall time = 140.030670 + 0: The maximum resident set size (KB) = 646152 +>>>>>>> upstream/develop Test 036 control_wrtGauss_netcdf_parallel_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c48_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_c48_intel Checking test 037 control_c48_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_c48_intel +Checking test 036 control_c48_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2161,6 +2621,7 @@ Checking test 037 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 369.158326 0: The maximum resident set size (KB) = 869036 @@ -2216,6 +2677,17 @@ Test 038 control_c48.v2.sfc_intel FAIL Tries: 2 baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c192_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_c192_intel Checking test 039 control_c192_intel results .... +======= +0: The total amount of wall time = 376.071490 +0: The maximum resident set size (KB) = 869984 + +Test 036 control_c48_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_c192_intel +Checking test 037 control_c192_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2225,15 +2697,26 @@ Checking test 039 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 534.233345 0: The maximum resident set size (KB) = 841992 +======= + 0: The total amount of wall time = 538.545473 + 0: The maximum resident set size (KB) = 856816 +>>>>>>> upstream/develop Test 039 control_c192_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_c384_intel Checking test 040 control_c384_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_c384_intel +Checking test 038 control_c384_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2243,15 +2726,26 @@ Checking test 040 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 530.163698 0: The maximum resident set size (KB) = 1268124 +======= + 0: The total amount of wall time = 562.451336 + 0: The maximum resident set size (KB) = 1278068 +>>>>>>> upstream/develop Test 040 control_c384_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_c384gdas_intel Checking test 041 control_c384gdas_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_c384gdas_intel +Checking test 039 control_c384gdas_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -2264,11 +2758,19 @@ Checking test 041 control_c384gdas_intel results .... 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 +<<<<<<< HEAD Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........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 ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK +>>>>>>> upstream/develop 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 .........OK @@ -2281,7 +2783,7 @@ Checking test 041 control_c384gdas_intel results .... 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 ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........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 @@ -2293,15 +2795,26 @@ Checking test 041 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 464.512234 0: The maximum resident set size (KB) = 1383888 +======= + 0: The total amount of wall time = 483.168078 + 0: The maximum resident set size (KB) = 1394400 +>>>>>>> upstream/develop Test 041 control_c384gdas_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_stochy_intel Checking test 042 control_stochy_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_stochy_intel +Checking test 040 control_stochy_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2311,29 +2824,51 @@ Checking test 042 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 89.645945 0: The maximum resident set size (KB) = 646064 +======= + 0: The total amount of wall time = 86.573489 + 0: The maximum resident set size (KB) = 652192 +>>>>>>> upstream/develop Test 042 control_stochy_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_stochy_restart_intel Checking test 043 control_stochy_restart_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_stochy_restart_intel +Checking test 041 control_stochy_restart_intel results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 50.511650 0: The maximum resident set size (KB) = 480820 +======= + 0: The total amount of wall time = 49.694449 + 0: The maximum resident set size (KB) = 499904 +>>>>>>> upstream/develop Test 043 control_stochy_restart_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_lndp_intel Checking test 044 control_lndp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_lndp_intel +Checking test 042 control_lndp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2343,15 +2878,26 @@ Checking test 044 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 87.554345 0: The maximum resident set size (KB) = 646364 +======= + 0: The total amount of wall time = 82.272326 + 0: The maximum resident set size (KB) = 645432 +>>>>>>> upstream/develop Test 044 control_lndp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_iovr4_intel Checking test 045 control_iovr4_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_iovr4_intel +Checking test 043 control_iovr4_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2365,15 +2911,26 @@ Checking test 045 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 141.178701 0: The maximum resident set size (KB) = 647544 +======= + 0: The total amount of wall time = 135.442918 + 0: The maximum resident set size (KB) = 647144 +>>>>>>> upstream/develop Test 045 control_iovr4_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_iovr5_intel Checking test 046 control_iovr5_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_iovr5_intel +Checking test 044 control_iovr5_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2387,15 +2944,26 @@ Checking test 046 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 140.941754 0: The maximum resident set size (KB) = 644940 +======= + 0: The total amount of wall time = 135.671335 + 0: The maximum resident set size (KB) = 647120 +>>>>>>> upstream/develop Test 046 control_iovr5_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_intel Checking test 047 control_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_intel +Checking test 045 control_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2441,6 +3009,7 @@ Checking test 047 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 172.271314 0: The maximum resident set size (KB) = 1612964 @@ -2504,6 +3073,17 @@ Test 048 control_p8.v2.sfc_intel FAIL Tries: 2 baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_ugwpv1_intel Checking test 049 control_p8_ugwpv1_intel results .... +======= + 0: The total amount of wall time = 167.520237 + 0: The maximum resident set size (KB) = 1613344 + +Test 045 control_p8_intel PASS + + +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_ugwpv1_intel +Checking test 046 control_p8_ugwpv1_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2549,15 +3129,26 @@ Checking test 049 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 159.580584 0: The maximum resident set size (KB) = 1616608 +======= + 0: The total amount of wall time = 163.132989 + 0: The maximum resident set size (KB) = 1604596 +>>>>>>> upstream/develop Test 049 control_p8_ugwpv1_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_restart_p8_intel Checking test 050 control_restart_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_restart_p8_intel +Checking test 047 control_restart_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2595,15 +3186,26 @@ Checking test 050 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 +<<<<<<< HEAD 0: The total amount of wall time = 87.054660 0: The maximum resident set size (KB) = 870176 +======= + 0: The total amount of wall time = 87.608735 + 0: The maximum resident set size (KB) = 893380 +>>>>>>> upstream/develop Test 050 control_restart_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_noqr_p8_intel Checking test 051 control_noqr_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_noqr_p8_intel +Checking test 048 control_noqr_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2649,15 +3251,26 @@ Checking test 051 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 +<<<<<<< HEAD 0: The total amount of wall time = 168.467163 0: The maximum resident set size (KB) = 1585904 +======= + 0: The total amount of wall time = 167.536884 + 0: The maximum resident set size (KB) = 1618284 +>>>>>>> upstream/develop Test 051 control_noqr_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_restart_noqr_p8_intel Checking test 052 control_restart_noqr_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_restart_noqr_p8_intel +Checking test 049 control_restart_noqr_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -2695,15 +3308,26 @@ Checking test 052 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 +<<<<<<< HEAD 0: The total amount of wall time = 86.227918 0: The maximum resident set size (KB) = 925092 +======= + 0: The total amount of wall time = 84.772044 + 0: The maximum resident set size (KB) = 918420 +>>>>>>> upstream/develop Test 052 control_restart_noqr_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_decomp_p8_intel Checking test 053 control_decomp_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_decomp_p8_intel +Checking test 050 control_decomp_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2745,15 +3369,26 @@ Checking test 053 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 +<<<<<<< HEAD 0: The total amount of wall time = 172.533473 0: The maximum resident set size (KB) = 1587172 +======= + 0: The total amount of wall time = 173.302558 + 0: The maximum resident set size (KB) = 1599504 +>>>>>>> upstream/develop Test 053 control_decomp_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_2threads_p8_intel Checking test 054 control_2threads_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_2threads_p8_intel +Checking test 051 control_2threads_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -2795,15 +3430,26 @@ Checking test 054 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 +<<<<<<< HEAD 0: The total amount of wall time = 155.506257 0: The maximum resident set size (KB) = 1704264 +======= + 0: The total amount of wall time = 156.037426 + 0: The maximum resident set size (KB) = 1711704 +>>>>>>> upstream/develop Test 054 control_2threads_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_lndp_intel Checking test 055 control_p8_lndp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_lndp_intel +Checking test 052 control_p8_lndp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2821,15 +3467,26 @@ Checking test 055 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 300.797296 0: The maximum resident set size (KB) = 1612216 +======= + 0: The total amount of wall time = 304.825003 + 0: The maximum resident set size (KB) = 1611708 +>>>>>>> upstream/develop Test 055 control_p8_lndp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_rrtmgp_intel Checking test 056 control_p8_rrtmgp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_rrtmgp_intel +Checking test 053 control_p8_rrtmgp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2875,15 +3532,26 @@ Checking test 056 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 219.982767 0: The maximum resident set size (KB) = 1672816 +======= + 0: The total amount of wall time = 220.480708 + 0: The maximum resident set size (KB) = 1687812 +>>>>>>> upstream/develop Test 056 control_p8_rrtmgp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_mynn_intel Checking test 057 control_p8_mynn_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_mynn_intel +Checking test 054 control_p8_mynn_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2929,15 +3597,26 @@ Checking test 057 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 170.742756 0: The maximum resident set size (KB) = 1613568 +======= + 0: The total amount of wall time = 170.493920 + 0: The maximum resident set size (KB) = 1631968 +>>>>>>> upstream/develop Test 057 control_p8_mynn_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/merra2_thompson_intel Checking test 058 merra2_thompson_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/merra2_thompson_intel +Checking test 055 merra2_thompson_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2983,15 +3662,26 @@ Checking test 058 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 198.523299 0: The maximum resident set size (KB) = 1610556 +======= + 0: The total amount of wall time = 195.199775 + 0: The maximum resident set size (KB) = 1641048 +>>>>>>> upstream/develop Test 058 merra2_thompson_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_control_intel Checking test 059 regional_control_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_control_intel +Checking test 056 regional_control_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3001,29 +3691,51 @@ Checking test 059 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 301.047262 0: The maximum resident set size (KB) = 815836 +======= + 0: The total amount of wall time = 304.680406 + 0: The maximum resident set size (KB) = 850272 +>>>>>>> upstream/develop Test 059 regional_control_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_restart_intel Checking test 060 regional_restart_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_restart_intel +Checking test 057 regional_restart_intel results .... +>>>>>>> upstream/develop Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 156.299722 0: The maximum resident set size (KB) = 1014272 +======= + 0: The total amount of wall time = 156.100229 + 0: The maximum resident set size (KB) = 1017840 +>>>>>>> upstream/develop Test 060 regional_restart_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_decomp_intel Checking test 061 regional_decomp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_decomp_intel +Checking test 058 regional_decomp_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3033,15 +3745,26 @@ Checking test 061 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 315.018227 0: The maximum resident set size (KB) = 845736 +======= + 0: The total amount of wall time = 322.077117 + 0: The maximum resident set size (KB) = 848980 +>>>>>>> upstream/develop Test 061 regional_decomp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_2threads_intel Checking test 062 regional_2threads_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_2threads_intel +Checking test 059 regional_2threads_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3051,44 +3774,77 @@ Checking test 062 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 182.888554 0: The maximum resident set size (KB) = 849136 +======= + 0: The total amount of wall time = 190.664204 + 0: The maximum resident set size (KB) = 843572 +>>>>>>> upstream/develop Test 062 regional_2threads_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_noquilt_intel Checking test 063 regional_noquilt_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_noquilt_intel +Checking test 060 regional_noquilt_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 294.577582 0: The maximum resident set size (KB) = 1353364 +======= + 0: The total amount of wall time = 304.247100 + 0: The maximum resident set size (KB) = 1359388 +>>>>>>> upstream/develop Test 063 regional_noquilt_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_netcdf_parallel_intel Checking test 064 regional_netcdf_parallel_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_netcdf_parallel_intel +Checking test 061 regional_netcdf_parallel_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 294.139445 0: The maximum resident set size (KB) = 849188 +======= + 0: The total amount of wall time = 301.632069 + 0: The maximum resident set size (KB) = 852668 +>>>>>>> upstream/develop Test 064 regional_netcdf_parallel_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_2dwrtdecomp_intel Checking test 065 regional_2dwrtdecomp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_2dwrtdecomp_intel +Checking test 062 regional_2dwrtdecomp_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3098,15 +3854,26 @@ Checking test 065 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 297.906873 0: The maximum resident set size (KB) = 846196 +======= + 0: The total amount of wall time = 303.840625 + 0: The maximum resident set size (KB) = 855464 +>>>>>>> upstream/develop Test 065 regional_2dwrtdecomp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_wofs_intel Checking test 066 regional_wofs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_wofs_intel +Checking test 063 regional_wofs_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3116,15 +3883,26 @@ Checking test 066 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 385.759275 0: The maximum resident set size (KB) = 1903712 +======= + 0: The total amount of wall time = 388.828655 + 0: The maximum resident set size (KB) = 1914096 +>>>>>>> upstream/develop Test 066 regional_wofs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_intel Checking test 067 rap_control_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_intel +Checking test 064 rap_control_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3170,15 +3948,26 @@ Checking test 067 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 452.226876 0: The maximum resident set size (KB) = 1097408 +======= + 0: The total amount of wall time = 457.949849 + 0: The maximum resident set size (KB) = 1098884 +>>>>>>> upstream/develop Test 067 rap_control_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_spp_sppt_shum_skeb_intel Checking test 068 regional_spp_sppt_shum_skeb_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_spp_sppt_shum_skeb_intel +Checking test 065 regional_spp_sppt_shum_skeb_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3188,15 +3977,26 @@ Checking test 068 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 237.928827 0: The maximum resident set size (KB) = 1287788 +======= + 0: The total amount of wall time = 245.914817 + 0: The maximum resident set size (KB) = 1295248 +>>>>>>> upstream/develop Test 068 regional_spp_sppt_shum_skeb_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_decomp_intel Checking test 069 rap_decomp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_decomp_intel +Checking test 066 rap_decomp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3242,15 +4042,26 @@ Checking test 069 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 472.293227 0: The maximum resident set size (KB) = 1003208 +======= + 0: The total amount of wall time = 473.747766 + 0: The maximum resident set size (KB) = 1033168 +>>>>>>> upstream/develop Test 069 rap_decomp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_2threads_intel Checking test 070 rap_2threads_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_2threads_intel +Checking test 067 rap_2threads_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3296,15 +4107,26 @@ Checking test 070 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 429.581113 0: The maximum resident set size (KB) = 1169004 +======= + 0: The total amount of wall time = 431.396960 + 0: The maximum resident set size (KB) = 1174400 +>>>>>>> upstream/develop Test 070 rap_2threads_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_restart_intel Checking test 071 rap_restart_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_restart_intel +Checking test 068 rap_restart_intel results .... +>>>>>>> upstream/develop Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -3342,15 +4164,26 @@ Checking test 071 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 231.138196 0: The maximum resident set size (KB) = 1089796 +======= + 0: The total amount of wall time = 234.536060 + 0: The maximum resident set size (KB) = 1102380 +>>>>>>> upstream/develop Test 071 rap_restart_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_intel Checking test 072 rap_sfcdiff_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_intel +Checking test 069 rap_sfcdiff_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3396,15 +4229,26 @@ Checking test 072 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 454.188517 0: The maximum resident set size (KB) = 1099064 +======= + 0: The total amount of wall time = 453.727732 + 0: The maximum resident set size (KB) = 1100792 +>>>>>>> upstream/develop Test 072 rap_sfcdiff_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_decomp_intel Checking test 073 rap_sfcdiff_decomp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_decomp_intel +Checking test 070 rap_sfcdiff_decomp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3450,15 +4294,26 @@ Checking test 073 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 476.675293 0: The maximum resident set size (KB) = 993360 +======= + 0: The total amount of wall time = 477.294698 + 0: The maximum resident set size (KB) = 1024472 +>>>>>>> upstream/develop Test 073 rap_sfcdiff_decomp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_restart_intel Checking test 074 rap_sfcdiff_restart_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_restart_intel +Checking test 071 rap_sfcdiff_restart_intel results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3496,15 +4351,26 @@ Checking test 074 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 335.603136 0: The maximum resident set size (KB) = 1136112 +======= + 0: The total amount of wall time = 335.923332 + 0: The maximum resident set size (KB) = 1116740 +>>>>>>> upstream/develop Test 074 rap_sfcdiff_restart_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_intel Checking test 075 hrrr_control_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_intel +Checking test 072 hrrr_control_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3550,15 +4416,26 @@ Checking test 075 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 226.834595 0: The maximum resident set size (KB) = 1034392 +======= + 0: The total amount of wall time = 227.759763 + 0: The maximum resident set size (KB) = 1037584 +>>>>>>> upstream/develop Test 075 hrrr_control_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_decomp_intel Checking test 076 hrrr_control_decomp_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_decomp_intel +Checking test 073 hrrr_control_decomp_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3604,15 +4481,26 @@ Checking test 076 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 237.961906 0: The maximum resident set size (KB) = 1018612 +======= + 0: The total amount of wall time = 239.443972 + 0: The maximum resident set size (KB) = 1020696 +>>>>>>> upstream/develop Test 076 hrrr_control_decomp_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_2threads_intel Checking test 077 hrrr_control_2threads_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_2threads_intel +Checking test 074 hrrr_control_2threads_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3658,29 +4546,51 @@ Checking test 077 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 208.864758 0: The maximum resident set size (KB) = 1088976 +======= + 0: The total amount of wall time = 212.380691 + 0: The maximum resident set size (KB) = 1107156 +>>>>>>> upstream/develop Test 077 hrrr_control_2threads_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_restart_intel Checking test 078 hrrr_control_restart_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_restart_intel +Checking test 075 hrrr_control_restart_intel results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 119.969754 0: The maximum resident set size (KB) = 997372 +======= + 0: The total amount of wall time = 122.537218 + 0: The maximum resident set size (KB) = 984900 +>>>>>>> upstream/develop Test 078 hrrr_control_restart_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1beta_intel Checking test 079 rrfs_v1beta_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1beta_intel +Checking test 076 rrfs_v1beta_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3726,15 +4636,26 @@ Checking test 079 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 452.722763 0: The maximum resident set size (KB) = 1073404 +======= + 0: The total amount of wall time = 447.030798 + 0: The maximum resident set size (KB) = 1104748 +>>>>>>> upstream/develop Test 079 rrfs_v1beta_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1nssl_intel Checking test 080 rrfs_v1nssl_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1nssl_intel +Checking test 077 rrfs_v1nssl_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3748,15 +4669,26 @@ Checking test 080 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 549.686168 0: The maximum resident set size (KB) = 1963596 +======= + 0: The total amount of wall time = 536.804355 + 0: The maximum resident set size (KB) = 1983120 +>>>>>>> upstream/develop Test 080 rrfs_v1nssl_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1nssl_nohailnoccn_intel Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1nssl_nohailnoccn_intel +Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3770,15 +4702,26 @@ Checking test 081 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 530.592922 0: The maximum resident set size (KB) = 2039388 +======= + 0: The total amount of wall time = 527.271440 + 0: The maximum resident set size (KB) = 2067748 +>>>>>>> upstream/develop Test 081 rrfs_v1nssl_nohailnoccn_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_csawmg_intel Checking test 082 control_csawmg_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3788,15 +4731,26 @@ Checking test 082 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 346.655772 0: The maximum resident set size (KB) = 746020 +======= + 0: The total amount of wall time = 340.830914 + 0: The maximum resident set size (KB) = 738624 +>>>>>>> upstream/develop Test 082 control_csawmg_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_csawmgt_intel Checking test 083 control_csawmgt_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3806,15 +4760,26 @@ Checking test 083 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 343.860548 0: The maximum resident set size (KB) = 745992 +======= + 0: The total amount of wall time = 340.480630 + 0: The maximum resident set size (KB) = 745048 +>>>>>>> upstream/develop Test 083 control_csawmgt_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_ras_intel Checking test 084 control_ras_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_ras_intel +Checking test 081 control_ras_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3824,12 +4789,18 @@ Checking test 084 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 191.459022 0: The maximum resident set size (KB) = 728848 +======= + 0: The total amount of wall time = 188.891691 + 0: The maximum resident set size (KB) = 735356 +>>>>>>> upstream/develop Test 084 control_ras_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_wam_intel Checking test 085 control_wam_intel results .... @@ -3838,13 +4809,29 @@ Checking test 085 control_wam_intel results .... 0: The total amount of wall time = 113.548499 0: The maximum resident set size (KB) = 655292 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 114.814195 + 0: The maximum resident set size (KB) = 649896 +>>>>>>> upstream/develop Test 085 control_wam_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_faster_intel Checking test 086 control_p8_faster_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3890,15 +4877,26 @@ Checking test 086 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 149.274176 0: The maximum resident set size (KB) = 1614068 +======= + 0: The total amount of wall time = 148.326561 + 0: The maximum resident set size (KB) = 1608896 +>>>>>>> upstream/develop Test 086 control_p8_faster_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_control_faster_intel Checking test 087 regional_control_faster_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3908,15 +4906,26 @@ Checking test 087 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 273.730636 0: The maximum resident set size (KB) = 825612 +======= + 0: The total amount of wall time = 270.018443 + 0: The maximum resident set size (KB) = 856564 +>>>>>>> upstream/develop Test 087 regional_control_faster_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_CubedSphereGrid_debug_intel Checking test 088 control_CubedSphereGrid_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_CubedSphereGrid_debug_intel +Checking test 085 control_CubedSphereGrid_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3942,365 +4951,651 @@ Checking test 088 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 150.641214 0: The maximum resident set size (KB) = 794376 +======= + 0: The total amount of wall time = 147.703857 + 0: The maximum resident set size (KB) = 819052 +>>>>>>> upstream/develop Test 088 control_CubedSphereGrid_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_wrtGauss_netcdf_parallel_debug_intel Checking test 089 control_wrtGauss_netcdf_parallel_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_wrtGauss_netcdf_parallel_debug_intel +Checking test 086 control_wrtGauss_netcdf_parallel_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 149.036299 0: The maximum resident set size (KB) = 804232 +======= + 0: The total amount of wall time = 145.055221 + 0: The maximum resident set size (KB) = 814292 +>>>>>>> upstream/develop Test 089 control_wrtGauss_netcdf_parallel_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_stochy_debug_intel Checking test 090 control_stochy_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_stochy_debug_intel +Checking test 087 control_stochy_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 167.486480 0: The maximum resident set size (KB) = 807080 +======= + 0: The total amount of wall time = 164.544027 + 0: The maximum resident set size (KB) = 819360 +>>>>>>> upstream/develop Test 090 control_stochy_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_lndp_debug_intel Checking test 091 control_lndp_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_lndp_debug_intel +Checking test 088 control_lndp_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 149.863972 0: The maximum resident set size (KB) = 812544 +======= + 0: The total amount of wall time = 151.409003 + 0: The maximum resident set size (KB) = 819964 +>>>>>>> upstream/develop Test 091 control_lndp_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_csawmg_debug_intel Checking test 092 control_csawmg_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_csawmg_debug_intel +Checking test 089 control_csawmg_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 229.289709 0: The maximum resident set size (KB) = 856832 +======= + 0: The total amount of wall time = 223.058590 + 0: The maximum resident set size (KB) = 857804 +>>>>>>> upstream/develop Test 092 control_csawmg_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_csawmgt_debug_intel Checking test 093 control_csawmgt_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_csawmgt_debug_intel +Checking test 090 control_csawmgt_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 224.458952 0: The maximum resident set size (KB) = 823852 +======= + 0: The total amount of wall time = 226.200537 + 0: The maximum resident set size (KB) = 827760 +>>>>>>> upstream/develop Test 093 control_csawmgt_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_ras_debug_intel Checking test 094 control_ras_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_ras_debug_intel +Checking test 091 control_ras_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 149.719516 0: The maximum resident set size (KB) = 817384 +======= + 0: The total amount of wall time = 148.880957 + 0: The maximum resident set size (KB) = 829416 +>>>>>>> upstream/develop Test 094 control_ras_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_diag_debug_intel Checking test 095 control_diag_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_diag_debug_intel +Checking test 092 control_diag_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 154.131842 0: The maximum resident set size (KB) = 858052 +======= + 0: The total amount of wall time = 151.051575 + 0: The maximum resident set size (KB) = 871556 +>>>>>>> upstream/develop Test 095 control_diag_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_debug_p8_intel Checking test 096 control_debug_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_debug_p8_intel +Checking test 093 control_debug_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 153.439548 0: The maximum resident set size (KB) = 1647800 +======= + 0: The total amount of wall time = 162.382849 + 0: The maximum resident set size (KB) = 1607064 +>>>>>>> upstream/develop Test 096 control_debug_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_debug_intel Checking test 097 regional_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_debug_intel +Checking test 094 regional_debug_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 951.056602 0: The maximum resident set size (KB) = 829792 +======= + 0: The total amount of wall time = 982.031143 + 0: The maximum resident set size (KB) = 844172 +>>>>>>> upstream/develop Test 097 regional_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_debug_intel Checking test 098 rap_control_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_debug_intel +Checking test 095 rap_control_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 271.067799 0: The maximum resident set size (KB) = 1200760 +======= + 0: The total amount of wall time = 273.188249 + 0: The maximum resident set size (KB) = 1205104 +>>>>>>> upstream/develop Test 098 rap_control_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_debug_intel Checking test 099 hrrr_control_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_debug_intel +Checking test 096 hrrr_control_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 270.615240 0: The maximum resident set size (KB) = 1166120 +======= + 0: The total amount of wall time = 272.095731 + 0: The maximum resident set size (KB) = 1198792 +>>>>>>> upstream/develop Test 099 hrrr_control_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_gf_debug_intel Checking test 100 hrrr_gf_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_gf_debug_intel +Checking test 097 hrrr_gf_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 272.876152 0: The maximum resident set size (KB) = 1194584 +======= + 0: The total amount of wall time = 266.772073 + 0: The maximum resident set size (KB) = 1194248 +>>>>>>> upstream/develop Test 100 hrrr_gf_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_c3_debug_intel Checking test 101 hrrr_c3_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_c3_debug_intel +Checking test 098 hrrr_c3_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 280.062984 0: The maximum resident set size (KB) = 1191252 +======= + 0: The total amount of wall time = 279.684350 + 0: The maximum resident set size (KB) = 1192992 +>>>>>>> upstream/develop Test 101 hrrr_c3_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_unified_drag_suite_debug_intel Checking test 102 rap_unified_drag_suite_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_unified_drag_suite_debug_intel +Checking test 099 rap_unified_drag_suite_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 273.550164 0: The maximum resident set size (KB) = 1188356 +======= + 0: The total amount of wall time = 274.243054 + 0: The maximum resident set size (KB) = 1198308 +>>>>>>> upstream/develop Test 102 rap_unified_drag_suite_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_diag_debug_intel Checking test 103 rap_diag_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_diag_debug_intel +Checking test 100 rap_diag_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 289.091666 0: The maximum resident set size (KB) = 1263300 +======= + 0: The total amount of wall time = 292.837089 + 0: The maximum resident set size (KB) = 1286448 +>>>>>>> upstream/develop Test 103 rap_diag_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_cires_ugwp_debug_intel Checking test 104 rap_cires_ugwp_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_cires_ugwp_debug_intel +Checking test 101 rap_cires_ugwp_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 280.553423 0: The maximum resident set size (KB) = 1192264 +======= + 0: The total amount of wall time = 277.346916 + 0: The maximum resident set size (KB) = 1194100 +>>>>>>> upstream/develop Test 104 rap_cires_ugwp_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_unified_ugwp_debug_intel Checking test 105 rap_unified_ugwp_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_unified_ugwp_debug_intel +Checking test 102 rap_unified_ugwp_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 274.977458 0: The maximum resident set size (KB) = 1196468 +======= + 0: The total amount of wall time = 277.810279 + 0: The maximum resident set size (KB) = 1196040 +>>>>>>> upstream/develop Test 105 rap_unified_ugwp_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_lndp_debug_intel Checking test 106 rap_lndp_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_lndp_debug_intel +Checking test 103 rap_lndp_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 274.063101 0: The maximum resident set size (KB) = 1196244 +======= + 0: The total amount of wall time = 280.967171 + 0: The maximum resident set size (KB) = 1192432 +>>>>>>> upstream/develop Test 106 rap_lndp_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_progcld_thompson_debug_intel Checking test 107 rap_progcld_thompson_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_progcld_thompson_debug_intel +Checking test 104 rap_progcld_thompson_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 275.716193 0: The maximum resident set size (KB) = 1193068 +======= + 0: The total amount of wall time = 273.723162 + 0: The maximum resident set size (KB) = 1196936 +>>>>>>> upstream/develop Test 107 rap_progcld_thompson_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_noah_debug_intel Checking test 108 rap_noah_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_noah_debug_intel +Checking test 105 rap_noah_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 266.034031 0: The maximum resident set size (KB) = 1194888 +======= + 0: The total amount of wall time = 271.129228 + 0: The maximum resident set size (KB) = 1187672 +>>>>>>> upstream/develop Test 108 rap_noah_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_debug_intel Checking test 109 rap_sfcdiff_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_debug_intel +Checking test 106 rap_sfcdiff_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 273.483988 0: The maximum resident set size (KB) = 1198188 +======= + 0: The total amount of wall time = 276.934813 + 0: The maximum resident set size (KB) = 1190968 +>>>>>>> upstream/develop Test 109 rap_sfcdiff_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_noah_sfcdiff_cires_ugwp_debug_intel +Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 450.738144 0: The maximum resident set size (KB) = 1197052 +======= + 0: The total amount of wall time = 451.758956 + 0: The maximum resident set size (KB) = 1188116 +>>>>>>> upstream/develop Test 110 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1beta_debug_intel Checking test 111 rrfs_v1beta_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1beta_debug_intel +Checking test 108 rrfs_v1beta_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 268.757453 0: The maximum resident set size (KB) = 1155048 +======= + 0: The total amount of wall time = 265.412392 + 0: The maximum resident set size (KB) = 1193772 +>>>>>>> upstream/develop Test 111 rrfs_v1beta_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_clm_lake_debug_intel Checking test 112 rap_clm_lake_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_clm_lake_debug_intel +Checking test 109 rap_clm_lake_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 351.005956 0: The maximum resident set size (KB) = 1195412 +======= + 0: The total amount of wall time = 349.335249 + 0: The maximum resident set size (KB) = 1198152 +>>>>>>> upstream/develop Test 112 rap_clm_lake_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_flake_debug_intel Checking test 113 rap_flake_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_flake_debug_intel +Checking test 110 rap_flake_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 280.076867 0: The maximum resident set size (KB) = 1195392 +======= + 0: The total amount of wall time = 273.456045 + 0: The maximum resident set size (KB) = 1200556 +>>>>>>> upstream/develop Test 113 rap_flake_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/gnv1_c96_no_nest_debug_intel Checking test 114 gnv1_c96_no_nest_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/gnv1_c96_no_nest_debug_intel +Checking test 111 gnv1_c96_no_nest_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4340,12 +5635,18 @@ Checking test 114 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 +<<<<<<< HEAD 0: The total amount of wall time = 475.130897 0: The maximum resident set size (KB) = 1199188 +======= + 0: The total amount of wall time = 480.823811 + 0: The maximum resident set size (KB) = 1206764 +>>>>>>> upstream/develop Test 114 gnv1_c96_no_nest_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_wam_debug_intel Checking test 115 control_wam_debug_intel results .... @@ -4354,13 +5655,29 @@ Checking test 115 control_wam_debug_intel results .... 0: The total amount of wall time = 269.503776 0: The maximum resident set size (KB) = 502428 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 278.241217 + 0: The maximum resident set size (KB) = 504728 +>>>>>>> upstream/develop Test 115 control_wam_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -4370,15 +5687,26 @@ Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 221.705627 0: The maximum resident set size (KB) = 1149164 +======= + 0: The total amount of wall time = 232.943933 + 0: The maximum resident set size (KB) = 1160096 +>>>>>>> upstream/develop Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn32_phy32_intel Checking test 117 rap_control_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn32_phy32_intel +Checking test 114 rap_control_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4424,15 +5752,26 @@ Checking test 117 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 370.298528 0: The maximum resident set size (KB) = 1038940 +======= + 0: The total amount of wall time = 372.479252 + 0: The maximum resident set size (KB) = 1037648 +>>>>>>> upstream/develop Test 117 rap_control_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_dyn32_phy32_intel Checking test 118 hrrr_control_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_dyn32_phy32_intel +Checking test 115 hrrr_control_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4478,15 +5817,26 @@ Checking test 118 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 191.177283 0: The maximum resident set size (KB) = 974676 +======= + 0: The total amount of wall time = 194.146485 + 0: The maximum resident set size (KB) = 974916 +>>>>>>> upstream/develop Test 118 hrrr_control_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_2threads_dyn32_phy32_intel Checking test 119 rap_2threads_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_2threads_dyn32_phy32_intel +Checking test 116 rap_2threads_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4532,15 +5882,26 @@ Checking test 119 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 353.156865 0: The maximum resident set size (KB) = 1086292 +======= + 0: The total amount of wall time = 351.964833 + 0: The maximum resident set size (KB) = 1089428 +>>>>>>> upstream/develop Test 119 rap_2threads_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_2threads_dyn32_phy32_intel Checking test 120 hrrr_control_2threads_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_2threads_dyn32_phy32_intel +Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4586,15 +5947,26 @@ Checking test 120 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 +<<<<<<< HEAD 0: The total amount of wall time = 178.118541 0: The maximum resident set size (KB) = 951916 +======= + 0: The total amount of wall time = 177.906725 + 0: The maximum resident set size (KB) = 959196 +>>>>>>> upstream/develop Test 120 hrrr_control_2threads_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_decomp_dyn32_phy32_intel Checking test 121 hrrr_control_decomp_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_decomp_dyn32_phy32_intel +Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4640,15 +6012,26 @@ Checking test 121 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 +<<<<<<< HEAD 0: The total amount of wall time = 202.750961 0: The maximum resident set size (KB) = 908544 +======= + 0: The total amount of wall time = 203.901156 + 0: The maximum resident set size (KB) = 920620 +>>>>>>> upstream/develop Test 121 hrrr_control_decomp_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_restart_dyn32_phy32_intel Checking test 122 rap_restart_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_restart_dyn32_phy32_intel +Checking test 119 rap_restart_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4686,29 +6069,51 @@ Checking test 122 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 295.312154 0: The maximum resident set size (KB) = 1029444 +======= + 0: The total amount of wall time = 276.836690 + 0: The maximum resident set size (KB) = 1026120 +>>>>>>> upstream/develop Test 122 rap_restart_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_restart_dyn32_phy32_intel Checking test 123 hrrr_control_restart_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_restart_dyn32_phy32_intel +Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 103.027858 0: The maximum resident set size (KB) = 919756 +======= + 0: The total amount of wall time = 100.716346 + 0: The maximum resident set size (KB) = 937396 +>>>>>>> upstream/develop Test 123 hrrr_control_restart_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_control_intel Checking test 124 conus13km_control_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_control_intel +Checking test 121 conus13km_control_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -4723,26 +6128,43 @@ Checking test 124 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 114.407754 0: The maximum resident set size (KB) = 1237648 +======= + 0: The total amount of wall time = 112.867524 + 0: The maximum resident set size (KB) = 1245688 +>>>>>>> upstream/develop Test 124 conus13km_control_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_2threads_intel Checking test 125 conus13km_2threads_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_2threads_intel +Checking test 122 conus13km_2threads_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 44.786011 0: The maximum resident set size (KB) = 1156180 +======= + 0: The total amount of wall time = 44.854023 + 0: The maximum resident set size (KB) = 1165632 +>>>>>>> upstream/develop Test 125 conus13km_2threads_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_restart_mismatch_intel Checking test 126 conus13km_restart_mismatch_intel results .... @@ -4751,13 +6173,29 @@ Checking test 126 conus13km_restart_mismatch_intel results .... 0: The total amount of wall time = 63.209564 0: The maximum resident set size (KB) = 1185816 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 63.703070 + 0: The maximum resident set size (KB) = 1182304 +>>>>>>> upstream/develop Test 126 conus13km_restart_mismatch_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn64_phy32_intel Checking test 127 rap_control_dyn64_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn64_phy32_intel +Checking test 124 rap_control_dyn64_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4803,43 +6241,76 @@ Checking test 127 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 242.929144 0: The maximum resident set size (KB) = 985956 +======= + 0: The total amount of wall time = 241.610056 + 0: The maximum resident set size (KB) = 991656 +>>>>>>> upstream/develop Test 127 rap_control_dyn64_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_debug_dyn32_phy32_intel Checking test 128 rap_control_debug_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_debug_dyn32_phy32_intel +Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 272.148609 0: The maximum resident set size (KB) = 1076152 +======= + 0: The total amount of wall time = 261.924947 + 0: The maximum resident set size (KB) = 1070924 +>>>>>>> upstream/develop Test 128 rap_control_debug_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_debug_dyn32_phy32_intel Checking test 129 hrrr_control_debug_dyn32_phy32_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_debug_dyn32_phy32_intel +Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 266.870940 0: The maximum resident set size (KB) = 1070236 +======= + 0: The total amount of wall time = 267.451885 + 0: The maximum resident set size (KB) = 1068232 +>>>>>>> upstream/develop Test 129 hrrr_control_debug_dyn32_phy32_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_intel Checking test 130 conus13km_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_intel +Checking test 127 conus13km_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4852,15 +6323,26 @@ Checking test 130 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 832.502604 0: The maximum resident set size (KB) = 1248292 +======= + 0: The total amount of wall time = 823.480230 + 0: The maximum resident set size (KB) = 1263464 +>>>>>>> upstream/develop Test 130 conus13km_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_qr_intel Checking test 131 conus13km_debug_qr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_qr_intel +Checking test 128 conus13km_debug_qr_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4873,67 +6355,117 @@ Checking test 131 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 +<<<<<<< HEAD 0: The total amount of wall time = 827.674973 0: The maximum resident set size (KB) = 915108 +======= + 0: The total amount of wall time = 815.233872 + 0: The maximum resident set size (KB) = 912608 +>>>>>>> upstream/develop Test 131 conus13km_debug_qr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_2threads_intel Checking test 132 conus13km_debug_2threads_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_2threads_intel +Checking test 129 conus13km_debug_2threads_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 467.592915 0: The maximum resident set size (KB) = 1189028 +======= + 0: The total amount of wall time = 474.096321 + 0: The maximum resident set size (KB) = 1200552 +>>>>>>> upstream/develop Test 132 conus13km_debug_2threads_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_radar_tten_debug_intel Checking test 133 conus13km_radar_tten_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_radar_tten_debug_intel +Checking test 130 conus13km_radar_tten_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 811.567012 0: The maximum resident set size (KB) = 1335588 +======= + 0: The total amount of wall time = 821.668123 + 0: The maximum resident set size (KB) = 1342496 +>>>>>>> upstream/develop Test 133 conus13km_radar_tten_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn64_phy32_debug_intel Checking test 134 rap_control_dyn64_phy32_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn64_phy32_debug_intel +Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 277.536471 0: The maximum resident set size (KB) = 1107104 +======= + 0: The total amount of wall time = 276.649989 + 0: The maximum resident set size (KB) = 1123544 +>>>>>>> upstream/develop Test 134 rap_control_dyn64_phy32_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_atm_intel Checking test 135 hafs_regional_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_atm_intel +Checking test 132 hafs_regional_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 270.792663 0: The maximum resident set size (KB) = 702092 +======= + 0: The total amount of wall time = 282.913338 + 0: The maximum resident set size (KB) = 740552 +>>>>>>> upstream/develop Test 135 hafs_regional_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_atm_thompson_gfdlsf_intel Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... @@ -4942,13 +6474,29 @@ Checking test 136 hafs_regional_atm_thompson_gfdlsf_intel results .... 0: The total amount of wall time = 344.693527 0: The maximum resident set size (KB) = 1100048 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 355.834483 + 0: The maximum resident set size (KB) = 1108128 +>>>>>>> upstream/develop Test 136 hafs_regional_atm_thompson_gfdlsf_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_atm_ocn_intel Checking test 137 hafs_regional_atm_ocn_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_atm_ocn_intel +Checking test 134 hafs_regional_atm_ocn_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4956,15 +6504,26 @@ Checking test 137 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 +<<<<<<< HEAD 0: The total amount of wall time = 396.989907 0: The maximum resident set size (KB) = 827416 +======= + 0: The total amount of wall time = 398.318897 + 0: The maximum resident set size (KB) = 826872 +>>>>>>> upstream/develop Test 137 hafs_regional_atm_ocn_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_atm_wav_intel Checking test 138 hafs_regional_atm_wav_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_atm_wav_intel +Checking test 135 hafs_regional_atm_wav_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4972,15 +6531,26 @@ Checking test 138 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 +<<<<<<< HEAD 0: The total amount of wall time = 763.671551 0: The maximum resident set size (KB) = 849812 +======= + 0: The total amount of wall time = 762.254914 + 0: The maximum resident set size (KB) = 858576 +>>>>>>> upstream/develop Test 138 hafs_regional_atm_wav_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_atm_ocn_wav_intel Checking test 139 hafs_regional_atm_ocn_wav_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_atm_ocn_wav_intel +Checking test 136 hafs_regional_atm_ocn_wav_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4990,15 +6560,26 @@ Checking test 139 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 +<<<<<<< HEAD 0: The total amount of wall time = 867.123189 0: The maximum resident set size (KB) = 868768 +======= + 0: The total amount of wall time = 877.762980 + 0: The maximum resident set size (KB) = 878524 +>>>>>>> upstream/develop Test 139 hafs_regional_atm_ocn_wav_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_1nest_atm_intel Checking test 140 hafs_regional_1nest_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_1nest_atm_intel +Checking test 137 hafs_regional_1nest_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5019,15 +6600,26 @@ Checking test 140 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 309.565911 0: The maximum resident set size (KB) = 496764 +======= + 0: The total amount of wall time = 312.988754 + 0: The maximum resident set size (KB) = 506992 +>>>>>>> upstream/develop Test 140 hafs_regional_1nest_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_telescopic_2nests_atm_intel Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_telescopic_2nests_atm_intel +Checking test 138 hafs_regional_telescopic_2nests_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5035,15 +6627,26 @@ Checking test 141 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 376.008661 0: The maximum resident set size (KB) = 513612 +======= + 0: The total amount of wall time = 383.647748 + 0: The maximum resident set size (KB) = 517516 +>>>>>>> upstream/develop Test 141 hafs_regional_telescopic_2nests_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_global_1nest_atm_intel Checking test 142 hafs_global_1nest_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_global_1nest_atm_intel +Checking test 139 hafs_global_1nest_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5052,6 +6655,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.nest02.tile7.nc .........OK +<<<<<<< HEAD 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 @@ -5061,8 +6665,19 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.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_core.res.tile1.nc .........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.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 .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK +>>>>>>> upstream/develop 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.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 @@ -5073,7 +6688,7 @@ Checking test 142 hafs_global_1nest_atm_intel results .... 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 .........OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......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 @@ -5089,15 +6704,26 @@ Checking test 142 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 151.299760 0: The maximum resident set size (KB) = 373056 +======= + 0: The total amount of wall time = 148.588602 + 0: The maximum resident set size (KB) = 375748 +>>>>>>> upstream/develop Test 142 hafs_global_1nest_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_global_multiple_4nests_atm_intel Checking test 143 hafs_global_multiple_4nests_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_global_multiple_4nests_atm_intel +Checking test 140 hafs_global_multiple_4nests_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5123,22 +6749,33 @@ Checking test 143 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 ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK +<<<<<<< HEAD Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK +======= + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 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.tile4.nc ............ALT CHECK......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 .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc .........OK +>>>>>>> upstream/develop 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.tile6.nc ............ALT CHECK......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 @@ -5178,15 +6815,26 @@ Checking test 143 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 +<<<<<<< HEAD 0: The total amount of wall time = 413.768008 0: The maximum resident set size (KB) = 443756 +======= + 0: The total amount of wall time = 422.355471 + 0: The maximum resident set size (KB) = 475036 +>>>>>>> upstream/develop Test 143 hafs_global_multiple_4nests_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_specified_moving_1nest_atm_intel Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_specified_moving_1nest_atm_intel +Checking test 141 hafs_regional_specified_moving_1nest_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5194,15 +6842,26 @@ Checking test 144 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 206.410285 0: The maximum resident set size (KB) = 528968 +======= + 0: The total amount of wall time = 212.890356 + 0: The maximum resident set size (KB) = 525552 +>>>>>>> upstream/develop Test 144 hafs_regional_specified_moving_1nest_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_storm_following_1nest_atm_intel Checking test 145 hafs_regional_storm_following_1nest_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_storm_following_1nest_atm_intel +Checking test 142 hafs_regional_storm_following_1nest_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5223,15 +6882,26 @@ Checking test 145 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 +<<<<<<< HEAD 0: The total amount of wall time = 192.887449 0: The maximum resident set size (KB) = 529148 +======= + 0: The total amount of wall time = 204.634895 + 0: The maximum resident set size (KB) = 531328 +>>>>>>> upstream/develop Test 145 hafs_regional_storm_following_1nest_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_storm_following_1nest_atm_ocn_intel +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5239,29 +6909,51 @@ Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK +<<<<<<< HEAD 0: The total amount of wall time = 233.521592 0: The maximum resident set size (KB) = 580336 +======= + 0: The total amount of wall time = 239.534772 + 0: The maximum resident set size (KB) = 582400 +>>>>>>> upstream/develop Test 146 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_global_storm_following_1nest_atm_intel Checking test 147 hafs_global_storm_following_1nest_atm_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_global_storm_following_1nest_atm_intel +Checking test 144 hafs_global_storm_following_1nest_atm_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 63.515153 0: The maximum resident set size (KB) = 402332 +======= + 0: The total amount of wall time = 62.380409 + 0: The maximum resident set size (KB) = 401956 +>>>>>>> upstream/develop Test 147 hafs_global_storm_following_1nest_atm_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/gnv1_nested_intel Checking test 148 gnv1_nested_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/gnv1_nested_intel +Checking test 145 gnv1_nested_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5272,6 +6964,7 @@ Checking test 148 gnv1_nested_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 +<<<<<<< HEAD Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_core.res.tile4.nc .........OK Comparing RESTART/20200825.180000.fv_core.res.tile5.nc ............ALT CHECK......OK @@ -5283,6 +6976,19 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile4.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 .........OK +======= + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc .........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_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.tile4.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 +>>>>>>> upstream/develop 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 @@ -5297,7 +7003,7 @@ Checking test 148 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 ............ALT CHECK......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.tile2.nc .........OK Comparing RESTART/20200825.180000.sfc_data.tile3.nc .........OK @@ -5307,29 +7013,51 @@ Checking test 148 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 233.992971 0: The maximum resident set size (KB) = 795644 +======= + 0: The total amount of wall time = 238.129596 + 0: The maximum resident set size (KB) = 801296 +>>>>>>> upstream/develop Test 148 gnv1_nested_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel results .... +>>>>>>> upstream/develop Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 734.720842 0: The maximum resident set size (KB) = 554840 +======= + 0: The total amount of wall time = 742.764850 + 0: The maximum resident set size (KB) = 566396 +>>>>>>> upstream/develop Test 149 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +Checking test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... +>>>>>>> upstream/develop Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -5339,162 +7067,294 @@ Checking test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 499.014984 0: The maximum resident set size (KB) = 669448 +======= + 0: The total amount of wall time = 514.941287 + 0: The maximum resident set size (KB) = 664788 +>>>>>>> upstream/develop Test 150 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_docn_intel Checking test 151 hafs_regional_docn_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_docn_intel +Checking test 148 hafs_regional_docn_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 363.266582 0: The maximum resident set size (KB) = 819988 +======= + 0: The total amount of wall time = 370.838336 + 0: The maximum resident set size (KB) = 823776 +>>>>>>> upstream/develop Test 151 hafs_regional_docn_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_docn_oisst_intel Checking test 152 hafs_regional_docn_oisst_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_docn_oisst_intel +Checking test 149 hafs_regional_docn_oisst_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 368.910511 0: The maximum resident set size (KB) = 807604 +======= + 0: The total amount of wall time = 372.268062 + 0: The maximum resident set size (KB) = 812840 +>>>>>>> upstream/develop Test 152 hafs_regional_docn_oisst_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hafs_regional_datm_cdeps_intel Checking test 153 hafs_regional_datm_cdeps_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hafs_regional_datm_cdeps_intel +Checking test 150 hafs_regional_datm_cdeps_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 958.109914 0: The maximum resident set size (KB) = 1145896 +======= + 0: The total amount of wall time = 963.281514 + 0: The maximum resident set size (KB) = 1210332 +>>>>>>> upstream/develop Test 153 hafs_regional_datm_cdeps_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_control_cfsr_intel Checking test 154 datm_cdeps_control_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_control_cfsr_intel +Checking test 151 datm_cdeps_control_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 152.364219 0: The maximum resident set size (KB) = 1106660 +======= + 0: The total amount of wall time = 151.049256 + 0: The maximum resident set size (KB) = 1120052 +>>>>>>> upstream/develop Test 154 datm_cdeps_control_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_restart_cfsr_intel Checking test 155 datm_cdeps_restart_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_restart_cfsr_intel +Checking test 152 datm_cdeps_restart_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 91.809927 0: The maximum resident set size (KB) = 1050244 +======= + 0: The total amount of wall time = 89.677087 + 0: The maximum resident set size (KB) = 1068548 +>>>>>>> upstream/develop Test 155 datm_cdeps_restart_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_control_gefs_intel Checking test 156 datm_cdeps_control_gefs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_control_gefs_intel +Checking test 153 datm_cdeps_control_gefs_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 142.861977 0: The maximum resident set size (KB) = 999880 +======= + 0: The total amount of wall time = 144.203041 + 0: The maximum resident set size (KB) = 1009136 +>>>>>>> upstream/develop Test 156 datm_cdeps_control_gefs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_iau_gefs_intel Checking test 157 datm_cdeps_iau_gefs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_iau_gefs_intel +Checking test 154 datm_cdeps_iau_gefs_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 150.308226 0: The maximum resident set size (KB) = 999672 +======= + 0: The total amount of wall time = 146.882526 + 0: The maximum resident set size (KB) = 1005980 +>>>>>>> upstream/develop Test 157 datm_cdeps_iau_gefs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_stochy_gefs_intel Checking test 158 datm_cdeps_stochy_gefs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_stochy_gefs_intel +Checking test 155 datm_cdeps_stochy_gefs_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 152.048065 0: The maximum resident set size (KB) = 986912 +======= + 0: The total amount of wall time = 148.981422 + 0: The maximum resident set size (KB) = 1006516 +>>>>>>> upstream/develop Test 158 datm_cdeps_stochy_gefs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_ciceC_cfsr_intel Checking test 159 datm_cdeps_ciceC_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_ciceC_cfsr_intel +Checking test 156 datm_cdeps_ciceC_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 160.340738 0: The maximum resident set size (KB) = 1111152 +======= + 0: The total amount of wall time = 149.204003 + 0: The maximum resident set size (KB) = 1114656 +>>>>>>> upstream/develop Test 159 datm_cdeps_ciceC_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_bulk_cfsr_intel Checking test 160 datm_cdeps_bulk_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_bulk_cfsr_intel +Checking test 157 datm_cdeps_bulk_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 152.633475 0: The maximum resident set size (KB) = 1102196 +======= + 0: The total amount of wall time = 149.240696 + 0: The maximum resident set size (KB) = 1124444 +>>>>>>> upstream/develop Test 160 datm_cdeps_bulk_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_bulk_gefs_intel Checking test 161 datm_cdeps_bulk_gefs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_bulk_gefs_intel +Checking test 158 datm_cdeps_bulk_gefs_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 144.399083 0: The maximum resident set size (KB) = 1003676 +======= + 0: The total amount of wall time = 140.190612 + 0: The maximum resident set size (KB) = 1005660 +>>>>>>> upstream/develop Test 161 datm_cdeps_bulk_gefs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_mx025_cfsr_intel Checking test 162 datm_cdeps_mx025_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_mx025_cfsr_intel +Checking test 159 datm_cdeps_mx025_cfsr_intel results .... +>>>>>>> upstream/develop 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 @@ -5502,15 +7362,26 @@ Checking test 162 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 +<<<<<<< HEAD 0: The total amount of wall time = 420.778092 0: The maximum resident set size (KB) = 1025176 +======= + 0: The total amount of wall time = 356.134747 + 0: The maximum resident set size (KB) = 1052548 +>>>>>>> upstream/develop Test 162 datm_cdeps_mx025_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_mx025_gefs_intel Checking test 163 datm_cdeps_mx025_gefs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_mx025_gefs_intel +Checking test 160 datm_cdeps_mx025_gefs_intel results .... +>>>>>>> upstream/develop 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 @@ -5518,12 +7389,18 @@ Checking test 163 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 +<<<<<<< HEAD 0: The total amount of wall time = 431.172702 0: The maximum resident set size (KB) = 1011968 +======= + 0: The total amount of wall time = 351.660613 + 0: The maximum resident set size (KB) = 1028152 +>>>>>>> upstream/develop Test 163 datm_cdeps_mx025_gefs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_multiple_files_cfsr_intel Checking test 164 datm_cdeps_multiple_files_cfsr_intel results .... @@ -5531,65 +7408,124 @@ Checking test 164 datm_cdeps_multiple_files_cfsr_intel results .... 0: The total amount of wall time = 155.791985 0: The maximum resident set size (KB) = 1101828 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 149.724830 + 0: The maximum resident set size (KB) = 1125076 +>>>>>>> upstream/develop Test 164 datm_cdeps_multiple_files_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_3072x1536_cfsr_intel Checking test 165 datm_cdeps_3072x1536_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_3072x1536_cfsr_intel +Checking test 162 datm_cdeps_3072x1536_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 227.725226 0: The maximum resident set size (KB) = 2461384 +======= + 0: The total amount of wall time = 240.925380 + 0: The maximum resident set size (KB) = 2416940 +>>>>>>> upstream/develop Test 165 datm_cdeps_3072x1536_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_gfs_intel Checking test 166 datm_cdeps_gfs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_gfs_intel +Checking test 163 datm_cdeps_gfs_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 246.778741 0: The maximum resident set size (KB) = 2434608 +======= + 0: The total amount of wall time = 236.910194 + 0: The maximum resident set size (KB) = 2471784 +>>>>>>> upstream/develop Test 166 datm_cdeps_gfs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_debug_cfsr_intel Checking test 167 datm_cdeps_debug_cfsr_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_debug_cfsr_intel +Checking test 164 datm_cdeps_debug_cfsr_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 351.943920 0: The maximum resident set size (KB) = 1044116 +======= + 0: The total amount of wall time = 353.690193 + 0: The maximum resident set size (KB) = 1047580 +>>>>>>> upstream/develop Test 167 datm_cdeps_debug_cfsr_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_control_cfsr_faster_intel Checking test 168 datm_cdeps_control_cfsr_faster_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_control_cfsr_faster_intel +Checking test 165 datm_cdeps_control_cfsr_faster_intel results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 149.471757 0: The maximum resident set size (KB) = 1109780 +======= + 0: The total amount of wall time = 152.739014 + 0: The maximum resident set size (KB) = 1130540 +>>>>>>> upstream/develop Test 168 datm_cdeps_control_cfsr_faster_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_lnd_gswp3_intel Checking test 169 datm_cdeps_lnd_gswp3_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_lnd_gswp3_intel +Checking test 166 datm_cdeps_lnd_gswp3_intel results .... +>>>>>>> upstream/develop 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 @@ -5597,15 +7533,26 @@ Checking test 169 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 +<<<<<<< HEAD 0: The total amount of wall time = 8.211638 0: The maximum resident set size (KB) = 243256 +======= + 0: The total amount of wall time = 6.932927 + 0: The maximum resident set size (KB) = 247832 +>>>>>>> upstream/develop Test 169 datm_cdeps_lnd_gswp3_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_lnd_gswp3_rst_intel Checking test 170 datm_cdeps_lnd_gswp3_rst_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_lnd_gswp3_rst_intel +Checking test 167 datm_cdeps_lnd_gswp3_rst_intel results .... +>>>>>>> upstream/develop 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 @@ -5613,15 +7560,26 @@ Checking test 170 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 +<<<<<<< HEAD 0: The total amount of wall time = 10.155274 0: The maximum resident set size (KB) = 248608 +======= + 0: The total amount of wall time = 12.339099 + 0: The maximum resident set size (KB) = 255812 +>>>>>>> upstream/develop Test 170 datm_cdeps_lnd_gswp3_rst_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_atmlnd_sbs_intel Checking test 171 control_p8_atmlnd_sbs_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_atmlnd_sbs_intel +Checking test 168 control_p8_atmlnd_sbs_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -5705,15 +7663,26 @@ Checking test 171 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 +<<<<<<< HEAD 0: The total amount of wall time = 194.349557 0: The maximum resident set size (KB) = 1622608 +======= + 0: The total amount of wall time = 191.930814 + 0: The maximum resident set size (KB) = 1623132 +>>>>>>> upstream/develop Test 171 control_p8_atmlnd_sbs_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/atmwav_control_noaero_p8_intel Checking test 172 atmwav_control_noaero_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/atmwav_control_noaero_p8_intel +Checking test 169 atmwav_control_noaero_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5755,15 +7724,26 @@ Checking test 172 atmwav_control_noaero_p8_intel results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 91.274618 0: The maximum resident set size (KB) = 1661596 +======= + 0: The total amount of wall time = 91.447944 + 0: The maximum resident set size (KB) = 1657780 +>>>>>>> upstream/develop Test 172 atmwav_control_noaero_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_atmwav_intel Checking test 173 control_atmwav_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_atmwav_intel +Checking test 170 control_atmwav_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -5806,15 +7786,26 @@ Checking test 173 control_atmwav_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK +<<<<<<< HEAD 0: The total amount of wall time = 88.129510 0: The maximum resident set size (KB) = 677168 +======= + 0: The total amount of wall time = 87.510347 + 0: The maximum resident set size (KB) = 668424 +>>>>>>> upstream/develop Test 173 control_atmwav_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/atmaero_control_p8_intel Checking test 174 atmaero_control_p8_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/atmaero_control_p8_intel +Checking test 171 atmaero_control_p8_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5857,15 +7848,26 @@ Checking test 174 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 224.278049 0: The maximum resident set size (KB) = 2979852 +======= + 0: The total amount of wall time = 223.958559 + 0: The maximum resident set size (KB) = 3012944 +>>>>>>> upstream/develop Test 174 atmaero_control_p8_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/atmaero_control_p8_rad_intel Checking test 175 atmaero_control_p8_rad_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/atmaero_control_p8_rad_intel +Checking test 172 atmaero_control_p8_rad_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5908,15 +7910,26 @@ Checking test 175 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 277.587120 0: The maximum resident set size (KB) = 3064604 +======= + 0: The total amount of wall time = 278.596259 + 0: The maximum resident set size (KB) = 3082472 +>>>>>>> upstream/develop Test 175 atmaero_control_p8_rad_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/atmaero_control_p8_rad_micro_intel Checking test 176 atmaero_control_p8_rad_micro_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/atmaero_control_p8_rad_micro_intel +Checking test 173 atmaero_control_p8_rad_micro_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5959,15 +7972,26 @@ Checking test 176 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 +<<<<<<< HEAD 0: The total amount of wall time = 290.752442 0: The maximum resident set size (KB) = 3087788 +======= + 0: The total amount of wall time = 289.144227 + 0: The maximum resident set size (KB) = 3102384 +>>>>>>> upstream/develop Test 176 atmaero_control_p8_rad_micro_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_atmaq_intel Checking test 177 regional_atmaq_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_atmaq_intel +Checking test 174 regional_atmaq_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5982,36 +8006,58 @@ Checking test 177 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc ............ALT CHECK......OK +<<<<<<< HEAD 0: The total amount of wall time = 659.417506 0: The maximum resident set size (KB) = 5125624 +======= + 0: The total amount of wall time = 694.276335 + 0: The maximum resident set size (KB) = 5107840 +>>>>>>> upstream/develop Test 177 regional_atmaq_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_atmaq_debug_intel Checking test 178 regional_atmaq_debug_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_atmaq_debug_intel +Checking test 175 regional_atmaq_debug_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK Comparing RESTART/20190801.130000.coupler.res .........OK Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1204.723533 0: The maximum resident set size (KB) = 4496956 +======= + 0: The total amount of wall time = 1212.178796 + 0: The maximum resident set size (KB) = 4503304 +>>>>>>> upstream/develop Test 178 regional_atmaq_debug_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_atmaq_faster_intel Checking test 179 regional_atmaq_faster_intel results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_atmaq_faster_intel +Checking test 176 regional_atmaq_faster_intel results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -6022,19 +8068,34 @@ Checking test 179 regional_atmaq_faster_intel results .... 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 +<<<<<<< HEAD Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK Comparing RESTART/20190801.180000.phy_data.nc ............ALT CHECK......OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK 0: The total amount of wall time = 820.364125 0: The maximum resident set size (KB) = 5032952 +======= + 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 ............ALT CHECK......OK + + 0: The total amount of wall time = 847.244999 + 0: The maximum resident set size (KB) = 5099944 +>>>>>>> upstream/develop Test 179 regional_atmaq_faster_intel PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c48_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_c48_gnu Checking test 180 control_c48_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c48_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_c48_gnu +Checking test 177 control_c48_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6072,15 +8133,26 @@ Checking test 180 control_c48_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 694.018445 0: The maximum resident set size (KB) = 790076 +======= +0: The total amount of wall time = 698.456971 +0: The maximum resident set size (KB) = 791908 +>>>>>>> upstream/develop Test 180 control_c48_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_stochy_gnu Checking test 181 control_stochy_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_stochy_gnu +Checking test 178 control_stochy_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -6090,15 +8162,26 @@ Checking test 181 control_stochy_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 231.982831 0: The maximum resident set size (KB) = 515816 +======= + 0: The total amount of wall time = 226.593208 + 0: The maximum resident set size (KB) = 550572 +>>>>>>> upstream/develop Test 181 control_stochy_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_ras_gnu Checking test 182 control_ras_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_ras_gnu +Checking test 179 control_ras_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6108,15 +8191,26 @@ Checking test 182 control_ras_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 285.429345 0: The maximum resident set size (KB) = 555972 +======= + 0: The total amount of wall time = 286.369278 + 0: The maximum resident set size (KB) = 554572 +>>>>>>> upstream/develop Test 182 control_ras_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_gnu Checking test 183 control_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_gnu +Checking test 180 control_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6162,15 +8256,26 @@ Checking test 183 control_p8_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 284.999951 0: The maximum resident set size (KB) = 1307896 +======= + 0: The total amount of wall time = 287.741627 + 0: The maximum resident set size (KB) = 1304320 +>>>>>>> upstream/develop Test 183 control_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_p8_ugwpv1_gnu Checking test 184 control_p8_ugwpv1_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_p8_ugwpv1_gnu +Checking test 181 control_p8_ugwpv1_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6216,15 +8321,26 @@ Checking test 184 control_p8_ugwpv1_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 270.575127 0: The maximum resident set size (KB) = 1307236 +======= + 0: The total amount of wall time = 269.377457 + 0: The maximum resident set size (KB) = 1307676 +>>>>>>> upstream/develop Test 184 control_p8_ugwpv1_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_flake_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_flake_gnu Checking test 185 control_flake_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_flake_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_flake_gnu +Checking test 182 control_flake_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -6234,15 +8350,26 @@ Checking test 185 control_flake_gnu results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 345.228811 0: The maximum resident set size (KB) = 564204 +======= + 0: The total amount of wall time = 344.086577 + 0: The maximum resident set size (KB) = 597208 +>>>>>>> upstream/develop Test 185 control_flake_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_gnu Checking test 186 rap_control_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_gnu +Checking test 183 rap_control_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6288,15 +8415,26 @@ Checking test 186 rap_control_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 695.981116 0: The maximum resident set size (KB) = 859288 +======= + 0: The total amount of wall time = 696.434532 + 0: The maximum resident set size (KB) = 903796 +>>>>>>> upstream/develop Test 186 rap_control_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_decomp_gnu Checking test 187 rap_decomp_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_decomp_gnu +Checking test 184 rap_decomp_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6342,15 +8480,26 @@ Checking test 187 rap_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 700.173459 0: The maximum resident set size (KB) = 865524 +======= + 0: The total amount of wall time = 707.802780 + 0: The maximum resident set size (KB) = 903208 +>>>>>>> upstream/develop Test 187 rap_decomp_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_2threads_gnu Checking test 188 rap_2threads_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_2threads_gnu +Checking test 185 rap_2threads_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -6396,15 +8545,26 @@ Checking test 188 rap_2threads_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 621.014745 0: The maximum resident set size (KB) = 974996 +======= + 0: The total amount of wall time = 635.786805 + 0: The maximum resident set size (KB) = 983704 +>>>>>>> upstream/develop Test 188 rap_2threads_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_restart_gnu Checking test 189 rap_restart_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_restart_gnu +Checking test 186 rap_restart_gnu results .... +>>>>>>> upstream/develop Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -6442,15 +8602,26 @@ Checking test 189 rap_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 352.106298 0: The maximum resident set size (KB) = 621376 +======= + 0: The total amount of wall time = 353.897989 + 0: The maximum resident set size (KB) = 630176 +>>>>>>> upstream/develop Test 189 rap_restart_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_gnu Checking test 190 rap_sfcdiff_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_gnu +Checking test 187 rap_sfcdiff_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6496,15 +8667,26 @@ Checking test 190 rap_sfcdiff_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 691.120822 0: The maximum resident set size (KB) = 862060 +======= + 0: The total amount of wall time = 693.873927 + 0: The maximum resident set size (KB) = 900204 +>>>>>>> upstream/develop Test 190 rap_sfcdiff_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_decomp_gnu Checking test 191 rap_sfcdiff_decomp_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_decomp_gnu +Checking test 188 rap_sfcdiff_decomp_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6550,15 +8732,26 @@ Checking test 191 rap_sfcdiff_decomp_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 704.155189 0: The maximum resident set size (KB) = 861268 +======= + 0: The total amount of wall time = 718.889256 + 0: The maximum resident set size (KB) = 897372 +>>>>>>> upstream/develop Test 191 rap_sfcdiff_decomp_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_sfcdiff_restart_gnu Checking test 192 rap_sfcdiff_restart_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_sfcdiff_restart_gnu +Checking test 189 rap_sfcdiff_restart_gnu results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -6596,15 +8789,26 @@ Checking test 192 rap_sfcdiff_restart_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 519.417096 0: The maximum resident set size (KB) = 628100 +======= + 0: The total amount of wall time = 521.554828 + 0: The maximum resident set size (KB) = 629124 +>>>>>>> upstream/develop Test 192 rap_sfcdiff_restart_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_gnu Checking test 193 hrrr_control_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_gnu +Checking test 190 hrrr_control_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6650,15 +8854,26 @@ Checking test 193 hrrr_control_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 351.586152 0: The maximum resident set size (KB) = 852704 +======= + 0: The total amount of wall time = 355.645136 + 0: The maximum resident set size (KB) = 897488 +>>>>>>> upstream/develop Test 193 hrrr_control_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_noqr_gnu Checking test 194 hrrr_control_noqr_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_noqr_gnu +Checking test 191 hrrr_control_noqr_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6704,15 +8919,26 @@ Checking test 194 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 +<<<<<<< HEAD 0: The total amount of wall time = 344.094628 0: The maximum resident set size (KB) = 843216 +======= + 0: The total amount of wall time = 350.893307 + 0: The maximum resident set size (KB) = 887240 +>>>>>>> upstream/develop Test 194 hrrr_control_noqr_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_2threads_gnu Checking test 195 hrrr_control_2threads_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_2threads_gnu +Checking test 192 hrrr_control_2threads_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6758,15 +8984,26 @@ Checking test 195 hrrr_control_2threads_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 305.185669 0: The maximum resident set size (KB) = 971564 +======= + 0: The total amount of wall time = 315.248043 + 0: The maximum resident set size (KB) = 974300 +>>>>>>> upstream/develop Test 195 hrrr_control_2threads_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_decomp_gnu Checking test 196 hrrr_control_decomp_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_decomp_gnu +Checking test 193 hrrr_control_decomp_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6812,43 +9049,76 @@ Checking test 196 hrrr_control_decomp_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 348.157208 0: The maximum resident set size (KB) = 853948 +======= + 0: The total amount of wall time = 356.108479 + 0: The maximum resident set size (KB) = 897160 +>>>>>>> upstream/develop Test 196 hrrr_control_decomp_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_restart_gnu Checking test 197 hrrr_control_restart_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_restart_gnu +Checking test 194 hrrr_control_restart_gnu results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 185.667392 0: The maximum resident set size (KB) = 606760 +======= + 0: The total amount of wall time = 185.492266 + 0: The maximum resident set size (KB) = 614120 +>>>>>>> upstream/develop Test 197 hrrr_control_restart_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_restart_noqr_gnu Checking test 198 hrrr_control_restart_noqr_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_restart_noqr_gnu +Checking test 195 hrrr_control_restart_noqr_gnu results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 180.917222 0: The maximum resident set size (KB) = 700868 +======= + 0: The total amount of wall time = 181.330649 + 0: The maximum resident set size (KB) = 708544 +>>>>>>> upstream/develop Test 198 hrrr_control_restart_noqr_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1beta_gnu Checking test 199 rrfs_v1beta_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1beta_gnu +Checking test 196 rrfs_v1beta_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -6894,225 +9164,401 @@ Checking test 199 rrfs_v1beta_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 675.785722 0: The maximum resident set size (KB) = 857656 +======= + 0: The total amount of wall time = 700.906257 + 0: The maximum resident set size (KB) = 896652 +>>>>>>> upstream/develop Test 199 rrfs_v1beta_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_diag_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_diag_debug_gnu Checking test 200 control_diag_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_diag_debug_gnu +Checking test 197 control_diag_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 84.657283 0: The maximum resident set size (KB) = 560152 +======= + 0: The total amount of wall time = 86.885354 + 0: The maximum resident set size (KB) = 592532 +>>>>>>> upstream/develop Test 200 control_diag_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/regional_debug_gnu Checking test 201 regional_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/regional_debug_gnu +Checking test 198 regional_debug_gnu results .... +>>>>>>> upstream/develop Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 446.747586 0: The maximum resident set size (KB) = 596032 +======= + 0: The total amount of wall time = 434.016361 + 0: The maximum resident set size (KB) = 598576 +>>>>>>> upstream/develop Test 201 regional_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_debug_gnu Checking test 202 rap_control_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_debug_gnu +Checking test 199 rap_control_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 141.860569 0: The maximum resident set size (KB) = 874264 +======= + 0: The total amount of wall time = 138.811266 + 0: The maximum resident set size (KB) = 911336 +>>>>>>> upstream/develop Test 202 rap_control_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_debug_gnu Checking test 203 hrrr_control_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_debug_gnu +Checking test 200 hrrr_control_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 137.496582 0: The maximum resident set size (KB) = 901296 +======= + 0: The total amount of wall time = 137.450500 + 0: The maximum resident set size (KB) = 902184 +>>>>>>> upstream/develop Test 203 hrrr_control_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_gf_debug_gnu Checking test 204 hrrr_gf_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_gf_debug_gnu +Checking test 201 hrrr_gf_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 140.380038 0: The maximum resident set size (KB) = 904476 +======= + 0: The total amount of wall time = 142.017031 + 0: The maximum resident set size (KB) = 909856 +>>>>>>> upstream/develop Test 204 hrrr_gf_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_c3_debug_gnu Checking test 205 hrrr_c3_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_c3_debug_gnu +Checking test 202 hrrr_c3_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 139.835249 0: The maximum resident set size (KB) = 872296 +======= + 0: The total amount of wall time = 141.103109 + 0: The maximum resident set size (KB) = 905300 +>>>>>>> upstream/develop Test 205 hrrr_c3_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_diag_debug_gnu Checking test 206 rap_diag_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_diag_debug_gnu +Checking test 203 rap_diag_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 152.676589 0: The maximum resident set size (KB) = 957612 +======= + 0: The total amount of wall time = 153.599901 + 0: The maximum resident set size (KB) = 990472 +>>>>>>> upstream/develop Test 206 rap_diag_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_noah_sfcdiff_cires_ugwp_debug_gnu Checking test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_noah_sfcdiff_cires_ugwp_debug_gnu +Checking test 204 rap_noah_sfcdiff_cires_ugwp_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 219.055523 0: The maximum resident set size (KB) = 906876 +======= + 0: The total amount of wall time = 220.731317 + 0: The maximum resident set size (KB) = 910272 +>>>>>>> upstream/develop Test 207 rap_noah_sfcdiff_cires_ugwp_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_progcld_thompson_debug_gnu Checking test 208 rap_progcld_thompson_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_progcld_thompson_debug_gnu +Checking test 205 rap_progcld_thompson_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 140.663966 0: The maximum resident set size (KB) = 906248 +======= + 0: The total amount of wall time = 143.608758 + 0: The maximum resident set size (KB) = 911248 +>>>>>>> upstream/develop Test 208 rap_progcld_thompson_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rrfs_v1beta_debug_gnu Checking test 209 rrfs_v1beta_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rrfs_v1beta_debug_gnu +Checking test 206 rrfs_v1beta_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 141.985257 0: The maximum resident set size (KB) = 870160 +======= + 0: The total amount of wall time = 137.374179 + 0: The maximum resident set size (KB) = 905548 +>>>>>>> upstream/develop Test 209 rrfs_v1beta_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_ras_debug_gnu Checking test 210 control_ras_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_ras_debug_gnu +Checking test 207 control_ras_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 83.714979 0: The maximum resident set size (KB) = 510432 +======= + 0: The total amount of wall time = 81.869810 + 0: The maximum resident set size (KB) = 544792 +>>>>>>> upstream/develop Test 210 control_ras_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_stochy_debug_gnu Checking test 211 control_stochy_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_stochy_debug_gnu +Checking test 208 control_stochy_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 124.533195 0: The maximum resident set size (KB) = 501532 +======= + 0: The total amount of wall time = 125.980051 + 0: The maximum resident set size (KB) = 536112 +>>>>>>> upstream/develop Test 211 control_stochy_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_debug_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_debug_p8_gnu Checking test 212 control_debug_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/control_debug_p8_gnu +Checking test 209 control_debug_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 90.579900 0: The maximum resident set size (KB) = 1291028 +======= + 0: The total amount of wall time = 144.234570 + 0: The maximum resident set size (KB) = 1293256 +>>>>>>> upstream/develop Test 212 control_debug_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_flake_debug_gnu Checking test 213 rap_flake_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_flake_debug_gnu +Checking test 210 rap_flake_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 145.114978 0: The maximum resident set size (KB) = 872516 +======= + 0: The total amount of wall time = 157.419120 + 0: The maximum resident set size (KB) = 908748 +>>>>>>> upstream/develop Test 213 rap_flake_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_clm_lake_debug_gnu Checking test 214 rap_clm_lake_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_clm_lake_debug_gnu +Checking test 211 rap_clm_lake_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 158.896909 0: The maximum resident set size (KB) = 874696 +======= + 0: The total amount of wall time = 162.583546 + 0: The maximum resident set size (KB) = 909176 +>>>>>>> upstream/develop Test 214 rap_clm_lake_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/gnv1_c96_no_nest_debug_gnu Checking test 215 gnv1_c96_no_nest_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/gnv1_c96_no_nest_debug_gnu +Checking test 212 gnv1_c96_no_nest_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7152,12 +9598,18 @@ Checking test 215 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 +<<<<<<< HEAD 0: The total amount of wall time = 241.125087 0: The maximum resident set size (KB) = 875784 +======= + 0: The total amount of wall time = 263.873400 + 0: The maximum resident set size (KB) = 913372 +>>>>>>> upstream/develop Test 215 gnv1_c96_no_nest_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/control_wam_debug_gnu Checking test 216 control_wam_debug_gnu results .... @@ -7166,13 +9618,29 @@ Checking test 216 control_wam_debug_gnu results .... 0: The total amount of wall time = 139.449295 0: The maximum resident set size (KB) = 242512 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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.945788 + 0: The maximum resident set size (KB) = 241648 +>>>>>>> upstream/develop Test 216 control_wam_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn32_phy32_gnu Checking test 217 rap_control_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn32_phy32_gnu +Checking test 214 rap_control_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7218,15 +9686,26 @@ Checking test 217 rap_control_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 700.333934 0: The maximum resident set size (KB) = 755124 +======= + 0: The total amount of wall time = 737.329104 + 0: The maximum resident set size (KB) = 751720 +>>>>>>> upstream/develop Test 217 rap_control_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_dyn32_phy32_gnu Checking test 218 hrrr_control_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_dyn32_phy32_gnu +Checking test 215 hrrr_control_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7272,15 +9751,26 @@ Checking test 218 hrrr_control_dyn32_phy32_gnu results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 354.793177 0: The maximum resident set size (KB) = 745448 +======= + 0: The total amount of wall time = 389.889111 + 0: The maximum resident set size (KB) = 751100 +>>>>>>> upstream/develop Test 218 hrrr_control_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_2threads_dyn32_phy32_gnu Checking test 219 rap_2threads_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_2threads_dyn32_phy32_gnu +Checking test 216 rap_2threads_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7326,15 +9816,26 @@ Checking test 219 rap_2threads_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 625.485936 0: The maximum resident set size (KB) = 801180 +======= + 0: The total amount of wall time = 629.769199 + 0: The maximum resident set size (KB) = 805404 +>>>>>>> upstream/develop Test 219 rap_2threads_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_2threads_dyn32_phy32_gnu Checking test 220 hrrr_control_2threads_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_2threads_dyn32_phy32_gnu +Checking test 217 hrrr_control_2threads_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7380,15 +9881,26 @@ Checking test 220 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 +<<<<<<< HEAD 0: The total amount of wall time = 310.101966 0: The maximum resident set size (KB) = 804224 +======= + 0: The total amount of wall time = 314.423053 + 0: The maximum resident set size (KB) = 805252 +>>>>>>> upstream/develop Test 220 hrrr_control_2threads_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_decomp_dyn32_phy32_gnu Checking test 221 hrrr_control_decomp_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_decomp_dyn32_phy32_gnu +Checking test 218 hrrr_control_decomp_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7434,15 +9946,26 @@ Checking test 221 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 +<<<<<<< HEAD 0: The total amount of wall time = 350.530772 0: The maximum resident set size (KB) = 754052 +======= + 0: The total amount of wall time = 357.695337 + 0: The maximum resident set size (KB) = 749980 +>>>>>>> upstream/develop Test 221 hrrr_control_decomp_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_restart_dyn32_phy32_gnu Checking test 222 rap_restart_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_restart_dyn32_phy32_gnu +Checking test 219 rap_restart_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -7480,29 +10003,51 @@ Checking test 222 rap_restart_dyn32_phy32_gnu results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 536.616417 0: The maximum resident set size (KB) = 593964 +======= + 0: The total amount of wall time = 525.907167 + 0: The maximum resident set size (KB) = 594368 +>>>>>>> upstream/develop Test 222 rap_restart_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_restart_dyn32_phy32_gnu Checking test 223 hrrr_control_restart_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_restart_dyn32_phy32_gnu +Checking test 220 hrrr_control_restart_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 188.327970 0: The maximum resident set size (KB) = 580936 +======= + 0: The total amount of wall time = 202.012829 + 0: The maximum resident set size (KB) = 585628 +>>>>>>> upstream/develop Test 223 hrrr_control_restart_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_control_gnu Checking test 224 conus13km_control_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_control_gnu +Checking test 221 conus13km_control_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -7517,26 +10062,43 @@ Checking test 224 conus13km_control_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 244.835925 0: The maximum resident set size (KB) = 949260 +======= + 0: The total amount of wall time = 244.003374 + 0: The maximum resident set size (KB) = 951468 +>>>>>>> upstream/develop Test 224 conus13km_control_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_2threads_gnu Checking test 225 conus13km_2threads_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_2threads_gnu +Checking test 222 conus13km_2threads_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 103.464880 0: The maximum resident set size (KB) = 984980 +======= + 0: The total amount of wall time = 102.631547 + 0: The maximum resident set size (KB) = 984220 +>>>>>>> upstream/develop Test 225 conus13km_2threads_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_restart_mismatch_gnu Checking test 226 conus13km_restart_mismatch_gnu results .... @@ -7545,13 +10107,29 @@ Checking test 226 conus13km_restart_mismatch_gnu results .... 0: The total amount of wall time = 129.795746 0: The maximum resident set size (KB) = 604560 +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/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 = 128.422593 + 0: The maximum resident set size (KB) = 603480 +>>>>>>> upstream/develop Test 226 conus13km_restart_mismatch_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn64_phy32_gnu Checking test 227 rap_control_dyn64_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn64_phy32_gnu +Checking test 224 rap_control_dyn64_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -7597,43 +10175,76 @@ Checking test 227 rap_control_dyn64_phy32_gnu results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 408.995812 0: The maximum resident set size (KB) = 780664 +======= + 0: The total amount of wall time = 412.780034 + 0: The maximum resident set size (KB) = 788048 +>>>>>>> upstream/develop Test 227 rap_control_dyn64_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_debug_dyn32_phy32_gnu Checking test 228 rap_control_debug_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_debug_dyn32_phy32_gnu +Checking test 225 rap_control_debug_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 141.938247 0: The maximum resident set size (KB) = 764040 +======= + 0: The total amount of wall time = 141.800864 + 0: The maximum resident set size (KB) = 765804 +>>>>>>> upstream/develop Test 228 rap_control_debug_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/hrrr_control_debug_dyn32_phy32_gnu Checking test 229 hrrr_control_debug_dyn32_phy32_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/hrrr_control_debug_dyn32_phy32_gnu +Checking test 226 hrrr_control_debug_dyn32_phy32_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 138.460355 0: The maximum resident set size (KB) = 758648 +======= + 0: The total amount of wall time = 138.951241 + 0: The maximum resident set size (KB) = 765600 +>>>>>>> upstream/develop Test 229 hrrr_control_debug_dyn32_phy32_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_gnu Checking test 230 conus13km_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_gnu +Checking test 227 conus13km_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7646,15 +10257,26 @@ Checking test 230 conus13km_debug_gnu results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 415.874358 0: The maximum resident set size (KB) = 967428 +======= + 0: The total amount of wall time = 423.428719 + 0: The maximum resident set size (KB) = 969108 +>>>>>>> upstream/develop Test 230 conus13km_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_qr_gnu Checking test 231 conus13km_debug_qr_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_qr_gnu +Checking test 228 conus13km_debug_qr_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -7667,57 +10289,101 @@ Checking test 231 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 +<<<<<<< HEAD 0: The total amount of wall time = 418.977891 0: The maximum resident set size (KB) = 636844 +======= + 0: The total amount of wall time = 416.514265 + 0: The maximum resident set size (KB) = 638908 +>>>>>>> upstream/develop Test 231 conus13km_debug_qr_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_debug_2threads_gnu Checking test 232 conus13km_debug_2threads_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_debug_2threads_gnu +Checking test 229 conus13km_debug_2threads_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 255.515086 0: The maximum resident set size (KB) = 1006808 +======= + 0: The total amount of wall time = 258.744366 + 0: The maximum resident set size (KB) = 1001812 +>>>>>>> upstream/develop Test 232 conus13km_debug_2threads_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/conus13km_radar_tten_debug_gnu Checking test 233 conus13km_radar_tten_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/conus13km_radar_tten_debug_gnu +Checking test 230 conus13km_radar_tten_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 421.951827 0: The maximum resident set size (KB) = 1033552 +======= + 0: The total amount of wall time = 414.823340 + 0: The maximum resident set size (KB) = 1036280 +>>>>>>> upstream/develop Test 233 conus13km_radar_tten_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/rap_control_dyn64_phy32_debug_gnu Checking test 234 rap_control_dyn64_phy32_debug_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/rap_control_dyn64_phy32_debug_gnu +Checking test 231 rap_control_dyn64_phy32_debug_gnu results .... +>>>>>>> upstream/develop Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK +<<<<<<< HEAD 0: The total amount of wall time = 149.055859 0: The maximum resident set size (KB) = 786512 +======= + 0: The total amount of wall time = 144.650246 + 0: The maximum resident set size (KB) = 791040 +>>>>>>> upstream/develop Test 234 rap_control_dyn64_phy32_debug_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_p8_gnu Checking test 235 cpld_control_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_p8_gnu +Checking test 232 cpld_control_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7781,15 +10447,26 @@ Checking test 235 cpld_control_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 639.208604 0: The maximum resident set size (KB) = 1507428 +======= + 0: The total amount of wall time = 635.676838 + 0: The maximum resident set size (KB) = 1512464 +>>>>>>> upstream/develop Test 235 cpld_control_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_nowave_noaero_p8_gnu Checking test 236 cpld_control_nowave_noaero_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_nowave_noaero_p8_gnu +Checking test 233 cpld_control_nowave_noaero_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7850,15 +10527,26 @@ Checking test 236 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 +<<<<<<< HEAD 0: The total amount of wall time = 395.725173 0: The maximum resident set size (KB) = 1398708 +======= + 0: The total amount of wall time = 382.203212 + 0: The maximum resident set size (KB) = 1404356 +>>>>>>> upstream/develop Test 236 cpld_control_nowave_noaero_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_p8_gnu Checking test 237 cpld_debug_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_p8_gnu +Checking test 234 cpld_debug_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -7910,15 +10598,26 @@ Checking test 237 cpld_debug_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 356.592837 0: The maximum resident set size (KB) = 1510800 +======= + 0: The total amount of wall time = 356.427290 + 0: The maximum resident set size (KB) = 1517628 +>>>>>>> upstream/develop Test 237 cpld_debug_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_control_pdlib_p8_gnu Checking test 238 cpld_control_pdlib_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_control_pdlib_p8_gnu +Checking test 235 cpld_control_pdlib_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -7981,15 +10680,26 @@ Checking test 238 cpld_control_pdlib_p8_gnu results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 1307.602819 0: The maximum resident set size (KB) = 1375284 +======= + 0: The total amount of wall time = 1325.606661 + 0: The maximum resident set size (KB) = 1376232 +>>>>>>> upstream/develop Test 238 cpld_control_pdlib_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/cpld_debug_pdlib_p8_gnu Checking test 239 cpld_debug_pdlib_p8_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/cpld_debug_pdlib_p8_gnu +Checking test 236 cpld_debug_pdlib_p8_gnu results .... +>>>>>>> upstream/develop Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK Comparing sfcf003.tile3.nc .........OK @@ -8040,21 +10750,37 @@ Checking test 239 cpld_debug_pdlib_p8_gnu results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK +<<<<<<< HEAD 0: The total amount of wall time = 753.826212 0: The maximum resident set size (KB) = 1383424 +======= + 0: The total amount of wall time = 757.208222 + 0: The maximum resident set size (KB) = 1375108 +>>>>>>> upstream/develop Test 239 cpld_debug_pdlib_p8_gnu PASS +<<<<<<< HEAD baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_gnu working dir = /scratch1/NCEPDEV/stmp2/George.Gayno/FV3_RT/rt_2194/datm_cdeps_control_cfsr_gnu Checking test 240 datm_cdeps_control_cfsr_gnu results .... +======= +baseline dir = /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_gnu +working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_262150/datm_cdeps_control_cfsr_gnu +Checking test 237 datm_cdeps_control_cfsr_gnu results .... +>>>>>>> upstream/develop 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 +<<<<<<< HEAD 0: The total amount of wall time = 171.930412 0: The maximum resident set size (KB) = 689496 +======= + 0: The total amount of wall time = 173.926295 + 0: The maximum resident set size (KB) = 700832 +>>>>>>> upstream/develop Test 240 datm_cdeps_control_cfsr_gnu PASS @@ -8066,6 +10792,12 @@ control_c48.v2.sfc_intel 038 failed in run_test 048 control_p8.v2.sfc_intel failed in check_result control_p8.v2.sfc_intel 048 failed in run_test +<<<<<<< HEAD REGRESSION TEST FAILED Thu Jan 4 20:44:52 UTC 2024 Elapsed time: 01h:39m:44s. Have a nice day! +======= +REGRESSION TEST WAS SUCCESSFUL +Fri Jan 12 19:11:36 UTC 2024 +Elapsed time: 02h:58m:53s. Have a nice day! +>>>>>>> upstream/develop diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 0dac581457..23dba5b5a5 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,76 +1,76 @@ -Wed Jan 3 09:50:28 CST 2024 +Mon Jan 15 00:10:44 CST 2024 Start Regression test -Testing UFSWM Hash: 401cbfbd3a195d9abd6624f3dfdfd19607e146b9 +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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 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 271 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 701 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn32_intel elapsed time 463 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 489 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_debug_gnu elapsed time 506 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atm_dyn64_phy32_gnu elapsed time 582 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_faster_dyn32_intel elapsed time 600 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 205 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 + 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 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 607 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 366 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atml_intel elapsed time 398 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 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 584 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 407 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 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_gnu elapsed time 369 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 199 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 69 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 599 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 212 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 639 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 588 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 196 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 537 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 409 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 368 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 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_gnu elapsed time 584 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 413 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 522 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 476 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 320 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 614 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 444 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 244 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 573 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 1001 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 652 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 994 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 543 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 335 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 774 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 689 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 634 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_gnu elapsed time 311 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 147 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 399 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/cpld_control_p8_mixedmode_intel +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 = 494.138254 - 0: The maximum resident set size (KB) = 1895724 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 824.060215 - 0: The maximum resident set size (KB) = 1762492 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 521.748855 - 0: The maximum resident set size (KB) = 1188168 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 380.487737 - 0: The maximum resident set size (KB) = 1170680 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 922.121643 - 0: The maximum resident set size (KB) = 1687984 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 1022.201266 - 0: The maximum resident set size (KB) = 1722304 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 466.700425 - 0: The maximum resident set size (KB) = 2040972 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 322.551246 - 0: The maximum resident set size (KB) = 1922744 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 497.752195 - 0: The maximum resident set size (KB) = 1968228 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 253.281717 - 0: The maximum resident set size (KB) = 1726324 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 533.999981 - 0: The maximum resident set size (KB) = 2472332 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 444.206759 - 0: The maximum resident set size (KB) = 2050456 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 373.711605 - 0: The maximum resident set size (KB) = 1884784 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 490.943507 - 0: The maximum resident set size (KB) = 2043360 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 939.187658 - 0: The maximum resident set size (KB) = 2798400 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 424.435022 - 0: The maximum resident set size (KB) = 2818404 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 539.568182 - 0: The maximum resident set size (KB) = 3616296 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 433.186950 - 0: The maximum resident set size (KB) = 3515452 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 313.020211 - 0: The maximum resident set size (KB) = 2012436 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 433.872281 - 0: The maximum resident set size (KB) = 1775332 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 234.074545 - 0: The maximum resident set size (KB) = 1812640 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 398.582700 - 0: The maximum resident set size (KB) = 2029644 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 272.217666 - 0: The maximum resident set size (KB) = 1785584 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 230.218866 - 0: The maximum resident set size (KB) = 1822148 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 436.563152 - 0: The maximum resident set size (KB) = 2839000 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 435.810756 - 0: The maximum resident set size (KB) = 2041896 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 846.459669 - 0: The maximum resident set size (KB) = 1812440 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 402.198307 - 0: The maximum resident set size (KB) = 1262468 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 922.171700 - 0: The maximum resident set size (KB) = 1724784 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 1289.200986 - 0: The maximum resident set size (KB) = 1759104 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 166.824611 - 0: The maximum resident set size (KB) = 721780 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 119.236023 - 0: The maximum resident set size (KB) = 658628 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 128.755664 - 0: The maximum resident set size (KB) = 669076 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 123.058895 - 0: The maximum resident set size (KB) = 672448 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 ............ALT CHECK......OK + 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 = 126.557962 - 0: The maximum resident set size (KB) = 662744 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 338.342839 -0: The maximum resident set size (KB) = 867128 +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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 487.003449 - 0: The maximum resident set size (KB) = 966800 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 515.811910 - 0: The maximum resident set size (KB) = 1448732 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 @@ -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 = 469.114413 - 0: The maximum resident set size (KB) = 1515400 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 80.199006 - 0: The maximum resident set size (KB) = 665376 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 62.885710 - 0: The maximum resident set size (KB) = 533888 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.872569 - 0: The maximum resident set size (KB) = 673324 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 126.128454 - 0: The maximum resident set size (KB) = 666200 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 121.844701 - 0: The maximum resident set size (KB) = 658596 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 151.565203 - 0: The maximum resident set size (KB) = 1641252 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 138.578540 - 0: The maximum resident set size (KB) = 1652476 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 76.252775 - 0: The maximum resident set size (KB) = 930836 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 142.860282 - 0: The maximum resident set size (KB) = 1622712 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.940917 - 0: The maximum resident set size (KB) = 987588 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 147.111542 - 0: The maximum resident set size (KB) = 1620700 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 131.673575 - 0: The maximum resident set size (KB) = 1730224 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 254.191885 - 0: The maximum resident set size (KB) = 1638980 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 198.163471 - 0: The maximum resident set size (KB) = 1714640 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 142.428564 - 0: The maximum resident set size (KB) = 1641248 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 167.220452 - 0: The maximum resident set size (KB) = 1644660 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 261.030529 - 0: The maximum resident set size (KB) = 960152 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 137.187758 - 0: The maximum resident set size (KB) = 1107844 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 275.591763 - 0: The maximum resident set size (KB) = 949052 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 156.492151 - 0: The maximum resident set size (KB) = 915020 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 254.564858 - 0: The maximum resident set size (KB) = 1496800 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 264.944222 - 0: The maximum resident set size (KB) = 962332 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 262.764746 - 0: The maximum resident set size (KB) = 968200 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 512.570902 - 0: The maximum resident set size (KB) = 2098468 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 379.050877 - 0: The maximum resident set size (KB) = 1201976 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 200.944546 - 0: The maximum resident set size (KB) = 1408120 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 426.180766 - 0: The maximum resident set size (KB) = 1142116 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 361.729838 - 0: The maximum resident set size (KB) = 1362648 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.436644 - 0: The maximum resident set size (KB) = 1139820 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 392.895985 - 0: The maximum resident set size (KB) = 1188044 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 413.898816 - 0: The maximum resident set size (KB) = 1145064 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 293.516251 - 0: The maximum resident set size (KB) = 1196640 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 192.579406 - 0: The maximum resident set size (KB) = 1063944 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 201.820164 - 0: The maximum resident set size (KB) = 1045812 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 176.052223 - 0: The maximum resident set size (KB) = 1120828 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 118.926921 - 0: The maximum resident set size (KB) = 1031584 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 375.523862 - 0: The maximum resident set size (KB) = 1184364 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 461.941392 - 0: The maximum resident set size (KB) = 2002164 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 453.753598 - 0: The maximum resident set size (KB) = 2205376 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 303.934914 - 0: The maximum resident set size (KB) = 827292 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 305.036846 - 0: The maximum resident set size (KB) = 832880 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 172.184003 - 0: The maximum resident set size (KB) = 820632 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 100.999067 - 0: The maximum resident set size (KB) = 780748 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 136.206545 - 0: The maximum resident set size (KB) = 1646732 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 261.008160 - 0: The maximum resident set size (KB) = 958888 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 128.793085 - 0: The maximum resident set size (KB) = 821596 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 125.316799 - 0: The maximum resident set size (KB) = 831724 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 145.830177 - 0: The maximum resident set size (KB) = 830956 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 127.366553 - 0: The maximum resident set size (KB) = 831192 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 196.011331 - 0: The maximum resident set size (KB) = 872444 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 205.098793 - 0: The maximum resident set size (KB) = 860472 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 132.347299 - 0: The maximum resident set size (KB) = 829288 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 134.817952 - 0: The maximum resident set size (KB) = 875272 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 134.478725 - 0: The maximum resident set size (KB) = 1661400 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 841.499640 - 0: The maximum resident set size (KB) = 891176 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 233.782817 - 0: The maximum resident set size (KB) = 1214624 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 232.285269 - 0: The maximum resident set size (KB) = 1208972 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 227.255086 - 0: The maximum resident set size (KB) = 1206432 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.796622 - 0: The maximum resident set size (KB) = 1205352 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 237.117525 - 0: The maximum resident set size (KB) = 1207980 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 241.867456 - 0: The maximum resident set size (KB) = 1305696 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 236.841536 - 0: The maximum resident set size (KB) = 1213456 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 238.998989 - 0: The maximum resident set size (KB) = 1212936 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 234.833035 - 0: The maximum resident set size (KB) = 1219532 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 236.779177 - 0: The maximum resident set size (KB) = 1214352 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 229.953585 - 0: The maximum resident set size (KB) = 1203592 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.347764 - 0: The maximum resident set size (KB) = 1207676 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.730491 - 0: The maximum resident set size (KB) = 1212100 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 227.661740 - 0: The maximum resident set size (KB) = 1212144 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 289.904029 - 0: The maximum resident set size (KB) = 1217172 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.977773 - 0: The maximum resident set size (KB) = 1214900 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.687170 - 0: The maximum resident set size (KB) = 1229040 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 187.902771 - 0: The maximum resident set size (KB) = 1273340 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 311.872332 - 0: The maximum resident set size (KB) = 1147536 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 169.260348 - 0: The maximum resident set size (KB) = 1015676 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 295.354053 - 0: The maximum resident set size (KB) = 1275248 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 159.227261 - 0: The maximum resident set size (KB) = 1022168 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 174.091610 - 0: The maximum resident set size (KB) = 959860 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 237.786506 - 0: The maximum resident set size (KB) = 1086736 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 86.606536 - 0: The maximum resident set size (KB) = 958892 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 103.863035 - 0: The maximum resident set size (KB) = 1355336 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 43.994457 - 0: The maximum resident set size (KB) = 1250724 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 59.157336 - 0: The maximum resident set size (KB) = 1227276 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 216.565256 - 0: The maximum resident set size (KB) = 1085188 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 229.979541 - 0: The maximum resident set size (KB) = 1102736 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 222.848990 - 0: The maximum resident set size (KB) = 1085716 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 698.468398 - 0: The maximum resident set size (KB) = 1385752 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 718.457562 - 0: The maximum resident set size (KB) = 983876 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 395.513834 - 0: The maximum resident set size (KB) = 1280712 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 706.435907 - 0: The maximum resident set size (KB) = 1445060 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 227.693637 - 0: The maximum resident set size (KB) = 1152784 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 313.839557 - 0: The maximum resident set size (KB) = 867284 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 296.380357 - 0: The maximum resident set size (KB) = 1277624 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 369.713817 - 0: The maximum resident set size (KB) = 931032 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 829.556600 - 0: The maximum resident set size (KB) = 979008 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 926.471754 - 0: The maximum resident set size (KB) = 1014356 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 @@ -4826,23 +4826,23 @@ Checking test 136 hafs_regional_1nest_atm_intel results .... Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.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 .........OK - Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......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 = 313.033504 - 0: The maximum resident set size (KB) = 602580 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 398.459382 - 0: The maximum resident set size (KB) = 614276 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 @@ -4896,7 +4896,7 @@ Checking test 138 hafs_global_1nest_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 .........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 .........OK Comparing RESTART/20200825.180000.sfc_data.tile4.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 = 156.787961 - 0: The maximum resident set size (KB) = 437788 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 @@ -4948,42 +4948,42 @@ Checking test 139 hafs_global_multiple_4nests_atm_intel results .... 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 ............ALT CHECK......OK + 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 ............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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile5.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 .........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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......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 .........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.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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......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.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 = 456.620433 - 0: The maximum resident set size (KB) = 537844 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.683946 - 0: The maximum resident set size (KB) = 612736 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 213.749931 - 0: The maximum resident set size (KB) = 612272 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 294.184240 - 0: The maximum resident set size (KB) = 673424 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 80.000122 - 0: The maximum resident set size (KB) = 447616 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 @@ -5109,42 +5109,42 @@ Checking test 144 gnv1_nested_intel results .... 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 - Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK 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.tile1.nc ............ALT CHECK......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.tile3.nc ............ALT CHECK......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 .........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 = 246.487803 - 0: The maximum resident set size (KB) = 897048 + 0: The total amount of wall time = 250.272030 + 0: The maximum resident set size (KB) = 896112 -Test 144 gnv1_nested_intel PASS Tries: 2 +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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 667.947756 - 0: The maximum resident set size (KB) = 622156 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 976.101043 - 0: The maximum resident set size (KB) = 746592 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 445.748757 - 0: The maximum resident set size (KB) = 895556 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 320.823397 - 0: The maximum resident set size (KB) = 922300 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 974.150315 - 0: The maximum resident set size (KB) = 1341416 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 122.704531 - 0: The maximum resident set size (KB) = 1132128 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 72.571635 - 0: The maximum resident set size (KB) = 1095388 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 116.905394 - 0: The maximum resident set size (KB) = 1005500 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 121.161689 - 0: The maximum resident set size (KB) = 1001984 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 119.786096 - 0: The maximum resident set size (KB) = 1004376 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 121.456451 - 0: The maximum resident set size (KB) = 1121068 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 123.906420 - 0: The maximum resident set size (KB) = 1136536 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 118.749923 - 0: The maximum resident set size (KB) = 997964 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 313.508259 - 0: The maximum resident set size (KB) = 1154536 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 313.721920 - 0: The maximum resident set size (KB) = 1128108 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 123.890072 - 0: The maximum resident set size (KB) = 1134024 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 175.284573 - 0: The maximum resident set size (KB) = 2415080 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 176.192087 - 0: The maximum resident set size (KB) = 2416144 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 289.350757 - 0: The maximum resident set size (KB) = 1071188 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 123.165203 - 0: The maximum resident set size (KB) = 1111616 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.080994 - 0: The maximum resident set size (KB) = 332400 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 8.448764 - 0: The maximum resident set size (KB) = 336680 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 173.377864 - 0: The maximum resident set size (KB) = 1706192 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 81.041812 - 0: The maximum resident set size (KB) = 1677848 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 78.380627 - 0: The maximum resident set size (KB) = 709924 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 203.685574 - 0: The maximum resident set size (KB) = 1790948 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 246.233312 - 0: The maximum resident set size (KB) = 1813312 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 260.708677 - 0: The maximum resident set size (KB) = 1818108 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 589.081712 - 0: The maximum resident set size (KB) = 5115508 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 979.297363 - 0: The maximum resident set size (KB) = 4541256 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 695.149897 - 0: The maximum resident set size (KB) = 5150112 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.452825 -0: The maximum resident set size (KB) = 861112 +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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 124.094418 - 0: The maximum resident set size (KB) = 729632 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 212.045059 - 0: The maximum resident set size (KB) = 733572 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 202.568902 - 0: The maximum resident set size (KB) = 1509544 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 200.422961 - 0: The maximum resident set size (KB) = 1510512 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 249.731808 - 0: The maximum resident set size (KB) = 810484 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 450.863093 - 0: The maximum resident set size (KB) = 1087572 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 458.026688 - 0: The maximum resident set size (KB) = 1087004 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 417.441624 - 0: The maximum resident set size (KB) = 1148252 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.680238 - 0: The maximum resident set size (KB) = 888908 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 447.077558 - 0: The maximum resident set size (KB) = 1089456 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 454.995453 - 0: The maximum resident set size (KB) = 1087452 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 331.712025 - 0: The maximum resident set size (KB) = 886804 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 231.730701 - 0: The maximum resident set size (KB) = 1076452 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 234.623363 - 0: The maximum resident set size (KB) = 1137608 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 209.150670 - 0: The maximum resident set size (KB) = 1044140 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.902690 - 0: The maximum resident set size (KB) = 1078064 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 116.804442 - 0: The maximum resident set size (KB) = 881928 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 116.314650 - 0: The maximum resident set size (KB) = 935176 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 447.364462 - 0: The maximum resident set size (KB) = 1085208 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 65.044360 - 0: The maximum resident set size (KB) = 779392 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 370.141864 - 0: The maximum resident set size (KB) = 945412 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 112.358089 - 0: The maximum resident set size (KB) = 1100016 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 110.518142 - 0: The maximum resident set size (KB) = 1089456 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.490774 - 0: The maximum resident set size (KB) = 1093336 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 111.468788 - 0: The maximum resident set size (KB) = 1096284 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 119.763020 - 0: The maximum resident set size (KB) = 1265840 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 181.922575 - 0: The maximum resident set size (KB) = 1095744 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 112.570385 - 0: The maximum resident set size (KB) = 1097940 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 112.771071 - 0: The maximum resident set size (KB) = 1091548 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 67.640222 - 0: The maximum resident set size (KB) = 719544 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.328936 - 0: The maximum resident set size (KB) = 719148 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 68.667829 - 0: The maximum resident set size (KB) = 1504160 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 111.685611 - 0: The maximum resident set size (KB) = 1096472 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 121.014098 - 0: The maximum resident set size (KB) = 1098480 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 188.007309 - 0: The maximum resident set size (KB) = 1105580 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 425.323933 - 0: The maximum resident set size (KB) = 969732 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 217.064722 - 0: The maximum resident set size (KB) = 954648 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 391.255876 - 0: The maximum resident set size (KB) = 996588 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 200.767871 - 0: The maximum resident set size (KB) = 891496 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 222.964283 - 0: The maximum resident set size (KB) = 954444 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 317.998694 - 0: The maximum resident set size (KB) = 858172 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 112.539351 - 0: The maximum resident set size (KB) = 856496 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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.769348 - 0: The maximum resident set size (KB) = 1313348 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 57.001586 - 0: The maximum resident set size (KB) = 1223024 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 79.020614 - 0: The maximum resident set size (KB) = 973568 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 254.653529 - 0: The maximum resident set size (KB) = 991124 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 108.383710 - 0: The maximum resident set size (KB) = 975964 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 111.282875 - 0: The maximum resident set size (KB) = 970372 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 329.697235 - 0: The maximum resident set size (KB) = 1328984 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 321.283287 - 0: The maximum resident set size (KB) = 954624 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 191.206099 - 0: The maximum resident set size (KB) = 1240676 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 323.824571 - 0: The maximum resident set size (KB) = 1398084 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 112.078775 - 0: The maximum resident set size (KB) = 1002984 + 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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 399.220378 - 0: The maximum resident set size (KB) = 4854888 +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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 268.653107 - 0: The maximum resident set size (KB) = 2561680 -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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 207.784277 - 0: The maximum resident set size (KB) = 4865784 -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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 992.722137 - 0: The maximum resident set size (KB) = 2898252 -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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 538.653115 - 0: The maximum resident set size (KB) = 2762448 -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/epic/stmp/role-epic/stmp/role-epic/FV3_RT/rt_1873642/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 = 134.279916 - 0: The maximum resident set size (KB) = 754396 + 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 -Wed Jan 3 11:43:32 CST 2024 -Elapsed time: 01h:53m:04s. 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/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 35f80f943b..8e3d73327d 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,57 +1,57 @@ -Wed Jan 3 00:32:38 UTC 2024 +Sat Jan 13 04:21:08 UTC 2024 Start Regression test -Testing UFSWM Hash: 2d3e73ead5b39f3d3c343c73043a1184e76763dd +Testing UFSWM Hash: 124aa3fe17c40c1881507d6d9c23120c679ac6f9 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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) 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 347 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_intel elapsed time 1917 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 -DSIMDMULTIARCH=ON -Compile atm_faster_dyn32_intel elapsed time 1739 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 -DSIMDMULTIARCH=ON -Compile atmaero_intel elapsed time 1745 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atml_intel elapsed time 1869 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmw_intel elapsed time 1836 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile atmwm_intel elapsed time 1826 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile csawmg_intel elapsed time 1801 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile datm_cdeps_debug_intel elapsed time 161 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 317 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 326 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 133 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile hafs_all_intel elapsed time 1802 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 -DSIMDMULTIARCH=ON -Compile hafsw_intel elapsed time 1947 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 -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_debug_intel elapsed time 255 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 2461 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn32_phy32_intel elapsed time 1698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_dyn64_phy32_debug_intel elapsed time 226 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 1770 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile rrfs_intel elapsed time 1817 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 -DSIMDMULTIARCH=ON -Compile s2s_aoflux_intel elapsed time 1847 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1816 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 282 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 1988 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 305 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_intel elapsed time 2773 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 1993 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_32bit_pdlib_debug_intel elapsed time 326 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 2817 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_debug_intel elapsed time 313 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 5521 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 2124 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 243 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 1693 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atm_debug_dyn32_intel elapsed time 437 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_intel elapsed time 1890 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 -DSIMDMULTIARCH=ON +Compile atm_faster_dyn32_intel elapsed time 1835 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 -DSIMDMULTIARCH=ON +Compile atmaero_intel elapsed time 1733 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atml_intel elapsed time 1831 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmw_intel elapsed time 1805 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile atmwm_intel elapsed time 1750 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile csawmg_intel elapsed time 1893 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile datm_cdeps_debug_intel elapsed time 217 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 478 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 1066 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 109 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile hafs_all_intel elapsed time 2338 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 -DSIMDMULTIARCH=ON +Compile hafsw_intel elapsed time 1892 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 -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_debug_intel elapsed time 263 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 2437 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn32_phy32_intel elapsed time 1703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_dyn64_phy32_debug_intel elapsed time 243 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 1750 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile rrfs_intel elapsed time 1876 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 -DSIMDMULTIARCH=ON +Compile s2s_aoflux_intel elapsed time 1817 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2s_intel elapsed time 1852 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 308 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 2028 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 295 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_intel elapsed time 3054 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 2134 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_32bit_pdlib_debug_intel elapsed time 320 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 2930 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_debug_intel elapsed time 321 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 5507 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2174 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 314 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 1729 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -116,14 +116,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 = 408.512390 - 0: The maximum resident set size (KB) = 1761664 + 0: The total amount of wall time = 402.618317 + 0: The maximum resident set size (KB) = 1756084 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -187,14 +187,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 = 1205.116943 - 0: The maximum resident set size (KB) = 1633220 + 0: The total amount of wall time = 1201.058241 + 0: The maximum resident set size (KB) = 1637660 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_gfsv17_iau_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -203,14 +203,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 = 850.948655 - 0: The maximum resident set size (KB) = 981920 + 0: The total amount of wall time = 808.855661 + 0: The maximum resident set size (KB) = 994136 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_restart_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -263,14 +263,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 = 591.942945 - 0: The maximum resident set size (KB) = 968832 + 0: The total amount of wall time = 658.581019 + 0: The maximum resident set size (KB) = 978664 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_mpi_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -334,14 +334,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 = 1399.876628 - 0: The maximum resident set size (KB) = 1612936 + 0: The total amount of wall time = 1447.037160 + 0: The maximum resident set size (KB) = 1610332 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_debug_gfsv17_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -393,14 +393,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 = 1531.999870 - 0: The maximum resident set size (KB) = 1643412 + 0: The total amount of wall time = 1528.304877 + 0: The maximum resident set size (KB) = 1648840 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -465,14 +465,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 = 443.267581 - 0: The maximum resident set size (KB) = 1795792 + 0: The total amount of wall time = 691.999858 + 0: The maximum resident set size (KB) = 1796296 Test 007 cpld_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -525,14 +525,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 = 263.963038 - 0: The maximum resident set size (KB) = 1689496 + 0: The total amount of wall time = 249.723073 + 0: The maximum resident set size (KB) = 1692532 Test 008 cpld_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -597,14 +597,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 = 455.059663 - 0: The maximum resident set size (KB) = 1813704 + 0: The total amount of wall time = 444.205683 + 0: The maximum resident set size (KB) = 1821544 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_restart_qr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -657,14 +657,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 = 267.486303 - 0: The maximum resident set size (KB) = 1725892 + 0: The total amount of wall time = 470.166865 + 0: The maximum resident set size (KB) = 1709928 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -717,14 +717,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 = 441.209671 - 0: The maximum resident set size (KB) = 2171336 + 0: The total amount of wall time = 431.436383 + 0: The maximum resident set size (KB) = 2187772 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -777,14 +777,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 = 441.193535 - 0: The maximum resident set size (KB) = 1807912 + 0: The total amount of wall time = 447.933287 + 0: The maximum resident set size (KB) = 1798484 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_mpi_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -837,14 +837,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 = 377.964957 - 0: The maximum resident set size (KB) = 1751492 + 0: The total amount of wall time = 379.223911 + 0: The maximum resident set size (KB) = 1751688 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_ciceC_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -909,14 +909,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 = 445.198593 - 0: The maximum resident set size (KB) = 1794660 + 0: The total amount of wall time = 704.243841 + 0: The maximum resident set size (KB) = 1798240 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_s2sa_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_s2sa_p8_intel Checking test 015 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -967,14 +967,14 @@ Checking test 015 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 = 428.382117 - 0: The maximum resident set size (KB) = 1757700 + 0: The total amount of wall time = 417.146730 + 0: The maximum resident set size (KB) = 1767468 Test 015 cpld_s2sa_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_noaero_p8_intel Checking test 016 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1038,14 +1038,14 @@ Checking test 016 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 = 345.881903 - 0: The maximum resident set size (KB) = 1636132 + 0: The total amount of wall time = 343.676548 + 0: The maximum resident set size (KB) = 1648696 Test 016 cpld_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_nowave_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_nowave_noaero_p8_intel Checking test 017 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1107,14 +1107,14 @@ Checking test 017 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 = 334.341790 - 0: The maximum resident set size (KB) = 1683744 + 0: The total amount of wall time = 335.996565 + 0: The maximum resident set size (KB) = 1685484 Test 017 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_debug_p8_intel Checking test 018 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1167,14 +1167,14 @@ Checking test 018 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 = 621.765203 - 0: The maximum resident set size (KB) = 1816452 + 0: The total amount of wall time = 614.702430 + 0: The maximum resident set size (KB) = 1813708 Test 018 cpld_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_debug_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_debug_noaero_p8_intel Checking test 019 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1226,14 +1226,14 @@ Checking test 019 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 = 421.730181 - 0: The maximum resident set size (KB) = 1654212 + 0: The total amount of wall time = 417.443623 + 0: The maximum resident set size (KB) = 1651416 Test 019 cpld_debug_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_noaero_p8_agrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1295,14 +1295,14 @@ Checking test 020 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 = 336.445797 - 0: The maximum resident set size (KB) = 1681720 + 0: The total amount of wall time = 451.822832 + 0: The maximum resident set size (KB) = 1681256 Test 020 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1352,14 +1352,14 @@ Checking test 021 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 = 764.408356 - 0: The maximum resident set size (KB) = 2789620 + 0: The total amount of wall time = 772.707054 + 0: The maximum resident set size (KB) = 2783568 Test 021 cpld_control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1424,14 +1424,14 @@ Checking test 022 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 = 415.274481 - 0: The maximum resident set size (KB) = 1797136 + 0: The total amount of wall time = 896.159021 + 0: The maximum resident set size (KB) = 1798516 Test 022 cpld_control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_control_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1495,14 +1495,14 @@ Checking test 023 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 = 1232.379779 - 0: The maximum resident set size (KB) = 1663020 + 0: The total amount of wall time = 1268.754974 + 0: The maximum resident set size (KB) = 1679404 Test 023 cpld_control_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_restart_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1554,14 +1554,14 @@ Checking test 024 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 = 592.253189 - 0: The maximum resident set size (KB) = 996756 + 0: The total amount of wall time = 595.704744 + 0: The maximum resident set size (KB) = 1024868 Test 024 cpld_restart_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_mpi_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1625,14 +1625,14 @@ Checking test 025 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 = 1429.211181 - 0: The maximum resident set size (KB) = 1644936 + 0: The total amount of wall time = 1453.114181 + 0: The maximum resident set size (KB) = 1637264 Test 025 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/cpld_debug_pdlib_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1684,14 +1684,14 @@ Checking test 026 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 = 1888.522192 - 0: The maximum resident set size (KB) = 1669296 + 0: The total amount of wall time = 1889.008872 + 0: The maximum resident set size (KB) = 1667056 Test 026 cpld_debug_pdlib_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_flake_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1702,14 +1702,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.460320 - 0: The maximum resident set size (KB) = 635144 + 0: The total amount of wall time = 269.486372 + 0: The maximum resident set size (KB) = 640548 Test 027 control_flake_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_CubedSphereGrid_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1736,18 +1736,18 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 190.365761 - 0: The maximum resident set size (KB) = 589564 + 0: The total amount of wall time = 205.248036 + 0: The maximum resident set size (KB) = 588604 Test 028 control_CubedSphereGrid_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_CubedSphereGrid_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing cubed_sphere_grid_sfcf000.nc .........OK Comparing cubed_sphere_grid_sfcf024.nc .........OK @@ -1758,14 +1758,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.346182 - 0: The maximum resident set size (KB) = 596472 + 0: The total amount of wall time = 204.124730 + 0: The maximum resident set size (KB) = 596996 Test 029 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_latlon_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1776,14 +1776,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.540138 - 0: The maximum resident set size (KB) = 593272 + 0: The total amount of wall time = 202.246519 + 0: The maximum resident set size (KB) = 585796 Test 030 control_latlon_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_wrtGauss_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1794,14 +1794,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.877523 - 0: The maximum resident set size (KB) = 588216 + 0: The total amount of wall time = 213.370668 + 0: The maximum resident set size (KB) = 592192 Test 031 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_c48_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1840,14 +1840,14 @@ Checking test 032 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 = 602.018554 -0: The maximum resident set size (KB) = 841900 +0: The total amount of wall time = 612.790329 +0: The maximum resident set size (KB) = 845204 Test 032 control_c48_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_c192_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1858,14 +1858,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 745.881058 - 0: The maximum resident set size (KB) = 718600 + 0: The total amount of wall time = 1196.010096 + 0: The maximum resident set size (KB) = 715092 Test 033 control_c192_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_c384_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1876,14 +1876,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 976.714168 - 0: The maximum resident set size (KB) = 894440 + 0: The total amount of wall time = 963.544295 + 0: The maximum resident set size (KB) = 888156 Test 034 control_c384_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_c384gdas_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1898,9 +1898,9 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.fv_core.res.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK Comparing RESTART/20210322.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc ............ALT CHECK......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 .........OK @@ -1909,31 +1909,31 @@ Checking test 035 control_c384gdas_intel results .... 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 .........OK - Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile1.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 ............ALT CHECK......OK - Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile1.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210322.060000.sfc_data.tile5.nc ............ALT CHECK......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 = 819.548892 - 0: The maximum resident set size (KB) = 1007280 + 0: The total amount of wall time = 1527.246503 + 0: The maximum resident set size (KB) = 1007724 Test 035 control_c384gdas_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_stochy_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1944,28 +1944,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.405872 - 0: The maximum resident set size (KB) = 594112 + 0: The total amount of wall time = 134.886160 + 0: The maximum resident set size (KB) = 591460 Test 036 control_stochy_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_stochy_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_stochy_restart_intel Checking test 037 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 = 67.896580 - 0: The maximum resident set size (KB) = 430628 + 0: The total amount of wall time = 86.713566 + 0: The maximum resident set size (KB) = 427820 Test 037 control_stochy_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1976,14 +1976,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.035631 - 0: The maximum resident set size (KB) = 590664 + 0: The total amount of wall time = 122.304243 + 0: The maximum resident set size (KB) = 598808 Test 038 control_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_iovr4_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1998,14 +1998,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 188.222974 - 0: The maximum resident set size (KB) = 591324 + 0: The total amount of wall time = 214.184105 + 0: The maximum resident set size (KB) = 585864 Test 039 control_iovr4_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_iovr5_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2020,14 +2020,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 190.935333 - 0: The maximum resident set size (KB) = 591460 + 0: The total amount of wall time = 215.609308 + 0: The maximum resident set size (KB) = 591392 Test 040 control_iovr5_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 041 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 = 227.394250 - 0: The maximum resident set size (KB) = 1554584 + 0: The total amount of wall time = 260.842578 + 0: The maximum resident set size (KB) = 1564920 Test 041 control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_ugwpv1_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 042 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 = 216.507112 - 0: The maximum resident set size (KB) = 1570352 + 0: The total amount of wall time = 268.014123 + 0: The maximum resident set size (KB) = 1558092 Test 042 control_p8_ugwpv1_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_restart_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2174,14 +2174,14 @@ Checking test 043 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 = 121.118331 - 0: The maximum resident set size (KB) = 791708 + 0: The total amount of wall time = 117.028374 + 0: The maximum resident set size (KB) = 805728 Test 043 control_restart_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2228,14 +2228,14 @@ Checking test 044 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 = 221.691826 - 0: The maximum resident set size (KB) = 1544308 + 0: The total amount of wall time = 296.166001 + 0: The maximum resident set size (KB) = 1551196 Test 044 control_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_restart_noqr_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -2274,14 +2274,14 @@ Checking test 045 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 = 118.695637 - 0: The maximum resident set size (KB) = 834204 + 0: The total amount of wall time = 121.768524 + 0: The maximum resident set size (KB) = 829168 Test 045 control_restart_noqr_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_decomp_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2324,14 +2324,14 @@ Checking test 046 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 = 234.547705 - 0: The maximum resident set size (KB) = 1548212 + 0: The total amount of wall time = 277.669153 + 0: The maximum resident set size (KB) = 1552000 Test 046 control_decomp_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_2threads_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2374,14 +2374,14 @@ Checking test 047 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 = 213.393743 - 0: The maximum resident set size (KB) = 1655604 + 0: The total amount of wall time = 317.306272 + 0: The maximum resident set size (KB) = 1648312 Test 047 control_2threads_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_lndp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2400,14 +2400,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 405.416720 - 0: The maximum resident set size (KB) = 1561484 + 0: The total amount of wall time = 463.930703 + 0: The maximum resident set size (KB) = 1558288 Test 048 control_p8_lndp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_rrtmgp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2454,14 +2454,14 @@ Checking test 049 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 = 297.246297 - 0: The maximum resident set size (KB) = 1624192 + 0: The total amount of wall time = 347.184288 + 0: The maximum resident set size (KB) = 1614644 Test 049 control_p8_rrtmgp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_mynn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2508,14 +2508,14 @@ Checking test 050 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 = 226.276681 - 0: The maximum resident set size (KB) = 1561468 + 0: The total amount of wall time = 275.567636 + 0: The maximum resident set size (KB) = 1561116 Test 050 control_p8_mynn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/merra2_thompson_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2562,14 +2562,14 @@ Checking test 051 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 = 263.930770 - 0: The maximum resident set size (KB) = 1569260 + 0: The total amount of wall time = 418.149326 + 0: The maximum resident set size (KB) = 1569152 Test 051 merra2_thompson_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2580,28 +2580,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 420.324770 - 0: The maximum resident set size (KB) = 756196 + 0: The total amount of wall time = 449.109727 + 0: The maximum resident set size (KB) = 758612 Test 052 regional_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_restart_intel Checking test 053 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 = 219.394782 - 0: The maximum resident set size (KB) = 923160 + 0: The total amount of wall time = 773.154479 + 0: The maximum resident set size (KB) = 925120 Test 053 regional_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2612,14 +2612,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 437.945449 - 0: The maximum resident set size (KB) = 751988 + 0: The total amount of wall time = 492.911122 + 0: The maximum resident set size (KB) = 750936 Test 054 regional_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2630,28 +2630,28 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 260.850168 - 0: The maximum resident set size (KB) = 746180 + 0: The total amount of wall time = 293.240917 + 0: The maximum resident set size (KB) = 747320 Test 055 regional_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_netcdf_parallel_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_netcdf_parallel_intel Checking test 056 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 = 409.326270 - 0: The maximum resident set size (KB) = 753904 + 0: The total amount of wall time = 478.130721 + 0: The maximum resident set size (KB) = 762852 Test 056 regional_netcdf_parallel_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_2dwrtdecomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_2dwrtdecomp_intel Checking test 057 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2662,14 +2662,14 @@ Checking test 057 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.775745 - 0: The maximum resident set size (KB) = 753408 + 0: The total amount of wall time = 472.586231 + 0: The maximum resident set size (KB) = 757436 Test 057 regional_2dwrtdecomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_intel Checking test 058 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2716,14 +2716,14 @@ Checking test 058 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 = 613.547759 - 0: The maximum resident set size (KB) = 968844 + 0: The total amount of wall time = 697.198506 + 0: The maximum resident set size (KB) = 974556 Test 058 rap_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_spp_sppt_shum_skeb_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_spp_sppt_shum_skeb_intel Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2734,14 +2734,14 @@ Checking test 059 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 326.500684 - 0: The maximum resident set size (KB) = 1191972 + 0: The total amount of wall time = 402.843461 + 0: The maximum resident set size (KB) = 1197556 Test 059 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_decomp_intel Checking test 060 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2788,14 +2788,14 @@ Checking test 060 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 = 630.618280 - 0: The maximum resident set size (KB) = 965132 + 0: The total amount of wall time = 656.217620 + 0: The maximum resident set size (KB) = 957544 Test 060 rap_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_2threads_intel Checking test 061 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2842,14 +2842,14 @@ Checking test 061 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 = 580.487819 - 0: The maximum resident set size (KB) = 1061080 + 0: The total amount of wall time = 604.980400 + 0: The maximum resident set size (KB) = 1067516 Test 061 rap_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_restart_intel Checking test 062 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2888,14 +2888,14 @@ Checking test 062 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 = 304.182840 - 0: The maximum resident set size (KB) = 970008 + 0: The total amount of wall time = 316.358560 + 0: The maximum resident set size (KB) = 969204 Test 062 rap_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_sfcdiff_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_sfcdiff_intel Checking test 063 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2942,14 +2942,14 @@ Checking test 063 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 = 595.991320 - 0: The maximum resident set size (KB) = 964360 + 0: The total amount of wall time = 620.465365 + 0: The maximum resident set size (KB) = 964376 Test 063 rap_sfcdiff_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_sfcdiff_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_sfcdiff_decomp_intel Checking test 064 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 064 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 = 632.736022 - 0: The maximum resident set size (KB) = 960312 + 0: The total amount of wall time = 661.729073 + 0: The maximum resident set size (KB) = 953804 Test 064 rap_sfcdiff_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_sfcdiff_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_sfcdiff_restart_intel Checking test 065 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3042,14 +3042,14 @@ Checking test 065 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 = 451.935021 - 0: The maximum resident set size (KB) = 976908 + 0: The total amount of wall time = 446.185683 + 0: The maximum resident set size (KB) = 982176 Test 065 rap_sfcdiff_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_intel Checking test 066 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3096,14 +3096,14 @@ Checking test 066 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 = 303.614761 - 0: The maximum resident set size (KB) = 967700 + 0: The total amount of wall time = 318.376005 + 0: The maximum resident set size (KB) = 957192 Test 066 hrrr_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_decomp_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_decomp_intel Checking test 067 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3150,14 +3150,14 @@ Checking test 067 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 = 315.459213 - 0: The maximum resident set size (KB) = 967620 + 0: The total amount of wall time = 321.708543 + 0: The maximum resident set size (KB) = 952356 Test 067 hrrr_control_decomp_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_2threads_intel Checking test 068 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3204,28 +3204,28 @@ Checking test 068 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 = 286.835656 - 0: The maximum resident set size (KB) = 1048140 + 0: The total amount of wall time = 283.616661 + 0: The maximum resident set size (KB) = 1045260 Test 068 hrrr_control_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_restart_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_restart_intel Checking test 069 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 = 165.113085 - 0: The maximum resident set size (KB) = 902748 + 0: The total amount of wall time = 162.982066 + 0: The maximum resident set size (KB) = 895428 Test 069 hrrr_control_restart_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rrfs_v1beta_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rrfs_v1beta_intel Checking test 070 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3272,14 +3272,14 @@ Checking test 070 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 = 596.974380 - 0: The maximum resident set size (KB) = 961792 + 0: The total amount of wall time = 632.323616 + 0: The maximum resident set size (KB) = 962032 Test 070 rrfs_v1beta_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rrfs_v1nssl_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rrfs_v1nssl_intel Checking test 071 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3294,14 +3294,14 @@ Checking test 071 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 746.896260 - 0: The maximum resident set size (KB) = 1921780 + 0: The total amount of wall time = 761.000074 + 0: The maximum resident set size (KB) = 1922480 Test 071 rrfs_v1nssl_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rrfs_v1nssl_nohailnoccn_intel Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3316,14 +3316,14 @@ Checking test 072 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.402854 - 0: The maximum resident set size (KB) = 1920428 + 0: The total amount of wall time = 719.162561 + 0: The maximum resident set size (KB) = 1905452 Test 072 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_csawmg_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_csawmg_intel Checking test 073 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3334,14 +3334,14 @@ Checking test 073 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 468.067465 - 0: The maximum resident set size (KB) = 685496 + 0: The total amount of wall time = 477.185468 + 0: The maximum resident set size (KB) = 677224 Test 073 control_csawmg_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_csawmgt_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_csawmgt_intel Checking test 074 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3352,14 +3352,14 @@ Checking test 074 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 462.893356 - 0: The maximum resident set size (KB) = 685980 + 0: The total amount of wall time = 926.198379 + 0: The maximum resident set size (KB) = 685752 Test 074 control_csawmgt_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_ras_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_ras_intel Checking test 075 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3370,26 +3370,26 @@ Checking test 075 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.121708 - 0: The maximum resident set size (KB) = 654036 + 0: The total amount of wall time = 259.103068 + 0: The maximum resident set size (KB) = 649020 Test 075 control_ras_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_wam_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_wam_intel Checking test 076 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 160.814163 - 0: The maximum resident set size (KB) = 497248 + 0: The total amount of wall time = 153.664907 + 0: The maximum resident set size (KB) = 497944 Test 076 control_wam_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_faster_intel Checking test 077 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3436,14 +3436,14 @@ Checking test 077 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 = 210.480534 - 0: The maximum resident set size (KB) = 1550100 + 0: The total amount of wall time = 210.507155 + 0: The maximum resident set size (KB) = 1557700 Test 077 control_p8_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_control_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_control_faster_intel Checking test 078 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3454,14 +3454,14 @@ Checking test 078 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 397.742908 - 0: The maximum resident set size (KB) = 751584 + 0: The total amount of wall time = 472.518608 + 0: The maximum resident set size (KB) = 759740 Test 078 regional_control_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_CubedSphereGrid_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_CubedSphereGrid_debug_intel Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3488,364 +3488,364 @@ Checking test 079 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 198.461049 - 0: The maximum resident set size (KB) = 749520 + 0: The total amount of wall time = 190.526212 + 0: The maximum resident set size (KB) = 748004 Test 079 control_CubedSphereGrid_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_wrtGauss_netcdf_parallel_debug_intel Checking test 080 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 = 189.531996 - 0: The maximum resident set size (KB) = 750632 + 0: The total amount of wall time = 191.901847 + 0: The maximum resident set size (KB) = 751540 Test 080 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_stochy_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_stochy_debug_intel Checking test 081 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 = 210.540761 - 0: The maximum resident set size (KB) = 758120 + 0: The total amount of wall time = 218.071754 + 0: The maximum resident set size (KB) = 759232 Test 081 control_stochy_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_lndp_debug_intel Checking test 082 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 = 189.670613 - 0: The maximum resident set size (KB) = 754460 + 0: The total amount of wall time = 192.403756 + 0: The maximum resident set size (KB) = 757708 Test 082 control_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_csawmg_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_csawmg_debug_intel Checking test 083 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 = 299.399767 - 0: The maximum resident set size (KB) = 797500 + 0: The total amount of wall time = 305.012835 + 0: The maximum resident set size (KB) = 801236 Test 083 control_csawmg_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_csawmgt_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_csawmgt_debug_intel Checking test 084 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 = 295.233016 - 0: The maximum resident set size (KB) = 799036 + 0: The total amount of wall time = 299.923482 + 0: The maximum resident set size (KB) = 796992 Test 084 control_csawmgt_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_ras_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_ras_debug_intel Checking test 085 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 = 191.429002 - 0: The maximum resident set size (KB) = 758492 + 0: The total amount of wall time = 196.832083 + 0: The maximum resident set size (KB) = 761848 Test 085 control_ras_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_diag_debug_intel Checking test 086 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 = 198.027576 - 0: The maximum resident set size (KB) = 806708 + 0: The total amount of wall time = 200.256393 + 0: The maximum resident set size (KB) = 812808 Test 086 control_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_debug_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_debug_p8_intel Checking test 087 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 = 202.132393 - 0: The maximum resident set size (KB) = 1583068 + 0: The total amount of wall time = 204.946054 + 0: The maximum resident set size (KB) = 1577348 Test 087 control_debug_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_debug_intel Checking test 088 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 = 1299.831203 - 0: The maximum resident set size (KB) = 770412 + 0: The total amount of wall time = 1292.810931 + 0: The maximum resident set size (KB) = 774656 Test 088 regional_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_debug_intel Checking test 089 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 = 353.133783 - 0: The maximum resident set size (KB) = 1136188 + 0: The total amount of wall time = 354.258108 + 0: The maximum resident set size (KB) = 1129520 Test 089 rap_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_debug_intel Checking test 090 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 = 344.223792 - 0: The maximum resident set size (KB) = 1127224 + 0: The total amount of wall time = 347.634620 + 0: The maximum resident set size (KB) = 1127428 Test 090 hrrr_control_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_gf_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_gf_debug_intel Checking test 091 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 = 350.086111 - 0: The maximum resident set size (KB) = 1134660 + 0: The total amount of wall time = 355.024289 + 0: The maximum resident set size (KB) = 1130508 Test 091 hrrr_gf_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_c3_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_c3_debug_intel Checking test 092 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 = 352.706741 - 0: The maximum resident set size (KB) = 1141460 + 0: The total amount of wall time = 354.992798 + 0: The maximum resident set size (KB) = 1129320 Test 092 hrrr_c3_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_unified_drag_suite_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_unified_drag_suite_debug_intel Checking test 093 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 = 354.075885 - 0: The maximum resident set size (KB) = 1130460 + 0: The total amount of wall time = 358.121385 + 0: The maximum resident set size (KB) = 1137440 Test 093 rap_unified_drag_suite_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_diag_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_diag_debug_intel Checking test 094 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 = 371.001493 - 0: The maximum resident set size (KB) = 1214920 + 0: The total amount of wall time = 371.042461 + 0: The maximum resident set size (KB) = 1215996 Test 094 rap_diag_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_cires_ugwp_debug_intel Checking test 095 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 = 360.560763 - 0: The maximum resident set size (KB) = 1133840 + 0: The total amount of wall time = 361.956697 + 0: The maximum resident set size (KB) = 1132320 Test 095 rap_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_unified_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_unified_ugwp_debug_intel Checking test 096 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 = 360.943244 - 0: The maximum resident set size (KB) = 1137804 + 0: The total amount of wall time = 362.782007 + 0: The maximum resident set size (KB) = 1129140 Test 096 rap_unified_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_lndp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_lndp_debug_intel Checking test 097 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 = 355.411485 - 0: The maximum resident set size (KB) = 1133284 + 0: The total amount of wall time = 358.280249 + 0: The maximum resident set size (KB) = 1135480 Test 097 rap_lndp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_progcld_thompson_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_progcld_thompson_debug_intel Checking test 098 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 = 353.853323 - 0: The maximum resident set size (KB) = 1137376 + 0: The total amount of wall time = 355.185911 + 0: The maximum resident set size (KB) = 1132492 Test 098 rap_progcld_thompson_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_noah_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_noah_debug_intel Checking test 099 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 = 345.457465 - 0: The maximum resident set size (KB) = 1138380 + 0: The total amount of wall time = 348.802234 + 0: The maximum resident set size (KB) = 1135572 Test 099 rap_noah_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_sfcdiff_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_sfcdiff_debug_intel Checking test 100 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 = 353.864374 - 0: The maximum resident set size (KB) = 1132208 + 0: The total amount of wall time = 359.522491 + 0: The maximum resident set size (KB) = 1131588 Test 100 rap_sfcdiff_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 101 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 = 582.134466 - 0: The maximum resident set size (KB) = 1139952 + 0: The total amount of wall time = 583.821152 + 0: The maximum resident set size (KB) = 1144300 Test 101 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rrfs_v1beta_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rrfs_v1beta_debug_intel Checking test 102 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 = 348.873939 - 0: The maximum resident set size (KB) = 1141084 + 0: The total amount of wall time = 352.085071 + 0: The maximum resident set size (KB) = 1126488 Test 102 rrfs_v1beta_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_clm_lake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_clm_lake_debug_intel Checking test 103 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 = 429.127139 - 0: The maximum resident set size (KB) = 1143952 + 0: The total amount of wall time = 456.089802 + 0: The maximum resident set size (KB) = 1135596 Test 103 rap_clm_lake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_flake_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_flake_debug_intel Checking test 104 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 = 355.497825 - 0: The maximum resident set size (KB) = 1140180 + 0: The total amount of wall time = 357.127016 + 0: The maximum resident set size (KB) = 1132748 Test 104 rap_flake_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/gnv1_c96_no_nest_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/gnv1_c96_no_nest_debug_intel Checking test 105 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3886,26 +3886,26 @@ Checking test 105 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 = 616.039968 - 0: The maximum resident set size (KB) = 1139876 + 0: The total amount of wall time = 721.472285 + 0: The maximum resident set size (KB) = 1141100 Test 105 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_wam_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_wam_debug_intel Checking test 106 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 359.429057 - 0: The maximum resident set size (KB) = 435140 + 0: The total amount of wall time = 360.798359 + 0: The maximum resident set size (KB) = 433692 Test 106 control_wam_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3916,14 +3916,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 302.847629 - 0: The maximum resident set size (KB) = 1067568 + 0: The total amount of wall time = 315.115750 + 0: The maximum resident set size (KB) = 1073104 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_dyn32_phy32_intel Checking test 108 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3970,14 +3970,14 @@ Checking test 108 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 = 492.868131 - 0: The maximum resident set size (KB) = 899908 + 0: The total amount of wall time = 495.290828 + 0: The maximum resident set size (KB) = 890272 Test 108 rap_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_dyn32_phy32_intel Checking test 109 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4024,14 +4024,14 @@ Checking test 109 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 = 254.476502 - 0: The maximum resident set size (KB) = 852052 + 0: The total amount of wall time = 257.658270 + 0: The maximum resident set size (KB) = 849364 Test 109 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_2threads_dyn32_phy32_intel Checking test 110 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4078,14 +4078,14 @@ Checking test 110 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 = 486.591158 - 0: The maximum resident set size (KB) = 935980 + 0: The total amount of wall time = 460.194670 + 0: The maximum resident set size (KB) = 931104 Test 110 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_2threads_dyn32_phy32_intel Checking test 111 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 111 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 = 236.727761 - 0: The maximum resident set size (KB) = 891324 + 0: The total amount of wall time = 241.678388 + 0: The maximum resident set size (KB) = 898072 Test 111 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_decomp_dyn32_phy32_intel Checking test 112 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4186,14 +4186,14 @@ Checking test 112 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 = 268.312781 - 0: The maximum resident set size (KB) = 848528 + 0: The total amount of wall time = 266.921185 + 0: The maximum resident set size (KB) = 838300 Test 112 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_restart_dyn32_phy32_intel Checking test 113 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4232,28 +4232,28 @@ Checking test 113 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 = 384.974323 - 0: The maximum resident set size (KB) = 895636 + 0: The total amount of wall time = 368.902558 + 0: The maximum resident set size (KB) = 886816 Test 113 rap_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_restart_dyn32_phy32_intel Checking test 114 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 = 165.958201 - 0: The maximum resident set size (KB) = 842332 + 0: The total amount of wall time = 140.532188 + 0: The maximum resident set size (KB) = 834420 Test 114 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_control_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_control_intel Checking test 115 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4269,40 +4269,40 @@ Checking test 115 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 = 155.482225 - 0: The maximum resident set size (KB) = 1140316 + 0: The total amount of wall time = 158.835171 + 0: The maximum resident set size (KB) = 1142916 Test 115 conus13km_control_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_2threads_intel Checking test 116 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 = 87.319904 - 0: The maximum resident set size (KB) = 1090332 + 0: The total amount of wall time = 70.823373 + 0: The maximum resident set size (KB) = 1088736 Test 116 conus13km_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_restart_mismatch_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_restart_mismatch_intel Checking test 117 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 103.705468 - 0: The maximum resident set size (KB) = 1094064 + 0: The total amount of wall time = 86.993593 + 0: The maximum resident set size (KB) = 1083804 Test 117 conus13km_restart_mismatch_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_dyn64_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_dyn64_phy32_intel Checking test 118 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4349,42 +4349,42 @@ Checking test 118 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 = 325.582995 - 0: The maximum resident set size (KB) = 886636 + 0: The total amount of wall time = 326.618466 + 0: The maximum resident set size (KB) = 889556 Test 118 rap_control_dyn64_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_debug_dyn32_phy32_intel Checking test 119 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 = 357.750464 - 0: The maximum resident set size (KB) = 1019804 + 0: The total amount of wall time = 346.842767 + 0: The maximum resident set size (KB) = 1008408 Test 119 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hrrr_control_debug_dyn32_phy32_intel Checking test 120 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 = 357.142059 - 0: The maximum resident set size (KB) = 1010704 + 0: The total amount of wall time = 340.112037 + 0: The maximum resident set size (KB) = 1010180 Test 120 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_debug_intel Checking test 121 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4398,14 +4398,14 @@ Checking test 121 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 = 1093.070185 - 0: The maximum resident set size (KB) = 1174948 + 0: The total amount of wall time = 1082.109094 + 0: The maximum resident set size (KB) = 1177032 Test 121 conus13km_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_debug_qr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_debug_qr_intel Checking test 122 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4419,81 +4419,81 @@ Checking test 122 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 = 1130.019492 - 0: The maximum resident set size (KB) = 838340 + 0: The total amount of wall time = 1106.593028 + 0: The maximum resident set size (KB) = 838860 Test 122 conus13km_debug_qr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_debug_2threads_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_debug_2threads_intel Checking test 123 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 = 622.008329 - 0: The maximum resident set size (KB) = 1128588 + 0: The total amount of wall time = 638.313681 + 0: The maximum resident set size (KB) = 1120596 Test 123 conus13km_debug_2threads_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/conus13km_radar_tten_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/conus13km_radar_tten_debug_intel Checking test 124 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 = 1086.046519 - 0: The maximum resident set size (KB) = 1246344 + 0: The total amount of wall time = 1079.391727 + 0: The maximum resident set size (KB) = 1245560 Test 124 conus13km_radar_tten_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/rap_control_dyn64_phy32_debug_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/rap_control_dyn64_phy32_debug_intel Checking test 125 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 = 356.229226 - 0: The maximum resident set size (KB) = 1057024 + 0: The total amount of wall time = 355.075140 + 0: The maximum resident set size (KB) = 1052596 Test 125 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_atm_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_atm_intel Checking test 126 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 415.414657 - 0: The maximum resident set size (KB) = 705532 + 0: The total amount of wall time = 475.785724 + 0: The maximum resident set size (KB) = 706748 Test 126 hafs_regional_atm_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_atm_thompson_gfdlsf_intel Checking test 127 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 397.963012 - 0: The maximum resident set size (KB) = 1074124 + 0: The total amount of wall time = 464.368667 + 0: The maximum resident set size (KB) = 1067564 Test 127 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_atm_ocn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_atm_ocn_intel Checking test 128 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4502,14 +4502,14 @@ Checking test 128 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 = 529.490563 - 0: The maximum resident set size (KB) = 758896 + 0: The total amount of wall time = 544.564554 + 0: The maximum resident set size (KB) = 763900 Test 128 hafs_regional_atm_ocn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_atm_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_atm_wav_intel Checking test 129 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4518,14 +4518,14 @@ Checking test 129 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 = 947.702295 - 0: The maximum resident set size (KB) = 792672 + 0: The total amount of wall time = 952.501474 + 0: The maximum resident set size (KB) = 794368 Test 129 hafs_regional_atm_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_atm_ocn_wav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_atm_ocn_wav_intel Checking test 130 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4536,14 +4536,14 @@ Checking test 130 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 = 1058.143063 - 0: The maximum resident set size (KB) = 815148 + 0: The total amount of wall time = 1074.396895 + 0: The maximum resident set size (KB) = 804128 Test 130 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/gnv1_nested_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/gnv1_nested_intel Checking test 131 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4554,50 +4554,50 @@ Checking test 131 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 ............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 ............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 ............ALT CHECK......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.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 ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile3.nc ............ALT CHECK......OK Comparing RESTART/20200825.180000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile5.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.tile1.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20200825.180000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20200825.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20200825.180000.phy_data.tile5.nc ............ALT CHECK......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.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.tile4.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_sw.res.nest02.nc .........OK - 0: The total amount of wall time = 338.918283 - 0: The maximum resident set size (KB) = 759552 + 0: The total amount of wall time = 393.715321 + 0: The maximum resident set size (KB) = 762836 Test 131 gnv1_nested_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_docn_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_docn_intel Checking test 132 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4605,14 +4605,14 @@ Checking test 132 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 = 493.338325 - 0: The maximum resident set size (KB) = 764104 + 0: The total amount of wall time = 507.941499 + 0: The maximum resident set size (KB) = 754708 Test 132 hafs_regional_docn_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/hafs_regional_docn_oisst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/hafs_regional_docn_oisst_intel Checking test 133 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4620,118 +4620,118 @@ Checking test 133 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 = 498.183397 - 0: The maximum resident set size (KB) = 743736 + 0: The total amount of wall time = 510.165496 + 0: The maximum resident set size (KB) = 745656 Test 133 hafs_regional_docn_oisst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_control_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_control_cfsr_intel Checking test 134 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 = 208.138861 - 0: The maximum resident set size (KB) = 1028244 + 0: The total amount of wall time = 213.852959 + 0: The maximum resident set size (KB) = 1033820 Test 134 datm_cdeps_control_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_restart_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_restart_cfsr_intel Checking test 135 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 = 120.177537 - 0: The maximum resident set size (KB) = 995344 + 0: The total amount of wall time = 121.084194 + 0: The maximum resident set size (KB) = 998064 Test 135 datm_cdeps_restart_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_control_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_control_gefs_intel Checking test 136 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 = 221.393185 - 0: The maximum resident set size (KB) = 902464 + 0: The total amount of wall time = 209.632387 + 0: The maximum resident set size (KB) = 909208 Test 136 datm_cdeps_control_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_iau_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_iau_gefs_intel Checking test 137 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 = 203.026155 - 0: The maximum resident set size (KB) = 901356 + 0: The total amount of wall time = 201.639938 + 0: The maximum resident set size (KB) = 912196 Test 137 datm_cdeps_iau_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_stochy_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_stochy_gefs_intel Checking test 138 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 = 209.282655 - 0: The maximum resident set size (KB) = 906156 + 0: The total amount of wall time = 216.680993 + 0: The maximum resident set size (KB) = 908980 Test 138 datm_cdeps_stochy_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_ciceC_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_ciceC_cfsr_intel Checking test 139 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 = 204.622941 - 0: The maximum resident set size (KB) = 1022684 + 0: The total amount of wall time = 206.300312 + 0: The maximum resident set size (KB) = 1032172 Test 139 datm_cdeps_ciceC_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_bulk_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_bulk_cfsr_intel Checking test 140 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 = 231.093855 - 0: The maximum resident set size (KB) = 1020288 + 0: The total amount of wall time = 206.556982 + 0: The maximum resident set size (KB) = 1034072 Test 140 datm_cdeps_bulk_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_bulk_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_bulk_gefs_intel Checking test 141 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 = 240.496500 - 0: The maximum resident set size (KB) = 898444 + 0: The total amount of wall time = 200.448723 + 0: The maximum resident set size (KB) = 908624 Test 141 datm_cdeps_bulk_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_mx025_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_mx025_cfsr_intel Checking test 142 datm_cdeps_mx025_cfsr_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4740,14 +4740,14 @@ Checking test 142 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 = 533.351271 - 0: The maximum resident set size (KB) = 860360 + 0: The total amount of wall time = 479.909230 + 0: The maximum resident set size (KB) = 869088 Test 142 datm_cdeps_mx025_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_mx025_gefs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_mx025_gefs_intel Checking test 143 datm_cdeps_mx025_gefs_intel results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4756,77 +4756,77 @@ Checking test 143 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 = 534.829594 - 0: The maximum resident set size (KB) = 822588 + 0: The total amount of wall time = 475.998177 + 0: The maximum resident set size (KB) = 827956 Test 143 datm_cdeps_mx025_gefs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_multiple_files_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_multiple_files_cfsr_intel Checking test 144 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 = 240.990050 - 0: The maximum resident set size (KB) = 1025364 + 0: The total amount of wall time = 213.405518 + 0: The maximum resident set size (KB) = 1030236 Test 144 datm_cdeps_multiple_files_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_3072x1536_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_3072x1536_cfsr_intel Checking test 145 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 = 364.938716 - 0: The maximum resident set size (KB) = 2312816 + 0: The total amount of wall time = 294.948385 + 0: The maximum resident set size (KB) = 2329976 Test 145 datm_cdeps_3072x1536_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_gfs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_gfs_intel Checking test 146 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 = 337.403827 - 0: The maximum resident set size (KB) = 2360052 + 0: The total amount of wall time = 301.035515 + 0: The maximum resident set size (KB) = 2374936 Test 146 datm_cdeps_gfs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_debug_cfsr_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_debug_cfsr_intel Checking test 147 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 = 483.976675 - 0: The maximum resident set size (KB) = 976964 + 0: The total amount of wall time = 463.191825 + 0: The maximum resident set size (KB) = 983644 Test 147 datm_cdeps_debug_cfsr_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_control_cfsr_faster_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_control_cfsr_faster_intel Checking test 148 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 = 234.872847 - 0: The maximum resident set size (KB) = 1032280 + 0: The total amount of wall time = 212.730457 + 0: The maximum resident set size (KB) = 1043236 Test 148 datm_cdeps_control_cfsr_faster_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_lnd_gswp3_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_lnd_gswp3_intel Checking test 149 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 @@ -4835,14 +4835,14 @@ Checking test 149 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 = 21.767041 - 0: The maximum resident set size (KB) = 226280 + 0: The total amount of wall time = 10.969690 + 0: The maximum resident set size (KB) = 220440 Test 149 datm_cdeps_lnd_gswp3_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/datm_cdeps_lnd_gswp3_rst_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/datm_cdeps_lnd_gswp3_rst_intel Checking test 150 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 @@ -4851,14 +4851,14 @@ Checking test 150 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 = 17.729713 - 0: The maximum resident set size (KB) = 220600 + 0: The total amount of wall time = 18.227515 + 0: The maximum resident set size (KB) = 226652 Test 150 datm_cdeps_lnd_gswp3_rst_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_p8_atmlnd_sbs_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_p8_atmlnd_sbs_intel Checking test 151 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4943,14 +4943,14 @@ Checking test 151 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 = 274.766079 - 0: The maximum resident set size (KB) = 1612036 + 0: The total amount of wall time = 280.322577 + 0: The maximum resident set size (KB) = 1610112 Test 151 control_p8_atmlnd_sbs_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/atmwav_control_noaero_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/atmwav_control_noaero_p8_intel Checking test 152 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4993,14 +4993,14 @@ Checking test 152 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 = 128.094446 - 0: The maximum resident set size (KB) = 1575300 + 0: The total amount of wall time = 127.451312 + 0: The maximum resident set size (KB) = 1585600 Test 152 atmwav_control_noaero_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/control_atmwav_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/control_atmwav_intel Checking test 153 control_atmwav_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -5044,14 +5044,14 @@ Checking test 153 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 = 119.770646 - 0: The maximum resident set size (KB) = 606456 + 0: The total amount of wall time = 119.847041 + 0: The maximum resident set size (KB) = 595788 Test 153 control_atmwav_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/atmaero_control_p8_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/atmaero_control_p8_intel Checking test 154 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5095,14 +5095,14 @@ Checking test 154 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 = 313.256328 - 0: The maximum resident set size (KB) = 1665824 + 0: The total amount of wall time = 301.858358 + 0: The maximum resident set size (KB) = 1670624 Test 154 atmaero_control_p8_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/atmaero_control_p8_rad_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/atmaero_control_p8_rad_intel Checking test 155 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5146,14 +5146,14 @@ Checking test 155 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 = 371.687920 - 0: The maximum resident set size (KB) = 1695112 + 0: The total amount of wall time = 373.242036 + 0: The maximum resident set size (KB) = 1695088 Test 155 atmaero_control_p8_rad_intel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /mnt/lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_261096/atmaero_control_p8_rad_micro_intel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_186904/atmaero_control_p8_rad_micro_intel Checking test 156 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5197,12 +5197,12 @@ Checking test 156 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 = 392.675578 - 0: The maximum resident set size (KB) = 1709520 + 0: The total amount of wall time = 391.173364 + 0: The maximum resident set size (KB) = 1707632 Test 156 atmaero_control_p8_rad_micro_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 3 06:33:33 UTC 2024 -Elapsed time: 06h:00m:56s. Have a nice day! +Sat Jan 13 08:01:15 UTC 2024 +Elapsed time: 03h:40m:08s. Have a nice day! diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 2413c6564b..20c7a7a588 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,62 +1,62 @@ -Wed Jan 3 09:34:02 CST 2024 +Mon Jan 15 09:48:23 CST 2024 Start Regression test -Testing UFSWM Hash: 362ade62417ac5a89831e7f1b4c12e88b018ced0 +Testing UFSWM Hash: fbc19e192652a79d71f75d0fe50afbe635ee5d25 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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) + 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) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) 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 atmaero_intel elapsed time 645 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 630 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 616 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 261 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_intel elapsed time 758 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_faster_dyn32_intel elapsed time 637 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 atml_intel elapsed time 644 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 647 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmwm_intel elapsed time 680 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile csawmg_intel elapsed time 590 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 137 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile datm_cdeps_faster_intel elapsed time 241 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_intel elapsed time 217 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile datm_cdeps_land_intel elapsed time 63 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 747 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 235 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 719 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 744 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 190 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 783 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 610 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 194 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 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 646 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 850 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 794 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 982 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 465 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 1258 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_intel elapsed time 465 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 1165 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 928 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_debug_intel elapsed time 426 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 899 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 238 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_intel elapsed time 1211 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 215 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 615 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/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 619 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 190 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 691 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 599 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 304 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_intel elapsed time 733 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_faster_dyn32_intel elapsed time 646 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 atml_intel elapsed time 641 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 667 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmwm_intel elapsed time 625 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile csawmg_intel elapsed time 705 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 247 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile datm_cdeps_faster_intel elapsed time 414 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_intel elapsed time 483 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile datm_cdeps_land_intel elapsed time 70 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 683 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 273 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 701 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 784 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 204 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 781 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 596 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 205 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 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 620 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 816 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 910 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 878 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 329 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 1106 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_intel elapsed time 328 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 1171 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 935 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_debug_intel elapsed time 300 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 826 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 298 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_intel elapsed time 1143 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 264 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 648 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/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -121,14 +121,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 = 303.008868 - 0: The maximum resident set size (KB) = 3167536 + 0: The total amount of wall time = 300.151487 + 0: The maximum resident set size (KB) = 3176936 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -192,14 +192,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 = 969.962287 - 0: The maximum resident set size (KB) = 1747336 + 0: The total amount of wall time = 960.408609 + 0: The maximum resident set size (KB) = 1739692 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_gfsv17_iau_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -208,14 +208,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 = 650.012558 - 0: The maximum resident set size (KB) = 1119320 + 0: The total amount of wall time = 652.681672 + 0: The maximum resident set size (KB) = 1126524 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -268,14 +268,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 = 478.358214 - 0: The maximum resident set size (KB) = 1109512 + 0: The total amount of wall time = 467.810530 + 0: The maximum resident set size (KB) = 1116536 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_mpi_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -339,14 +339,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 = 1083.379816 - 0: The maximum resident set size (KB) = 1644152 + 0: The total amount of wall time = 1083.716917 + 0: The maximum resident set size (KB) = 1585748 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_debug_gfsv17_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -398,14 +398,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 = 1187.411248 - 0: The maximum resident set size (KB) = 1688900 + 0: The total amount of wall time = 1180.542346 + 0: The maximum resident set size (KB) = 1692372 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -470,14 +470,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 = 331.883808 - 0: The maximum resident set size (KB) = 3204096 + 0: The total amount of wall time = 326.073372 + 0: The maximum resident set size (KB) = 3207580 Test 007 cpld_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -530,14 +530,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 = 191.504429 - 0: The maximum resident set size (KB) = 3249560 + 0: The total amount of wall time = 186.552002 + 0: The maximum resident set size (KB) = 3258288 Test 008 cpld_restart_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -602,14 +602,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 = 335.505579 - 0: The maximum resident set size (KB) = 3224132 + 0: The total amount of wall time = 322.540944 + 0: The maximum resident set size (KB) = 3230308 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_qr_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -662,14 +662,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 = 192.402397 - 0: The maximum resident set size (KB) = 3268604 + 0: The total amount of wall time = 190.733693 + 0: The maximum resident set size (KB) = 3268916 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_2threads_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -722,14 +722,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 = 357.027442 - 0: The maximum resident set size (KB) = 3535036 + 0: The total amount of wall time = 350.653889 + 0: The maximum resident set size (KB) = 3551196 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_decomp_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -782,14 +782,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 = 340.792486 - 0: The maximum resident set size (KB) = 3192764 + 0: The total amount of wall time = 325.897227 + 0: The maximum resident set size (KB) = 3202304 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_mpi_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -842,14 +842,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 = 266.554740 - 0: The maximum resident set size (KB) = 3059352 + 0: The total amount of wall time = 267.306006 + 0: The maximum resident set size (KB) = 3069988 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_ciceC_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -914,14 +914,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 = 338.439001 - 0: The maximum resident set size (KB) = 3202396 + 0: The total amount of wall time = 325.813767 + 0: The maximum resident set size (KB) = 3212276 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_c192_p8_intel Checking test 015 cpld_control_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -974,14 +974,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 = 595.301864 - 0: The maximum resident set size (KB) = 3330704 + 0: The total amount of wall time = 580.173647 + 0: The maximum resident set size (KB) = 3334616 Test 015 cpld_control_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c192_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_c192_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c192_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_c192_p8_intel Checking test 016 cpld_restart_c192_p8_intel results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -1034,14 +1034,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 = 386.537627 - 0: The maximum resident set size (KB) = 3631636 + 0: The total amount of wall time = 357.168297 + 0: The maximum resident set size (KB) = 3621388 Test 016 cpld_restart_c192_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_bmark_p8_intel Checking test 017 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1089,14 +1089,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 = 756.877461 - 0: The maximum resident set size (KB) = 4106280 + 0: The total amount of wall time = 638.574613 + 0: The maximum resident set size (KB) = 4099700 Test 017 cpld_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_bmark_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_bmark_p8_intel Checking test 018 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1144,14 +1144,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 = 504.294485 - 0: The maximum resident set size (KB) = 4368096 + 0: The total amount of wall time = 389.444542 + 0: The maximum resident set size (KB) = 4373992 Test 018 cpld_restart_bmark_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_s2sa_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_s2sa_p8_intel Checking test 019 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1202,14 +1202,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 = 309.059913 - 0: The maximum resident set size (KB) = 3165704 + 0: The total amount of wall time = 308.621300 + 0: The maximum resident set size (KB) = 3172636 Test 019 cpld_s2sa_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_noaero_p8_intel Checking test 020 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1273,14 +1273,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 = 249.444880 - 0: The maximum resident set size (KB) = 1731720 + 0: The total amount of wall time = 253.190792 + 0: The maximum resident set size (KB) = 1743088 Test 020 cpld_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_nowave_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 @@ -1342,14 +1342,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 = 245.795536 - 0: The maximum resident set size (KB) = 1781824 + 0: The total amount of wall time = 251.377718 + 0: The maximum resident set size (KB) = 1783352 Test 021 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_debug_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_debug_p8_intel Checking test 022 cpld_debug_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1402,14 +1402,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 = 497.246517 - 0: The maximum resident set size (KB) = 3228812 + 0: The total amount of wall time = 506.851256 + 0: The maximum resident set size (KB) = 3244424 Test 022 cpld_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_debug_noaero_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_debug_noaero_p8_intel Checking test 023 cpld_debug_noaero_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1461,14 +1461,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 = 334.839507 - 0: The maximum resident set size (KB) = 1750700 + 0: The total amount of wall time = 345.622348 + 0: The maximum resident set size (KB) = 1755188 Test 023 cpld_debug_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_noaero_p8_agrid_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 @@ -1530,14 +1530,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 = 244.375437 - 0: The maximum resident set size (KB) = 1775284 + 0: The total amount of wall time = 251.053895 + 0: The maximum resident set size (KB) = 1780728 Test 024 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_c48_intel Checking test 025 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1587,14 +1587,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 = 475.808724 - 0: The maximum resident set size (KB) = 2830496 + 0: The total amount of wall time = 476.316985 + 0: The maximum resident set size (KB) = 2834076 Test 025 cpld_control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_p8_faster_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_p8_faster_intel Checking test 026 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1659,14 +1659,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 = 304.389365 - 0: The maximum resident set size (KB) = 3198924 + 0: The total amount of wall time = 299.513691 + 0: The maximum resident set size (KB) = 3206928 Test 026 cpld_control_p8_faster_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_control_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_control_pdlib_p8_intel Checking test 027 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1730,14 +1730,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 = 972.212739 - 0: The maximum resident set size (KB) = 1765040 + 0: The total amount of wall time = 977.982757 + 0: The maximum resident set size (KB) = 1776448 Test 027 cpld_control_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_restart_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_restart_pdlib_p8_intel Checking test 028 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1789,14 +1789,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 = 483.351335 - 0: The maximum resident set size (KB) = 1156788 + 0: The total amount of wall time = 474.225832 + 0: The maximum resident set size (KB) = 1182808 Test 028 cpld_restart_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_mpi_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_mpi_pdlib_p8_intel Checking test 029 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1860,14 +1860,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 = 1119.692763 - 0: The maximum resident set size (KB) = 1680700 + 0: The total amount of wall time = 1096.638639 + 0: The maximum resident set size (KB) = 1669688 Test 029 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/cpld_debug_pdlib_p8_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/cpld_debug_pdlib_p8_intel Checking test 030 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1919,14 +1919,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 = 1496.666420 - 0: The maximum resident set size (KB) = 1722708 + 0: The total amount of wall time = 1459.801572 + 0: The maximum resident set size (KB) = 1718900 Test 030 cpld_debug_pdlib_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_flake_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_flake_intel Checking test 031 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1937,16 +1937,48 @@ Checking test 031 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.372375 - 0: The maximum resident set size (KB) = 697476 + 0: The total amount of wall time = 197.633672 + 0: The maximum resident set size (KB) = 704128 Test 031 control_flake_intel PASS -Test 032 control_CubedSphereGrid_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.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 atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.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 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_CubedSphereGrid_parallel_intel + 0: The total amount of wall time = 134.147851 + 0: The maximum resident set size (KB) = 651104 + +Test 032 control_CubedSphereGrid_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_CubedSphereGrid_parallel_intel Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1961,14 +1993,14 @@ Checking test 033 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.755477 - 0: The maximum resident set size (KB) = 650680 + 0: The total amount of wall time = 139.528826 + 0: The maximum resident set size (KB) = 655104 Test 033 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_latlon_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_latlon_intel Checking test 034 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1979,16 +2011,16 @@ Checking test 034 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.833848 - 0: The maximum resident set size (KB) = 648056 + 0: The total amount of wall time = 136.218606 + 0: The maximum resident set size (KB) = 646812 Test 034 control_latlon_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_wrtGauss_netcdf_parallel_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_wrtGauss_netcdf_parallel_intel Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1997,14 +2029,14 @@ Checking test 035 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.934219 - 0: The maximum resident set size (KB) = 645876 + 0: The total amount of wall time = 138.167932 + 0: The maximum resident set size (KB) = 648840 Test 035 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_c48_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_c48_intel Checking test 036 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2043,14 +2075,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 = 348.852258 -0: The maximum resident set size (KB) = 877024 +0: The total amount of wall time = 347.206121 +0: The maximum resident set size (KB) = 877428 Test 036 control_c48_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_c192_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_c192_intel Checking test 037 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2061,14 +2093,14 @@ Checking test 037 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.620675 - 0: The maximum resident set size (KB) = 858224 + 0: The total amount of wall time = 531.227860 + 0: The maximum resident set size (KB) = 857548 Test 037 control_c192_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_c384_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_c384_intel Checking test 038 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2079,14 +2111,14 @@ Checking test 038 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 584.323528 - 0: The maximum resident set size (KB) = 1244608 + 0: The total amount of wall time = 586.096571 + 0: The maximum resident set size (KB) = 1239448 Test 038 control_c384_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_c384gdas_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_c384gdas_intel Checking test 039 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -2098,7 +2130,7 @@ Checking test 039 control_c384gdas_intel results .... Comparing GFSPRS.GrbF06 .........OK 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 .........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 ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_core.res.tile4.nc ............ALT CHECK......OK @@ -2107,7 +2139,7 @@ Checking test 039 control_c384gdas_intel results .... 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 ............ALT CHECK......OK - Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.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 .........OK Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK @@ -2117,26 +2149,26 @@ Checking test 039 control_c384gdas_intel results .... 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 ............ALT CHECK......OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.060000.phy_data.tile4.nc ............ALT CHECK......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 ............ALT CHECK......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.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 = 519.662265 - 0: The maximum resident set size (KB) = 1353340 + 0: The total amount of wall time = 525.959349 + 0: The maximum resident set size (KB) = 1308164 Test 039 control_c384gdas_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_stochy_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_stochy_intel Checking test 040 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2147,18 +2179,28 @@ Checking test 040 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.289454 - 0: The maximum resident set size (KB) = 653880 + 0: The total amount of wall time = 88.627505 + 0: The maximum resident set size (KB) = 650956 Test 040 control_stochy_intel PASS -Test 041 control_stochy_restart_intel FAIL -Test 041 control_stochy_restart_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 50.630656 + 0: The maximum resident set size (KB) = 499336 + +Test 041 control_stochy_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_lndp_intel +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_lndp_intel Checking test 042 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2169,83 +2211,37 @@ Checking test 042 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.012123 - 0: The maximum resident set size (KB) = 648200 + 0: The total amount of wall time = 83.482609 + 0: The maximum resident set size (KB) = 652984 Test 042 control_lndp_intel PASS -Test 043 control_iovr4_intel FAIL - -Test 044 control_iovr5_intel FAIL - -Test 045 control_p8_intel FAIL - -Test 046 control_p8_ugwpv1_intel FAIL - -Test 048 control_noqr_p8_intel FAIL - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_iovr4_intel +Checking test 043 control_iovr4_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - 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 = 169.346270 - 0: The maximum resident set size (KB) = 1609492 - -Test 050 control_decomp_p8_intel PASS Tries: 2 - -Test 052 control_p8_lndp_intel FAIL -Test 052 control_p8_lndp_intel FAIL + 0: The total amount of wall time = 137.524528 + 0: The maximum resident set size (KB) = 648152 -Test 053 control_p8_rrtmgp_intel FAIL +Test 043 control_iovr4_intel PASS -Test 053 control_p8_rrtmgp_intel FAIL - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_p8_mynn_intel -Checking test 054 control_p8_mynn_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_iovr5_intel +Checking test 044 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2258,48 +2254,16 @@ Checking test 054 control_p8_mynn_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........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 - 0: The total amount of wall time = 170.351732 - 0: The maximum resident set size (KB) = 1638484 + 0: The total amount of wall time = 138.810247 + 0: The maximum resident set size (KB) = 650236 -Test 054 control_p8_mynn_intel PASS Tries: 2 +Test 044 control_iovr5_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/merra2_thompson_intel -Checking test 055 merra2_thompson_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_intel +Checking test 045 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2345,170 +2309,15 @@ 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 = 198.489844 - 0: The maximum resident set size (KB) = 1642368 - -Test 055 merra2_thompson_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_control_intel -Checking test 056 regional_control_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 296.757016 - 0: The maximum resident set size (KB) = 852900 - -Test 056 regional_control_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 153.437650 - 0: The maximum resident set size (KB) = 1017568 - -Test 057 regional_restart_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_decomp_intel -Checking test 058 regional_decomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 323.911992 - 0: The maximum resident set size (KB) = 848720 - -Test 058 regional_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_2threads_intel -Checking test 059 regional_2threads_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 208.771438 - 0: The maximum resident set size (KB) = 842500 - -Test 059 regional_2threads_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 301.943440 - 0: The maximum resident set size (KB) = 1364840 - -Test 060 regional_noquilt_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_netcdf_parallel_intel -Checking test 061 regional_netcdf_parallel_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc ............ALT CHECK......OK - - 0: The total amount of wall time = 312.593112 - 0: The maximum resident set size (KB) = 850964 - -Test 061 regional_netcdf_parallel_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_2dwrtdecomp_intel -Checking test 062 regional_2dwrtdecomp_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 300.191972 - 0: The maximum resident set size (KB) = 851820 - -Test 062 regional_2dwrtdecomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_wofs_intel -Checking test 063 regional_wofs_intel results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - - 0: The total amount of wall time = 386.841467 - 0: The maximum resident set size (KB) = 1916388 - -Test 063 regional_wofs_intel PASS - -Test 064 rap_control_intel FAIL - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - - 0: The total amount of wall time = 276.698871 - 0: The maximum resident set size (KB) = 1291436 - -Test 065 regional_spp_sppt_shum_skeb_intel PASS + 0: The total amount of wall time = 168.240909 + 0: The maximum resident set size (KB) = 1633812 -Test 066 rap_decomp_intel FAIL +Test 045 control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_2threads_intel -Checking test 067 rap_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_ugwpv1_intel +Checking test 046 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2554,29 +2363,301 @@ 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 = 463.375028 - 0: The maximum resident set size (KB) = 1179600 + 0: The total amount of wall time = 160.291551 + 0: The maximum resident set size (KB) = 1626392 -Test 067 rap_2threads_intel PASS Tries: 2 +Test 046 control_p8_ugwpv1_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_sfcdiff_intel -Checking test 069 rap_sfcdiff_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + 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 = 89.809273 + 0: The maximum resident set size (KB) = 893056 + +Test 047 control_restart_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + 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 = 164.586909 + 0: The maximum resident set size (KB) = 1613568 + +Test 048 control_noqr_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + 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 = 87.792261 + 0: The maximum resident set size (KB) = 934100 + +Test 049 control_restart_noqr_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + 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 = 172.336839 + 0: The maximum resident set size (KB) = 1617260 + +Test 050 control_decomp_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK + 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 = 172.628992 + 0: The maximum resident set size (KB) = 1718460 + +Test 051 control_2threads_p8_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_lndp_intel +Checking test 052 control_p8_lndp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + + 0: The total amount of wall time = 302.210254 + 0: The maximum resident set size (KB) = 1630140 + +Test 052 control_p8_lndp_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_rrtmgp_intel +Checking test 053 control_p8_rrtmgp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 @@ -2608,27 +2689,27 @@ 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 = 454.746863 - 0: The maximum resident set size (KB) = 1104144 + 0: The total amount of wall time = 224.253328 + 0: The maximum resident set size (KB) = 1689016 -Test 069 rap_sfcdiff_intel PASS +Test 053 control_p8_rrtmgp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_sfcdiff_decomp_intel -Checking test 070 rap_sfcdiff_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_mynn_intel +Checking test 054 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 @@ -2662,19 +2743,27 @@ 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 = 485.377402 - 0: The maximum resident set size (KB) = 1032256 + 0: The total amount of wall time = 166.827100 + 0: The maximum resident set size (KB) = 1642672 -Test 070 rap_sfcdiff_decomp_intel PASS Tries: 2 +Test 054 control_p8_mynn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_sfcdiff_restart_intel -Checking test 071 rap_sfcdiff_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/merra2_thompson_intel +Checking test 055 merra2_thompson_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -2708,91 +2797,47 @@ 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 = 340.876109 - 0: The maximum resident set size (KB) = 1127520 - -Test 071 rap_sfcdiff_restart_intel PASS - -Test 072 hrrr_control_intel FAIL - -Test 073 hrrr_control_decomp_intel FAIL - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hrrr_control_2threads_intel -Checking test 074 hrrr_control_2threads_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 193.418201 - 0: The maximum resident set size (KB) = 1106256 + 0: The total amount of wall time = 199.186617 + 0: The maximum resident set size (KB) = 1646212 -Test 074 hrrr_control_2threads_intel PASS - -Test 076 rrfs_v1beta_intel FAIL +Test 055 merra2_thompson_intel PASS -Test 076 rrfs_v1beta_intel FAIL -Test 077 rrfs_v1nssl_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_control_intel +Checking test 056 regional_control_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -Test 078 rrfs_v1nssl_nohailnoccn_intel FAIL + 0: The total amount of wall time = 298.330857 + 0: The maximum resident set size (KB) = 853592 -Test 078 rrfs_v1nssl_nohailnoccn_intel FAIL +Test 056 regional_control_intel PASS -Test 079 control_csawmg_intel FAIL -Test 079 control_csawmg_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 081 control_ras_intel FAIL + 0: The total amount of wall time = 154.915141 + 0: The maximum resident set size (KB) = 1021852 -Test 083 control_p8_faster_intel FAIL +Test 057 regional_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_control_faster_intel -Checking test 084 regional_control_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_decomp_intel +Checking test 058 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2802,407 +2847,236 @@ Checking test 084 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 267.899144 - 0: The maximum resident set size (KB) = 849052 + 0: The total amount of wall time = 314.697107 + 0: The maximum resident set size (KB) = 853104 -Test 084 regional_control_faster_intel PASS +Test 058 regional_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_2threads_intel +Checking test 059 regional_2threads_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.511527 - 0: The maximum resident set size (KB) = 811296 + 0: The total amount of wall time = 206.885281 + 0: The maximum resident set size (KB) = 845568 -Test 085 control_CubedSphereGrid_debug_intel PASS +Test 059 regional_2threads_intel PASS -Test 086 control_wrtGauss_netcdf_parallel_debug_intel FAIL -Test 086 control_wrtGauss_netcdf_parallel_debug_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 087 control_stochy_debug_intel FAIL + 0: The total amount of wall time = 292.432547 + 0: The maximum resident set size (KB) = 1363344 +Test 060 regional_noquilt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 157.490293 - 0: The maximum resident set size (KB) = 817036 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 ............ALT CHECK......OK -Test 088 control_lndp_debug_intel PASS + 0: The total amount of wall time = 295.719963 + 0: The maximum resident set size (KB) = 853764 -Test 089 control_csawmg_debug_intel FAIL +Test 061 regional_netcdf_parallel_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_2dwrtdecomp_intel +Checking test 062 regional_2dwrtdecomp_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 232.431530 - 0: The maximum resident set size (KB) = 864300 + 0: The total amount of wall time = 296.571920 + 0: The maximum resident set size (KB) = 854924 -Test 090 control_csawmgt_debug_intel PASS +Test 062 regional_2dwrtdecomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_wofs_intel +Checking test 063 regional_wofs_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 160.689213 - 0: The maximum resident set size (KB) = 871216 + 0: The total amount of wall time = 383.114367 + 0: The maximum resident set size (KB) = 1921396 -Test 092 control_diag_debug_intel PASS +Test 063 regional_wofs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_debug_p8_intel -Checking test 093 control_debug_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_control_intel +Checking test 064 rap_control_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 - 0: The total amount of wall time = 162.860571 - 0: The maximum resident set size (KB) = 1643308 + 0: The total amount of wall time = 452.771493 + 0: The maximum resident set size (KB) = 1106584 -Test 093 control_debug_p8_intel PASS +Test 064 rap_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_debug_intel -Checking test 094 regional_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1036.016321 - 0: The maximum resident set size (KB) = 844664 + 0: The total amount of wall time = 267.628916 + 0: The maximum resident set size (KB) = 1297156 -Test 094 regional_debug_intel PASS +Test 065 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_control_debug_intel -Checking test 095 rap_control_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_decomp_intel +Checking test 066 rap_decomp_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 281.564661 - 0: The maximum resident set size (KB) = 1199752 - -Test 095 rap_control_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 278.635660 - 0: The maximum resident set size (KB) = 1193236 - -Test 096 hrrr_control_debug_intel PASS Tries: 2 - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 279.799441 - 0: The maximum resident set size (KB) = 1195632 - -Test 097 hrrr_gf_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 286.432981 - 0: The maximum resident set size (KB) = 1203168 - -Test 098 hrrr_c3_debug_intel PASS Tries: 2 - -Test 099 rap_unified_drag_suite_debug_intel FAIL - -Test 100 rap_diag_debug_intel FAIL - -Test 100 rap_diag_debug_intel FAIL - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 290.505286 - 0: The maximum resident set size (KB) = 1195328 - -Test 101 rap_cires_ugwp_debug_intel PASS Tries: 2 - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 286.865689 - 0: The maximum resident set size (KB) = 1198384 - -Test 102 rap_unified_ugwp_debug_intel PASS Tries: 2 - -Test 103 rap_lndp_debug_intel FAIL - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 329.155778 - 0: The maximum resident set size (KB) = 1203572 - -Test 104 rap_progcld_thompson_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 282.835124 - 0: The maximum resident set size (KB) = 1196248 - -Test 105 rap_noah_debug_intel PASS Tries: 2 - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 281.245919 - 0: The maximum resident set size (KB) = 1194964 - -Test 106 rap_sfcdiff_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 470.516327 - 0: The maximum resident set size (KB) = 1197044 - -Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 286.842473 - 0: The maximum resident set size (KB) = 1189216 - -Test 108 rrfs_v1beta_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 352.130316 - 0: The maximum resident set size (KB) = 1198632 - -Test 109 rap_clm_lake_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 282.082454 - 0: The maximum resident set size (KB) = 1204784 - -Test 110 rap_flake_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - Comparing RESTART/20210322.070000.coupler.res .........OK - Comparing RESTART/20210322.070000.fv_core.res.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK - 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 = 499.323347 - 0: The maximum resident set size (KB) = 1202472 - -Test 111 gnv1_c96_no_nest_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 292.442112 - 0: The maximum resident set size (KB) = 505844 - -Test 112 control_wam_debug_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 - 0: The total amount of wall time = 256.109602 - 0: The maximum resident set size (KB) = 1150020 + 0: The total amount of wall time = 473.550912 + 0: The maximum resident set size (KB) = 1030612 -Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS +Test 066 rap_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_control_dyn32_phy32_intel -Checking test 114 rap_control_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_2threads_intel +Checking test 067 rap_2threads_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........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 @@ -3236,69 +3110,61 @@ Checking test 114 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 = 375.326703 - 0: The maximum resident set size (KB) = 1051888 + 0: The total amount of wall time = 457.567764 + 0: The maximum resident set size (KB) = 1179032 -Test 114 rap_control_dyn32_phy32_intel PASS Tries: 2 +Test 067 rap_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_restart_intel +Checking test 068 rap_restart_intel results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........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 - 0: The total amount of wall time = 192.499967 - 0: The maximum resident set size (KB) = 985344 + 0: The total amount of wall time = 232.383169 + 0: The maximum resident set size (KB) = 1098048 -Test 115 hrrr_control_dyn32_phy32_intel PASS Tries: 2 +Test 068 rap_restart_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_2threads_dyn32_phy32_intel -Checking test 116 rap_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_sfcdiff_intel +Checking test 069 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3344,15 +3210,115 @@ Checking test 116 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 = 386.801415 - 0: The maximum resident set size (KB) = 1097844 + 0: The total amount of wall time = 453.865059 + 0: The maximum resident set size (KB) = 1109868 -Test 116 rap_2threads_dyn32_phy32_intel PASS +Test 069 rap_sfcdiff_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hrrr_control_2threads_dyn32_phy32_intel -Checking test 117 hrrr_control_2threads_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_sfcdiff_decomp_intel +Checking test 070 rap_sfcdiff_decomp_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........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 + + 0: The total amount of wall time = 473.863984 + 0: The maximum resident set size (KB) = 1031440 + +Test 070 rap_sfcdiff_decomp_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_sfcdiff_restart_intel +Checking test 071 rap_sfcdiff_restart_intel results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........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 + + 0: The total amount of wall time = 340.322776 + 0: The maximum resident set size (KB) = 1133728 + +Test 071 rap_sfcdiff_restart_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/hrrr_control_intel +Checking test 072 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3398,15 +3364,15 @@ Checking test 117 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 = 168.126144 - 0: The maximum resident set size (KB) = 964208 + 0: The total amount of wall time = 228.679764 + 0: The maximum resident set size (KB) = 1043280 -Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS +Test 072 hrrr_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hrrr_control_decomp_dyn32_phy32_intel -Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/hrrr_control_decomp_intel +Checking test 073 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3452,18 +3418,94 @@ Checking test 118 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 = 206.385960 - 0: The maximum resident set size (KB) = 934096 + 0: The total amount of wall time = 235.996652 + 0: The maximum resident set size (KB) = 1034660 -Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS +Test 073 hrrr_control_decomp_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_restart_dyn32_phy32_intel -Checking test 119 rap_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/hrrr_control_2threads_intel +Checking test 074 hrrr_control_2threads_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + 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.580476 + 0: The maximum resident set size (KB) = 1120528 + +Test 074 hrrr_control_2threads_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 121.384262 + 0: The maximum resident set size (KB) = 1008512 + +Test 075 hrrr_control_restart_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rrfs_v1beta_intel +Checking test 076 rrfs_v1beta_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK @@ -3498,966 +3540,779 @@ Checking test 119 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 = 297.888374 - 0: The maximum resident set size (KB) = 1029884 + 0: The total amount of wall time = 443.789623 + 0: The maximum resident set size (KB) = 1103084 -Test 119 rap_restart_dyn32_phy32_intel PASS +Test 076 rrfs_v1beta_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hrrr_control_restart_dyn32_phy32_intel -Checking test 120 hrrr_control_restart_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rrfs_v1nssl_intel +Checking test 077 rrfs_v1nssl_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.346555 - 0: The maximum resident set size (KB) = 929724 + 0: The total amount of wall time = 540.486789 + 0: The maximum resident set size (KB) = 1987080 -Test 120 hrrr_control_restart_dyn32_phy32_intel PASS +Test 077 rrfs_v1nssl_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_control_intel -Checking test 121 conus13km_control_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rrfs_v1nssl_nohailnoccn_intel +Checking test 078 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.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 + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.173825 - 0: The maximum resident set size (KB) = 1246324 + 0: The total amount of wall time = 526.736832 + 0: The maximum resident set size (KB) = 2086448 -Test 121 conus13km_control_intel PASS +Test 078 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_2threads_intel -Checking test 122 conus13km_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_csawmg_intel +Checking test 079 control_csawmg_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 50.537561 - 0: The maximum resident set size (KB) = 1165188 + 0: The total amount of wall time = 338.929065 + 0: The maximum resident set size (KB) = 740660 -Test 122 conus13km_2threads_intel PASS +Test 079 control_csawmg_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_restart_mismatch_intel -Checking test 123 conus13km_restart_mismatch_intel results .... - Comparing sfcf002.nc .........OK - Comparing atmf002.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_csawmgt_intel +Checking test 080 control_csawmgt_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 79.202593 - 0: The maximum resident set size (KB) = 1187624 + 0: The total amount of wall time = 337.721413 + 0: The maximum resident set size (KB) = 744876 -Test 123 conus13km_restart_mismatch_intel PASS +Test 080 control_csawmgt_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_control_dyn64_phy32_intel -Checking test 124 rap_control_dyn64_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_ras_intel +Checking test 081 control_ras_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 244.371212 - 0: The maximum resident set size (KB) = 994220 + 0: The total amount of wall time = 189.708149 + 0: The maximum resident set size (KB) = 737328 -Test 124 rap_control_dyn64_phy32_intel PASS +Test 081 control_ras_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_control_debug_dyn32_phy32_intel -Checking test 125 rap_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 117.391290 + 0: The maximum resident set size (KB) = 653800 + +Test 082 control_wam_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_p8_faster_intel +Checking test 083 control_p8_faster_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/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 + + 0: The total amount of wall time = 145.767566 + 0: The maximum resident set size (KB) = 1636404 + +Test 083 control_p8_faster_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_control_faster_intel +Checking test 084 regional_control_faster_intel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 269.958500 + 0: The maximum resident set size (KB) = 850516 + +Test 084 regional_control_faster_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + + 0: The total amount of wall time = 152.723841 + 0: The maximum resident set size (KB) = 806860 + +Test 085 control_CubedSphereGrid_debug_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 271.605734 - 0: The maximum resident set size (KB) = 1079524 + 0: The total amount of wall time = 153.347626 + 0: The maximum resident set size (KB) = 806876 -Test 125 rap_control_debug_dyn32_phy32_intel PASS +Test 086 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hrrr_control_debug_dyn32_phy32_intel -Checking test 126 hrrr_control_debug_dyn32_phy32_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 275.880505 - 0: The maximum resident set size (KB) = 1071992 + 0: The total amount of wall time = 177.249852 + 0: The maximum resident set size (KB) = 811388 -Test 126 hrrr_control_debug_dyn32_phy32_intel PASS +Test 087 control_stochy_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_debug_intel -Checking test 127 conus13km_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 - 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 = 857.221348 - 0: The maximum resident set size (KB) = 1274352 + 0: The total amount of wall time = 160.047288 + 0: The maximum resident set size (KB) = 811176 -Test 127 conus13km_debug_intel PASS +Test 088 control_lndp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_debug_qr_intel -Checking test 128 conus13km_debug_qr_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 - 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 ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - 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 = 864.119963 - 0: The maximum resident set size (KB) = 924712 + 0: The total amount of wall time = 238.382036 + 0: The maximum resident set size (KB) = 860228 -Test 128 conus13km_debug_qr_intel PASS +Test 089 control_csawmg_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_debug_2threads_intel -Checking test 129 conus13km_debug_2threads_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 495.288492 - 0: The maximum resident set size (KB) = 1198060 + 0: The total amount of wall time = 229.075660 + 0: The maximum resident set size (KB) = 857720 -Test 129 conus13km_debug_2threads_intel PASS Tries: 2 +Test 090 control_csawmgt_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/conus13km_radar_tten_debug_intel -Checking test 130 conus13km_radar_tten_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 854.795037 - 0: The maximum resident set size (KB) = 1334720 + 0: The total amount of wall time = 158.283461 + 0: The maximum resident set size (KB) = 819280 -Test 130 conus13km_radar_tten_debug_intel PASS +Test 091 control_ras_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/rap_control_dyn64_phy32_debug_intel -Checking test 131 rap_control_dyn64_phy32_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 295.729673 - 0: The maximum resident set size (KB) = 1123664 + 0: The total amount of wall time = 161.000925 + 0: The maximum resident set size (KB) = 868872 -Test 131 rap_control_dyn64_phy32_debug_intel PASS +Test 092 control_diag_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hafs_regional_atm_intel -Checking test 132 hafs_regional_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 363.455312 - 0: The maximum resident set size (KB) = 741332 + 0: The total amount of wall time = 164.607267 + 0: The maximum resident set size (KB) = 1637944 -Test 132 hafs_regional_atm_intel PASS +Test 093 control_debug_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/hafs_regional_atm_thompson_gfdlsf_intel -Checking test 133 hafs_regional_atm_thompson_gfdlsf_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 391.359337 - 0: The maximum resident set size (KB) = 1114152 + 0: The total amount of wall time = 1024.991102 + 0: The maximum resident set size (KB) = 830764 -Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS +Test 094 regional_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 468.733637 - 0: The maximum resident set size (KB) = 834340 + 0: The total amount of wall time = 294.385282 + 0: The maximum resident set size (KB) = 1202480 -Test 134 hafs_regional_atm_ocn_intel PASS +Test 095 rap_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 783.326132 - 0: The maximum resident set size (KB) = 877492 + 0: The total amount of wall time = 276.171975 + 0: The maximum resident set size (KB) = 1197904 -Test 135 hafs_regional_atm_wav_intel PASS +Test 096 hrrr_control_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing archs.2019_241_06.a .........OK - Comparing 20190829.060000.out_grd.ww3 .........OK - Comparing 20190829.060000.out_pnt.ww3 .........OK - Comparing ufs.hafs.ww3.r.2019-08-29-21600 .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 881.507881 - 0: The maximum resident set size (KB) = 858908 + 0: The total amount of wall time = 276.827450 + 0: The maximum resident set size (KB) = 1207064 -Test 136 hafs_regional_atm_ocn_wav_intel PASS +Test 097 hrrr_gf_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 425.403721 - 0: The maximum resident set size (KB) = 509688 + 0: The total amount of wall time = 284.669460 + 0: The maximum resident set size (KB) = 1194580 -Test 137 hafs_regional_1nest_atm_intel PASS +Test 098 hrrr_c3_debug_intel PASS -Test 138 hafs_regional_telescopic_2nests_atm_intel FAIL -Test 138 hafs_regional_telescopic_2nests_atm_intel FAIL +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 283.447400 + 0: The maximum resident set size (KB) = 1199796 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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 ............ALT CHECK......OK - Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......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 .........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 .........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.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.phy_data.nest02.tile7.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 - 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.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 .........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 +Test 099 rap_unified_drag_suite_debug_intel PASS - 0: The total amount of wall time = 246.029151 - 0: The maximum resident set size (KB) = 377208 -Test 139 hafs_global_1nest_atm_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 291.343928 + 0: The maximum resident set size (KB) = 1279004 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - Comparing atm.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK - Comparing HURPRS.GrbF06.nest03 .........OK - Comparing HURPRS.GrbF06.nest04 .........OK - Comparing HURPRS.GrbF06.nest05 .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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.nest03.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK - 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.tile2.nc .........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 .........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 .........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 ............ALT CHECK......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_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 - Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.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.phy_data.nest02.tile7.nc .........OK - Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........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 - 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 ............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 - 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 .........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 - Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest04.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest05.nc .........OK +Test 100 rap_diag_debug_intel PASS - 0: The total amount of wall time = 496.955850 - 0: The maximum resident set size (KB) = 474920 -Test 140 hafs_global_multiple_4nests_atm_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 286.171589 + 0: The maximum resident set size (KB) = 1201252 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - Comparing HURPRS.GrbF06.nest02 .........OK +Test 101 rap_cires_ugwp_debug_intel PASS - 0: The total amount of wall time = 316.731398 - 0: The maximum resident set size (KB) = 541108 -Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 285.723018 + 0: The maximum resident set size (KB) = 1198776 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK - Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........OK - Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK +Test 102 rap_unified_ugwp_debug_intel PASS - 0: The total amount of wall time = 292.378093 - 0: The maximum resident set size (KB) = 533180 -Test 142 hafs_regional_storm_following_1nest_atm_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 287.237406 + 0: The maximum resident set size (KB) = 1200708 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK +Test 103 rap_lndp_debug_intel PASS - 0: The total amount of wall time = 335.289431 - 0: The maximum resident set size (KB) = 591096 -Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 279.111928 + 0: The maximum resident set size (KB) = 1199296 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 +Test 104 rap_progcld_thompson_debug_intel PASS - 0: The total amount of wall time = 91.647419 - 0: The maximum resident set size (KB) = 414024 -Test 144 hafs_global_storm_following_1nest_atm_intel PASS Tries: 2 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 280.404968 + 0: The maximum resident set size (KB) = 1199832 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/gnv1_nested_intel -Checking test 145 gnv1_nested_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing RESTART/20200825.180000.coupler.res .........OK - Comparing RESTART/20200825.180000.fv_core.res.nc .........OK - 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.tile4.nc .........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_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.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 .........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 - 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.phy_data.nest02.tile7.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 - 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.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 .........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 +Test 105 rap_noah_debug_intel PASS - 0: The total amount of wall time = 285.881476 - 0: The maximum resident set size (KB) = 808400 -Test 145 gnv1_nested_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_sfcdiff_debug_intel +Checking test 106 rap_sfcdiff_debug_intel results .... + Comparing sfcf000.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 = 794.882410 - 0: The maximum resident set size (KB) = 571924 + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS + 0: The total amount of wall time = 284.772815 + 0: The maximum resident set size (KB) = 1193800 +Test 106 rap_sfcdiff_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing 20200825.180000.out_grd.ww3 .........OK - Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 556.029592 - 0: The maximum resident set size (KB) = 677256 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS Tries: 2 + 0: The total amount of wall time = 468.523725 + 0: The maximum resident set size (KB) = 1201680 +Test 107 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 374.468024 - 0: The maximum resident set size (KB) = 826732 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 148 hafs_regional_docn_intel PASS Tries: 2 + 0: The total amount of wall time = 280.529206 + 0: The maximum resident set size (KB) = 1194348 +Test 108 rrfs_v1beta_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 397.201639 - 0: The maximum resident set size (KB) = 812836 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 149 hafs_regional_docn_oisst_intel PASS + 0: The total amount of wall time = 341.947806 + 0: The maximum resident set size (KB) = 1209228 +Test 109 rap_clm_lake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 951.989784 - 0: The maximum resident set size (KB) = 1152272 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 -Test 150 hafs_regional_datm_cdeps_intel PASS Tries: 2 + 0: The total amount of wall time = 290.797475 + 0: The maximum resident set size (KB) = 1194928 +Test 110 rap_flake_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 160.820020 - 0: The maximum resident set size (KB) = 1122668 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + Comparing RESTART/20210322.070000.coupler.res .........OK + Comparing RESTART/20210322.070000.fv_core.res.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.070000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.070000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.070000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.070000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.070000.sfc_data.tile6.nc .........OK -Test 151 datm_cdeps_control_cfsr_intel PASS + 0: The total amount of wall time = 492.657685 + 0: The maximum resident set size (KB) = 1207260 +Test 111 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 91.847314 - 0: The maximum resident set size (KB) = 1070048 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_wam_debug_intel +Checking test 112 control_wam_debug_intel results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -Test 152 datm_cdeps_restart_cfsr_intel PASS + 0: The total amount of wall time = 294.824904 + 0: The maximum resident set size (KB) = 518364 +Test 112 control_wam_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 152.193341 - 0: The maximum resident set size (KB) = 1006600 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -Test 153 datm_cdeps_control_gefs_intel PASS + 0: The total amount of wall time = 253.035447 + 0: The maximum resident set size (KB) = 1159584 +Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_iau_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 157.398889 - 0: The maximum resident set size (KB) = 1002176 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........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 -Test 154 datm_cdeps_iau_gefs_intel PASS + 0: The total amount of wall time = 374.533236 + 0: The maximum resident set size (KB) = 1053764 +Test 114 rap_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_stochy_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 147.934780 - 0: The maximum resident set size (KB) = 1003360 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -Test 155 datm_cdeps_stochy_gefs_intel PASS + 0: The total amount of wall time = 194.849526 + 0: The maximum resident set size (KB) = 982972 +Test 115 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_ciceC_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 151.509837 - 0: The maximum resident set size (KB) = 1136580 - -Test 156 datm_cdeps_ciceC_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 150.452946 - 0: The maximum resident set size (KB) = 1096996 - -Test 157 datm_cdeps_bulk_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_bulk_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 148.310532 - 0: The maximum resident set size (KB) = 1002688 - -Test 158 datm_cdeps_bulk_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 434.010655 - 0: The maximum resident set size (KB) = 1039404 - -Test 159 datm_cdeps_mx025_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_mx025_gefs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK - 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 = 433.491698 - 0: The maximum resident set size (KB) = 1021412 - -Test 160 datm_cdeps_mx025_gefs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 150.361481 - 0: The maximum resident set size (KB) = 1119284 - -Test 161 datm_cdeps_multiple_files_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_3072x1536_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 206.412346 - 0: The maximum resident set size (KB) = 2410692 - -Test 162 datm_cdeps_3072x1536_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_gfs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 209.832287 - 0: The maximum resident set size (KB) = 2418336 - -Test 163 datm_cdeps_gfs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_debug_cfsr_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 359.207558 - 0: The maximum resident set size (KB) = 1015920 - -Test 164 datm_cdeps_debug_cfsr_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_control_cfsr_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 = 146.784288 - 0: The maximum resident set size (KB) = 1128364 - -Test 165 datm_cdeps_control_cfsr_faster_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - 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.269827 - 0: The maximum resident set size (KB) = 255108 - -Test 166 datm_cdeps_lnd_gswp3_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/datm_cdeps_lnd_gswp3_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK - 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.132544 - 0: The maximum resident set size (KB) = 256592 - -Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - 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 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 atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.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 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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........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 @@ -4490,140 +4345,128 @@ Checking test 168 control_p8_atmlnd_sbs_intel results .... 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 ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK - Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK - Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK - 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 = 197.187129 - 0: The maximum resident set size (KB) = 1648472 - -Test 168 control_p8_atmlnd_sbs_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmwav_control_noaero_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/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 - Comparing atmf012.nc .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK - Comparing 20210322.180000.out_pnt.ww3 .........OK - Comparing 20210322.180000.out_grd.ww3 .........OK - Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 92.912379 - 0: The maximum resident set size (KB) = 1660000 + 0: The total amount of wall time = 388.767721 + 0: The maximum resident set size (KB) = 1093608 -Test 169 atmwav_control_noaero_p8_intel PASS +Test 116 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_atmwav_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/control_atmwav_intel -Checking test 170 control_atmwav_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + 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 = 89.412801 - 0: The maximum resident set size (KB) = 667996 + 0: The total amount of wall time = 166.286745 + 0: The maximum resident set size (KB) = 962688 -Test 170 control_atmwav_intel PASS +Test 117 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/atmaero_control_p8_intel -Checking test 171 atmaero_control_p8_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/hrrr_control_decomp_dyn32_phy32_intel +Checking test 118 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.120000.coupler.res .........OK + Comparing RESTART/20210322.120000.fv_core.res.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK + 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.382377 + 0: The maximum resident set size (KB) = 933028 + +Test 118 hrrr_control_decomp_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing GFSPRS.GrbF12 .........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 @@ -4657,711 +4500,952 @@ Checking test 171 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 = 225.985159 - 0: The maximum resident set size (KB) = 3023372 + 0: The total amount of wall time = 280.716968 + 0: The maximum resident set size (KB) = 1030832 -Test 171 atmaero_control_p8_intel PASS +Test 119 rap_restart_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/atmaero_control_p8_rad_intel -Checking test 172 atmaero_control_p8_rad_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 100.583349 + 0: The maximum resident set size (KB) = 930884 + +Test 120 hrrr_control_restart_dyn32_phy32_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/conus13km_control_intel +Checking test 121 conus13km_control_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf001.nc ............ALT CHECK......NOT OK + Comparing sfcf002.nc ............ALT CHECK......NOT OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.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 atmf001.nc ............ALT CHECK......NOT OK + Comparing atmf002.nc ............ALT CHECK......NOT 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 ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 278.758039 - 0: The maximum resident set size (KB) = 3082488 + 0: The total amount of wall time = 115.156297 + 0: The maximum resident set size (KB) = 1246780 -Test 172 atmaero_control_p8_rad_intel PASS +Test 121 conus13km_control_intel FAIL Tries: 2 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/atmaero_control_p8_rad_micro_intel -Checking test 173 atmaero_control_p8_rad_micro_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_control_dyn64_phy32_intel +Checking test 124 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + 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 = 291.555859 - 0: The maximum resident set size (KB) = 3092984 + 0: The total amount of wall time = 246.843091 + 0: The maximum resident set size (KB) = 989940 -Test 173 atmaero_control_p8_rad_micro_intel PASS +Test 124 rap_control_dyn64_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_atmaq_intel -Checking test 174 regional_atmaq_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_control_debug_dyn32_phy32_intel +Checking test 125 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - 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.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 653.247339 - 0: The maximum resident set size (KB) = 5268220 + 0: The total amount of wall time = 283.118750 + 0: The maximum resident set size (KB) = 1081244 -Test 174 regional_atmaq_intel PASS +Test 125 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_atmaq_debug_intel -Checking test 175 regional_atmaq_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 - Comparing RESTART/20190801.130000.coupler.res .........OK - Comparing RESTART/20190801.130000.fv_core.res.nc .........OK - Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20190801.130000.phy_data.nc .........OK - Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1251.078655 - 0: The maximum resident set size (KB) = 4585752 + 0: The total amount of wall time = 278.349238 + 0: The maximum resident set size (KB) = 1076644 -Test 175 regional_atmaq_debug_intel PASS +Test 126 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_276829/regional_atmaq_faster_intel -Checking test 176 regional_atmaq_faster_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing atmf006.nc .........OK - 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 ............ALT CHECK......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.phy_data.nc .........OK - Comparing RESTART/20190801.180000.sfc_data.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/conus13km_debug_intel +Checking test 127 conus13km_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf001.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf001.nc ............ALT CHECK......NOT 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 ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......NOT OK - 0: The total amount of wall time = 791.882776 - 0: The maximum resident set size (KB) = 5275676 + 0: The total amount of wall time = 839.408869 + 0: The maximum resident set size (KB) = 1270228 -Test 176 regional_atmaq_faster_intel PASS +Test 127 conus13km_debug_intel FAIL Tries: 2 -FAILED TESTS: -control_CubedSphereGrid_intel 032 failed in run_test -control_stochy_restart_intel 041 failed in run_test -control_iovr4_intel 043 failed in run_test -control_iovr5_intel 044 failed in run_test -control_p8_intel 045 failed in run_test -control_p8_ugwpv1_intel 046 failed in run_test -control_noqr_p8_intel 048 failed in run_test -control_2threads_p8_intel 051 failed in run_test -control_p8_lndp_intel 052 failed in run_test -control_p8_rrtmgp_intel 053 failed in run_test -rap_control_intel 064 failed in run_test -rap_decomp_intel 066 failed in run_test -hrrr_control_intel 072 failed in run_test -hrrr_control_decomp_intel 073 failed in run_test -rrfs_v1beta_intel 076 failed in run_test -rrfs_v1nssl_intel 077 failed in run_test -rrfs_v1nssl_nohailnoccn_intel 078 failed in run_test -control_csawmg_intel 079 failed in run_test -control_csawmgt_intel 080 failed in run_test -control_ras_intel 081 failed in run_test -control_wam_intel 082 failed in run_test -control_p8_faster_intel 083 failed in run_test -control_wrtGauss_netcdf_parallel_debug_intel 086 failed in run_test -control_stochy_debug_intel 087 failed in run_test -control_csawmg_debug_intel 089 failed in run_test -control_ras_debug_intel 091 failed in run_test -rap_unified_drag_suite_debug_intel 099 failed in run_test -rap_diag_debug_intel 100 failed in run_test -rap_lndp_debug_intel 103 failed in run_test -hafs_regional_telescopic_2nests_atm_intel 138 failed in run_test -REGRESSION TEST FAILED -Wed Jan 3 11:08:16 CST 2024 -Elapsed time: 01h:36m:39s. Have a nice day! -Wed Jan 3 13:39:39 CST 2024 -Start Regression test +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/conus13km_debug_qr_intel +Checking test 128 conus13km_debug_qr_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf001.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf001.nc ............ALT CHECK......NOT 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 ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.phy_data.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210512.170000.sfc_data.nc ............ALT CHECK......NOT OK -Testing UFSWM Hash: 362ade62417ac5a89831e7f1b4c12e88b018ced0 -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) - d6e8a873da79ed7a914210e37878a494b390dbcc CMEPS-interface/CMEPS (remotes/origin/feature_reorg_physics) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - adb0204ae423aba57b0c609f85ef5edc8c0852d6 FV3 (remotes/origin/feature_reorg_physics) - 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) - 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 300 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_intel elapsed time 726 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_faster_dyn32_intel elapsed time 639 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 csawmg_intel elapsed time 680 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafsw_intel elapsed time 708 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_intel elapsed time 690 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 wam_intel elapsed time 600 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/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_CubedSphereGrid_intel -Checking test 001 control_CubedSphereGrid_intel results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.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 atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.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 + 0: The total amount of wall time = 858.565029 + 0: The maximum resident set size (KB) = 925856 - 0: The total amount of wall time = 138.724947 - 0: The maximum resident set size (KB) = 647840 +Test 128 conus13km_debug_qr_intel FAIL Tries: 2 -Test 001 control_CubedSphereGrid_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/conus13km_debug_2threads_intel +Checking test 129 conus13km_debug_2threads_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf001.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf001.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 494.613659 + 0: The maximum resident set size (KB) = 1204960 + +Test 129 conus13km_debug_2threads_intel FAIL Tries: 2 + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/conus13km_radar_tten_debug_intel +Checking test 130 conus13km_radar_tten_debug_intel results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf001.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf001.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 858.053424 + 0: The maximum resident set size (KB) = 1339716 + +Test 130 conus13km_radar_tten_debug_intel FAIL Tries: 2 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_stochy_intel -Checking test 002 control_stochy_intel results .... + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/rap_control_dyn64_phy32_debug_intel +Checking test 131 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 92.676906 - 0: The maximum resident set size (KB) = 603884 + 0: The total amount of wall time = 279.952613 + 0: The maximum resident set size (KB) = 1121632 -Test 002 control_stochy_intel PASS +Test 131 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_stochy_restart_intel -Checking test 003 control_stochy_restart_intel results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 50.894966 - 0: The maximum resident set size (KB) = 501240 + 0: The total amount of wall time = 312.540278 + 0: The maximum resident set size (KB) = 746884 -Test 003 control_stochy_restart_intel PASS +Test 132 hafs_regional_atm_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_iovr4_intel -Checking test 004 control_iovr4_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 141.163364 - 0: The maximum resident set size (KB) = 645924 + 0: The total amount of wall time = 334.893644 + 0: The maximum resident set size (KB) = 1121404 -Test 004 control_iovr4_intel PASS +Test 133 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_iovr5_intel -Checking test 005 control_iovr5_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 140.388562 - 0: The maximum resident set size (KB) = 649588 + 0: The total amount of wall time = 400.981566 + 0: The maximum resident set size (KB) = 829348 -Test 005 control_iovr5_intel PASS +Test 134 hafs_regional_atm_ocn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_p8_intel -Checking test 006 control_p8_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing 20190829.060000.out_pnt.ww3 .........OK + 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 = 171.551673 - 0: The maximum resident set size (KB) = 1628692 + 0: The total amount of wall time = 779.479056 + 0: The maximum resident set size (KB) = 811952 -Test 006 control_p8_intel PASS +Test 135 hafs_regional_atm_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_p8_ugwpv1_intel -Checking test 007 control_p8_ugwpv1_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing archs.2019_241_06.a .........OK + Comparing 20190829.060000.out_grd.ww3 .........OK + Comparing 20190829.060000.out_pnt.ww3 .........OK + 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 = 162.145661 - 0: The maximum resident set size (KB) = 1633784 + 0: The total amount of wall time = 856.746540 + 0: The maximum resident set size (KB) = 885972 -Test 007 control_p8_ugwpv1_intel PASS +Test 136 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_noqr_p8_intel -Checking test 008 control_noqr_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......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 = 355.521992 + 0: The maximum resident set size (KB) = 498580 + +Test 137 hafs_regional_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + + 0: The total amount of wall time = 441.114468 + 0: The maximum resident set size (KB) = 524504 + +Test 138 hafs_regional_telescopic_2nests_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + 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 ............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 .........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 .........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_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.phy_data.nest02.tile7.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 + 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.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 .........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 = 171.306872 + 0: The maximum resident set size (KB) = 374224 + +Test 139 hafs_global_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + 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.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + 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.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 ............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.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 .........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_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 + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.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.phy_data.nest02.tile7.nc .........OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc .........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 + 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.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 + 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 ............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 + Comparing RESTART/fv_BC_ne.res.nest04.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest05.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest03.nc .........OK + 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 = 464.705692 + 0: The maximum resident set size (KB) = 472044 + +Test 140 hafs_global_multiple_4nests_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + + 0: The total amount of wall time = 240.143744 + 0: The maximum resident set size (KB) = 534760 + +Test 141 hafs_regional_specified_moving_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc .........OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.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 .........OK + Comparing RESTART/20200825.180000.sfc_data.nest02.tile2.nc ............ALT CHECK......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 = 220.665025 + 0: The maximum resident set size (KB) = 530532 + +Test 142 hafs_regional_storm_following_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + + 0: The total amount of wall time = 307.562314 + 0: The maximum resident set size (KB) = 584492 + +Test 143 hafs_regional_storm_following_1nest_atm_ocn_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 73.031033 + 0: The maximum resident set size (KB) = 402336 + +Test 144 hafs_global_storm_following_1nest_atm_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/gnv1_nested_intel +Checking test 145 gnv1_nested_intel results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing RESTART/20200825.180000.coupler.res .........OK + Comparing RESTART/20200825.180000.fv_core.res.nc .........OK + 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 ............ALT CHECK......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.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.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 + 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.phy_data.nest02.tile7.nc ............ALT CHECK......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 + 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.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 .........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 = 261.849118 + 0: The maximum resident set size (KB) = 795004 + +Test 145 gnv1_nested_intel PASS Tries: 2 + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 165.598521 - 0: The maximum resident set size (KB) = 1611628 + 0: The total amount of wall time = 769.041239 + 0: The maximum resident set size (KB) = 572820 -Test 008 control_noqr_p8_intel PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_2threads_p8_intel -Checking test 009 control_2threads_p8_intel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........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 ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing 20200825.180000.out_grd.ww3 .........OK + Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 175.503043 - 0: The maximum resident set size (KB) = 1652952 + 0: The total amount of wall time = 561.309875 + 0: The maximum resident set size (KB) = 641232 -Test 009 control_2threads_p8_intel PASS Tries: 2 +Test 147 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_p8_lndp_intel -Checking test 010 control_p8_lndp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 303.262333 - 0: The maximum resident set size (KB) = 1621076 + 0: The total amount of wall time = 361.338553 + 0: The maximum resident set size (KB) = 826744 -Test 010 control_p8_lndp_intel PASS +Test 148 hafs_regional_docn_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_p8_rrtmgp_intel -Checking test 011 control_p8_rrtmgp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 369.742598 + 0: The maximum resident set size (KB) = 812940 + +Test 149 hafs_regional_docn_oisst_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 962.721246 + 0: The maximum resident set size (KB) = 1217180 + +Test 150 hafs_regional_datm_cdeps_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 149.511316 + 0: The maximum resident set size (KB) = 1120592 + +Test 151 datm_cdeps_control_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 88.612371 + 0: The maximum resident set size (KB) = 1088512 + +Test 152 datm_cdeps_restart_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 144.904935 + 0: The maximum resident set size (KB) = 1013204 + +Test 153 datm_cdeps_control_gefs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_iau_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 146.271202 + 0: The maximum resident set size (KB) = 1012336 + +Test 154 datm_cdeps_iau_gefs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_stochy_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 147.346794 + 0: The maximum resident set size (KB) = 1011200 + +Test 155 datm_cdeps_stochy_gefs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_ciceC_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 147.100213 + 0: The maximum resident set size (KB) = 1128400 + +Test 156 datm_cdeps_ciceC_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 148.844977 + 0: The maximum resident set size (KB) = 1129956 + +Test 157 datm_cdeps_bulk_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_bulk_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 140.739160 + 0: The maximum resident set size (KB) = 1014192 + +Test 158 datm_cdeps_bulk_gefs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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 = 358.282405 + 0: The maximum resident set size (KB) = 1046428 + +Test 159 datm_cdeps_mx025_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_mx025_gefs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + 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 = 339.243408 + 0: The maximum resident set size (KB) = 1027336 + +Test 160 datm_cdeps_mx025_gefs_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 146.250929 + 0: The maximum resident set size (KB) = 1121612 + +Test 161 datm_cdeps_multiple_files_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_3072x1536_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 202.655282 + 0: The maximum resident set size (KB) = 2473228 + +Test 162 datm_cdeps_3072x1536_cfsr_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_gfs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 203.995288 + 0: The maximum resident set size (KB) = 2421836 + +Test 163 datm_cdeps_gfs_intel PASS - 0: The total amount of wall time = 225.667098 - 0: The maximum resident set size (KB) = 1698256 -Test 011 control_p8_rrtmgp_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_debug_cfsr_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 371.906651 + 0: The maximum resident set size (KB) = 1053056 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rap_control_intel -Checking test 012 rap_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/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 +Test 164 datm_cdeps_debug_cfsr_intel PASS - 0: The total amount of wall time = 451.685225 - 0: The maximum resident set size (KB) = 1095644 -Test 012 rap_control_intel PASS +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_control_cfsr_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 = 148.335784 + 0: The maximum resident set size (KB) = 1128004 -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rap_decomp_intel -Checking test 013 rap_decomp_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK +Test 165 datm_cdeps_control_cfsr_faster_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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.036715 + 0: The maximum resident set size (KB) = 252808 + +Test 166 datm_cdeps_lnd_gswp3_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/datm_cdeps_lnd_gswp3_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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.338995 + 0: The maximum resident set size (KB) = 259488 + +Test 167 datm_cdeps_lnd_gswp3_rst_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + 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 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 atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.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 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 @@ -5394,136 +5478,140 @@ Checking test 013 rap_decomp_intel results .... 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 ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 475.882836 - 0: The maximum resident set size (KB) = 1026100 - -Test 013 rap_decomp_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/hrrr_control_intel -Checking test 014 hrrr_control_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - 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 = 229.033199 - 0: The maximum resident set size (KB) = 1035000 + 0: The total amount of wall time = 191.980459 + 0: The maximum resident set size (KB) = 1635288 -Test 014 hrrr_control_intel PASS +Test 168 control_p8_atmlnd_sbs_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/hrrr_control_decomp_intel -Checking test 015 hrrr_control_decomp_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmwav_control_noaero_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/atmwav_control_noaero_p8_intel +Checking test 169 atmwav_control_noaero_p8_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.120000.coupler.res .........OK - Comparing RESTART/20210322.120000.fv_core.res.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.120000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.atmw.cpl.r.2021-03-22-64800.nc .........OK + Comparing 20210322.180000.out_pnt.ww3 .........OK + Comparing 20210322.180000.out_grd.ww3 .........OK + Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK - 0: The total amount of wall time = 236.081540 - 0: The maximum resident set size (KB) = 1025020 + 0: The total amount of wall time = 92.439400 + 0: The maximum resident set size (KB) = 1663332 -Test 015 hrrr_control_decomp_intel PASS +Test 169 atmwav_control_noaero_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rrfs_v1beta_intel -Checking test 016 rrfs_v1beta_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/control_atmwav_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/control_atmwav_intel +Checking test 170 control_atmwav_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + + 0: The total amount of wall time = 88.074640 + 0: The maximum resident set size (KB) = 672628 + +Test 170 control_atmwav_intel PASS + + +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/atmaero_control_p8_intel +Checking test 171 atmaero_control_p8_intel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.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 @@ -5557,95 +5645,15 @@ Checking test 016 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 = 446.813662 - 0: The maximum resident set size (KB) = 1098588 - -Test 016 rrfs_v1beta_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rrfs_v1nssl_intel -Checking test 017 rrfs_v1nssl_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 542.985531 - 0: The maximum resident set size (KB) = 1989200 - -Test 017 rrfs_v1nssl_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rrfs_v1nssl_nohailnoccn_intel -Checking test 018 rrfs_v1nssl_nohailnoccn_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 530.521866 - 0: The maximum resident set size (KB) = 2065216 - -Test 018 rrfs_v1nssl_nohailnoccn_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_csawmg_intel -Checking test 019 control_csawmg_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 343.154835 - 0: The maximum resident set size (KB) = 748016 - -Test 019 control_csawmg_intel PASS + 0: The total amount of wall time = 222.376883 + 0: The maximum resident set size (KB) = 3029672 - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_csawmgt_intel -Checking test 020 control_csawmgt_intel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 335.863855 - 0: The maximum resident set size (KB) = 743616 - -Test 020 control_csawmgt_intel PASS +Test 171 atmaero_control_p8_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_ras_intel -Checking test 021 control_ras_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/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 @@ -5654,40 +5662,58 @@ Checking test 021 control_ras_intel results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........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 - 0: The total amount of wall time = 190.640701 - 0: The maximum resident set size (KB) = 731796 - -Test 021 control_ras_intel PASS - - -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_wam_intel -Checking test 022 control_wam_intel results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 114.423780 - 0: The maximum resident set size (KB) = 664684 + 0: The total amount of wall time = 281.577062 + 0: The maximum resident set size (KB) = 3089604 -Test 022 control_wam_intel PASS +Test 172 atmaero_control_p8_rad_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_p8_faster_intel -Checking test 023 control_p8_faster_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/atmaero_control_p8_rad_micro_intel +Checking test 173 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK + Comparing 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 @@ -5721,126 +5747,206 @@ Checking test 023 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 = 151.134108 - 0: The maximum resident set size (KB) = 1631880 + 0: The total amount of wall time = 289.921160 + 0: The maximum resident set size (KB) = 3106284 -Test 023 control_p8_faster_intel PASS +Test 173 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_wrtGauss_netcdf_parallel_debug_intel -Checking test 024 control_wrtGauss_netcdf_parallel_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_atmaq_intel +Checking test 174 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + 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.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 154.063385 - 0: The maximum resident set size (KB) = 809320 + 0: The total amount of wall time = 659.973199 + 0: The maximum resident set size (KB) = 5263972 -Test 024 control_wrtGauss_netcdf_parallel_debug_intel PASS +Test 174 regional_atmaq_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_stochy_debug_intel -Checking test 025 control_stochy_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_atmaq_debug_intel +Checking test 175 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 172.986418 - 0: The maximum resident set size (KB) = 808396 + 0: The total amount of wall time = 1245.366734 + 0: The maximum resident set size (KB) = 4580796 -Test 025 control_stochy_debug_intel PASS +Test 175 regional_atmaq_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_csawmg_debug_intel -Checking test 026 control_csawmg_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_323354/regional_atmaq_faster_intel +Checking test 176 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + 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 ............ALT CHECK......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.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 807.606725 + 0: The maximum resident set size (KB) = 5287388 + +Test 176 regional_atmaq_faster_intel PASS - 0: The total amount of wall time = 236.357568 - 0: The maximum resident set size (KB) = 853792 +FAILED TESTS: +121 conus13km_control_intel failed in check_result +conus13km_control_intel 121 failed in run_test +127 conus13km_debug_intel failed in check_result +conus13km_debug_intel 127 failed in run_test +128 conus13km_debug_qr_intel failed in check_result +conus13km_debug_qr_intel 128 failed in run_test +129 conus13km_debug_2threads_intel failed in check_result +conus13km_debug_2threads_intel 129 failed in run_test +130 conus13km_radar_tten_debug_intel failed in check_result +conus13km_radar_tten_debug_intel 130 failed in run_test -Test 026 control_csawmg_debug_intel PASS +REGRESSION TEST FAILED +Mon Jan 15 11:22:48 CST 2024 +Elapsed time: 01h:36m:41s. Have a nice day! +Mon Jan 15 12:00:09 CST 2024 +Start Regression test +Testing UFSWM Hash: fbc19e192652a79d71f75d0fe50afbe635ee5d25 +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) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (remotes/origin/mr2_peq) + 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_debug_intel elapsed time 240 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 838 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/control_ras_debug_intel -Checking test 027 control_ras_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_295870/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 = 156.971406 - 0: The maximum resident set size (KB) = 822704 + 0: The total amount of wall time = 119.526721 + 0: The maximum resident set size (KB) = 1250672 -Test 027 control_ras_debug_intel PASS +Test 001 conus13km_control_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rap_unified_drag_suite_debug_intel -Checking test 028 rap_unified_drag_suite_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_295870/conus13km_debug_intel +Checking test 002 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.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 = 287.423204 - 0: The maximum resident set size (KB) = 1196496 + 0: The total amount of wall time = 829.403017 + 0: The maximum resident set size (KB) = 1265944 -Test 028 rap_unified_drag_suite_debug_intel PASS +Test 002 conus13km_debug_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rap_diag_debug_intel -Checking test 029 rap_diag_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_295870/conus13km_debug_qr_intel +Checking test 003 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.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 ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20210512.170000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + 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 = 309.837304 - 0: The maximum resident set size (KB) = 1279964 + 0: The total amount of wall time = 861.912660 + 0: The maximum resident set size (KB) = 930872 -Test 029 rap_diag_debug_intel PASS +Test 003 conus13km_debug_qr_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/rap_lndp_debug_intel -Checking test 030 rap_lndp_debug_intel results .... +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_295870/conus13km_debug_2threads_intel +Checking test 004 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 = 287.584210 - 0: The maximum resident set size (KB) = 1198352 + 0: The total amount of wall time = 495.824797 + 0: The maximum resident set size (KB) = 1200496 -Test 030 rap_lndp_debug_intel PASS +Test 004 conus13km_debug_2threads_intel PASS -baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_201808/hafs_regional_telescopic_2nests_atm_intel -Checking test 031 hafs_regional_telescopic_2nests_atm_intel results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK +baseline dir = /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_295870/conus13km_radar_tten_debug_intel +Checking test 005 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 = 434.775710 - 0: The maximum resident set size (KB) = 522968 + 0: The total amount of wall time = 845.908049 + 0: The maximum resident set size (KB) = 1336912 -Test 031 hafs_regional_telescopic_2nests_atm_intel PASS +Test 005 conus13km_radar_tten_debug_intel PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 3 14:07:21 CST 2024 -Elapsed time: 00h:30m:16s. Have a nice day! +Mon Jan 15 12:24:47 CST 2024 +Elapsed time: 00h:26m:52s. Have a nice day! diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 3d0de6d143..01f38ad5f3 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,54 +1,54 @@ -Fri Dec 22 13:50:39 UTC 2023 +Tue Jan 16 03:38:22 UTC 2024 Start Regression test -Testing UFSWM Hash: 8c28ee8c6c3d1c2f344ccaf74a7e441bcea0c1b4 +Testing UFSWM Hash: da8bf21571334437156a86c3f6f473d80b78c072 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) - 961eca9edff7d64281c21cbcf842c5e0aa6eea06 FV3 (remotes/origin/develop-smoke-dust) + 10429219cea50a32cad61b7e8fdc256f42bc9f15 FV3 (heads/develop-361-g1042921) 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 atmaero_intel elapsed time 1130 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_debug_intel elapsed time 573 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile atmaq_faster_intel elapsed time 567 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atmaq_intel elapsed time 715 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile atm_debug_dyn32_intel elapsed time 468 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_intel elapsed time 1185 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_faster_dyn32_intel elapsed time 1554 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 atml_intel elapsed time 637 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 csawmg_intel elapsed time 1094 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile hafs_all_intel elapsed time 701 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 1014 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 1542 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 621 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 295 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 597 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_dyn32_phy32_intel elapsed time 592 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 724 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 911 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile rrfs_intel elapsed time 656 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 1191 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2s_intel elapsed time 1414 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_32bit_intel elapsed time 645 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 1385 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 704 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_faster_intel elapsed time 997 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2swa_intel elapsed time 1321 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_intel elapsed time 611 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile s2sw_pdlib_debug_intel elapsed time 1144 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_intel elapsed time 684 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile wam_debug_intel elapsed time 532 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 1254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_mixedmode_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_p8_mixedmode_intel + a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) +Compile atmaero_intel elapsed time 931 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_debug_intel elapsed time 286 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile atmaq_faster_intel elapsed time 898 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atmaq_intel elapsed time 515 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile atm_debug_dyn32_intel elapsed time 397 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_intel elapsed time 854 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_faster_dyn32_intel elapsed time 1185 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 atml_intel elapsed time 725 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 csawmg_intel elapsed time 1388 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile hafs_all_intel elapsed time 876 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 404 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 702 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 614 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 177 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 2002 seconds. -DAPP=ATM -DFASTER=ON -DCCPP_SUITES=FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_dyn32_phy32_intel elapsed time 923 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 643 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 921 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile rrfs_intel elapsed time 547 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 1133 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2s_intel elapsed time 597 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_32bit_intel elapsed time 654 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 542 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 2154 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_faster_intel elapsed time 1481 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2swa_intel elapsed time 2220 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_intel elapsed time 627 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile s2sw_pdlib_debug_intel elapsed time 263 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_intel elapsed time 1431 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile wam_debug_intel elapsed time 773 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 884 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_mixedmode_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_p8_mixedmode_intel Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -113,14 +113,14 @@ Checking test 001 cpld_control_p8_mixedmode_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 368.946330 -The maximum resident set size (KB) = 2964148 +The total amount of wall time = 339.564957 +The maximum resident set size (KB) = 2978008 Test 001 cpld_control_p8_mixedmode_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_gfsv17_intel Checking test 002 cpld_control_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -184,14 +184,14 @@ Checking test 002 cpld_control_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 934.804789 -The maximum resident set size (KB) = 1588580 +The total amount of wall time = 917.885924 +The maximum resident set size (KB) = 1590900 Test 002 cpld_control_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_iau_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_gfsv17_iau_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_iau_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_gfsv17_iau_intel Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -200,14 +200,14 @@ Checking test 003 cpld_control_gfsv17_iau_intel results .... Comparing 20210323.000000.out_pnt.ww3 .........OK Comparing 20210323.000000.out_grd.ww3 .........OK -The total amount of wall time = 651.345388 -The maximum resident set size (KB) = 846912 +The total amount of wall time = 624.933794 +The maximum resident set size (KB) = 855976 Test 003 cpld_control_gfsv17_iau_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_restart_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_restart_gfsv17_intel Checking test 004 cpld_restart_gfsv17_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile1.nc .........OK @@ -260,14 +260,14 @@ Checking test 004 cpld_restart_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 480.508339 -The maximum resident set size (KB) = 842468 +The total amount of wall time = 462.676864 +The maximum resident set size (KB) = 845688 Test 004 cpld_restart_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_mpi_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_mpi_gfsv17_intel Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -331,14 +331,14 @@ Checking test 005 cpld_mpi_gfsv17_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1091.296057 -The maximum resident set size (KB) = 1576804 +The total amount of wall time = 1059.840086 +The maximum resident set size (KB) = 1569992 Test 005 cpld_mpi_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_debug_gfsv17_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_debug_gfsv17_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_debug_gfsv17_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_debug_gfsv17_intel Checking test 006 cpld_debug_gfsv17_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -390,14 +390,14 @@ Checking test 006 cpld_debug_gfsv17_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1288.365786 -The maximum resident set size (KB) = 1608936 +The total amount of wall time = 1192.200704 +The maximum resident set size (KB) = 1596664 Test 006 cpld_debug_gfsv17_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_p8_intel Checking test 007 cpld_control_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -462,14 +462,14 @@ Checking test 007 cpld_control_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.331161 -The maximum resident set size (KB) = 2991368 +The total amount of wall time = 382.232821 +The maximum resident set size (KB) = 3005648 Test 007 cpld_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_restart_p8_intel Checking test 008 cpld_restart_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -522,14 +522,14 @@ Checking test 008 cpld_restart_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.931080 -The maximum resident set size (KB) = 3049100 +The total amount of wall time = 227.047024 +The maximum resident set size (KB) = 3062932 Test 008 cpld_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_qr_p8_intel Checking test 009 cpld_control_qr_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -594,14 +594,14 @@ Checking test 009 cpld_control_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 391.837111 -The maximum resident set size (KB) = 3014312 +The total amount of wall time = 379.662954 +The maximum resident set size (KB) = 3029880 Test 009 cpld_control_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_restart_qr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_restart_qr_p8_intel Checking test 010 cpld_restart_qr_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -654,14 +654,14 @@ Checking test 010 cpld_restart_qr_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.305262 -The maximum resident set size (KB) = 3069244 +The total amount of wall time = 231.881070 +The maximum resident set size (KB) = 3079572 Test 010 cpld_restart_qr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_2threads_p8_intel Checking test 011 cpld_2threads_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -714,14 +714,14 @@ Checking test 011 cpld_2threads_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 355.266537 -The maximum resident set size (KB) = 3294180 +The total amount of wall time = 337.145537 +The maximum resident set size (KB) = 3313604 Test 011 cpld_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_decomp_p8_intel Checking test 012 cpld_decomp_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -774,14 +774,14 @@ Checking test 012 cpld_decomp_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 382.196146 -The maximum resident set size (KB) = 2984984 +The total amount of wall time = 370.398412 +The maximum resident set size (KB) = 2999856 Test 012 cpld_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_mpi_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_mpi_p8_intel Checking test 013 cpld_mpi_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -834,14 +834,14 @@ Checking test 013 cpld_mpi_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 325.178168 -The maximum resident set size (KB) = 2922192 +The total amount of wall time = 315.835658 +The maximum resident set size (KB) = 2927820 Test 013 cpld_mpi_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_ciceC_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_ciceC_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_ciceC_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_ciceC_p8_intel Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -906,14 +906,14 @@ Checking test 014 cpld_control_ciceC_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.131041 -The maximum resident set size (KB) = 2992232 +The total amount of wall time = 378.337834 +The maximum resident set size (KB) = 3002356 Test 014 cpld_control_ciceC_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_bmark_p8_intel Checking test 015 cpld_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -961,14 +961,14 @@ Checking test 015 cpld_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 802.056610 -The maximum resident set size (KB) = 3951560 +The total amount of wall time = 773.066540 +The maximum resident set size (KB) = 3949964 Test 015 cpld_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_bmark_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_restart_bmark_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_bmark_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_restart_bmark_p8_intel Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -1016,14 +1016,14 @@ Checking test 016 cpld_restart_bmark_p8_intel results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 643.248094 -The maximum resident set size (KB) = 4245764 +The total amount of wall time = 619.043542 +The maximum resident set size (KB) = 4250388 Test 016 cpld_restart_bmark_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_s2sa_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_s2sa_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_s2sa_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_s2sa_p8_intel Checking test 017 cpld_s2sa_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 017 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 -The total amount of wall time = 367.063174 -The maximum resident set size (KB) = 2956712 +The total amount of wall time = 357.151301 +The maximum resident set size (KB) = 2970504 Test 017 cpld_s2sa_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_noaero_p8_intel Checking test 018 cpld_control_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1145,14 +1145,14 @@ Checking test 018 cpld_control_noaero_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 292.200996 -The maximum resident set size (KB) = 1577548 +The total amount of wall time = 282.640877 +The maximum resident set size (KB) = 1581116 Test 018 cpld_control_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_c96_noaero_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_nowave_noaero_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_c96_noaero_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_nowave_noaero_p8_intel Checking test 019 cpld_control_nowave_noaero_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1214,14 +1214,14 @@ Checking test 019 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 -The total amount of wall time = 301.612034 -The maximum resident set size (KB) = 1630384 +The total amount of wall time = 288.841674 +The maximum resident set size (KB) = 1631168 Test 019 cpld_control_nowave_noaero_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_noaero_p8_agrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_noaero_p8_agrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_noaero_p8_agrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_noaero_p8_agrid_intel Checking test 020 cpld_control_noaero_p8_agrid_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1283,14 +1283,14 @@ Checking test 020 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 -The total amount of wall time = 296.171064 -The maximum resident set size (KB) = 1629268 +The total amount of wall time = 284.893010 +The maximum resident set size (KB) = 1630052 Test 020 cpld_control_noaero_p8_agrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_c48_intel Checking test 021 cpld_control_c48_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1340,14 +1340,14 @@ Checking test 021 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 -The total amount of wall time = 429.675371 -The maximum resident set size (KB) = 2640940 +The total amount of wall time = 420.780723 +The maximum resident set size (KB) = 2652208 Test 021 cpld_control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_p8_faster_intel Checking test 022 cpld_control_p8_faster_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1412,14 +1412,14 @@ Checking test 022 cpld_control_p8_faster_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.512454 -The maximum resident set size (KB) = 2993272 +The total amount of wall time = 373.129575 +The maximum resident set size (KB) = 3001324 Test 022 cpld_control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_control_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_control_pdlib_p8_intel Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1483,14 +1483,14 @@ Checking test 023 cpld_control_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 966.828946 -The maximum resident set size (KB) = 1597628 +The total amount of wall time = 934.831085 +The maximum resident set size (KB) = 1598632 Test 023 cpld_control_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_restart_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_restart_pdlib_p8_intel Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1542,14 +1542,14 @@ Checking test 024 cpld_restart_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 494.773796 -The maximum resident set size (KB) = 875376 +The total amount of wall time = 459.102973 +The maximum resident set size (KB) = 904552 Test 024 cpld_restart_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_control_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_mpi_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_control_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_mpi_pdlib_p8_intel Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1613,14 +1613,14 @@ Checking test 025 cpld_mpi_pdlib_p8_intel results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 1118.499255 -The maximum resident set size (KB) = 1591452 +The total amount of wall time = 1087.421823 +The maximum resident set size (KB) = 1573796 Test 025 cpld_mpi_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/cpld_debug_pdlib_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/cpld_debug_pdlib_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/cpld_debug_pdlib_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/cpld_debug_pdlib_p8_intel Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1672,14 +1672,14 @@ Checking test 026 cpld_debug_pdlib_p8_intel results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -The total amount of wall time = 1500.839381 -The maximum resident set size (KB) = 1617140 +The total amount of wall time = 1496.174513 +The maximum resident set size (KB) = 1613512 Test 026 cpld_debug_pdlib_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_flake_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_flake_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_flake_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_flake_intel Checking test 027 control_flake_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1690,14 +1690,14 @@ Checking test 027 control_flake_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 223.894130 -The maximum resident set size (KB) = 568388 +The total amount of wall time = 216.028463 +The maximum resident set size (KB) = 576284 Test 027 control_flake_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_CubedSphereGrid_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_CubedSphereGrid_intel Checking test 028 control_CubedSphereGrid_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1724,14 +1724,14 @@ Checking test 028 control_CubedSphereGrid_intel results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.648663 -The maximum resident set size (KB) = 522088 +The total amount of wall time = 133.380332 +The maximum resident set size (KB) = 519620 Test 028 control_CubedSphereGrid_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_CubedSphereGrid_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_CubedSphereGrid_parallel_intel Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1746,14 +1746,14 @@ Checking test 029 control_CubedSphereGrid_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 150.953051 -The maximum resident set size (KB) = 526368 +The total amount of wall time = 139.047887 +The maximum resident set size (KB) = 525152 Test 029 control_CubedSphereGrid_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_latlon_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_latlon_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_latlon_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_latlon_intel Checking test 030 control_latlon_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1764,14 +1764,14 @@ Checking test 030 control_latlon_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.930677 -The maximum resident set size (KB) = 524232 +The total amount of wall time = 135.379278 +The maximum resident set size (KB) = 522928 Test 030 control_latlon_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_wrtGauss_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_wrtGauss_netcdf_parallel_intel Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1782,14 +1782,14 @@ Checking test 031 control_wrtGauss_netcdf_parallel_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.736526 -The maximum resident set size (KB) = 525008 +The total amount of wall time = 136.902580 +The maximum resident set size (KB) = 523040 Test 031 control_wrtGauss_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c48_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_c48_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c48_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_c48_intel Checking test 032 control_c48_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1828,14 +1828,14 @@ Checking test 032 control_c48_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 328.486488 -The maximum resident set size (KB) = 709604 +The total amount of wall time = 331.308607 +The maximum resident set size (KB) = 711108 Test 032 control_c48_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c192_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_c192_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c192_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_c192_intel Checking test 033 control_c192_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1846,14 +1846,14 @@ Checking test 033 control_c192_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 543.394063 -The maximum resident set size (KB) = 634608 +The total amount of wall time = 535.950529 +The maximum resident set size (KB) = 637252 Test 033 control_c192_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c384_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_c384_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c384_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_c384_intel Checking test 034 control_c384_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1864,14 +1864,14 @@ Checking test 034 control_c384_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 620.063116 -The maximum resident set size (KB) = 956552 +The total amount of wall time = 591.606104 +The maximum resident set size (KB) = 950656 Test 034 control_c384_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_c384gdas_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_c384gdas_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_c384gdas_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_c384gdas_intel Checking test 035 control_c384gdas_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 035 control_c384gdas_intel results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 574.836007 -The maximum resident set size (KB) = 1091752 +The total amount of wall time = 527.857809 +The maximum resident set size (KB) = 1090040 Test 035 control_c384gdas_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_stochy_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_stochy_intel Checking test 036 control_stochy_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1932,28 +1932,28 @@ Checking test 036 control_stochy_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.923211 -The maximum resident set size (KB) = 532004 +The total amount of wall time = 90.950994 +The maximum resident set size (KB) = 526392 Test 036 control_stochy_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_stochy_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_stochy_restart_intel Checking test 037 control_stochy_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 52.961945 -The maximum resident set size (KB) = 328068 +The total amount of wall time = 49.999618 +The maximum resident set size (KB) = 334828 Test 037 control_stochy_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_lndp_intel Checking test 038 control_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1964,14 +1964,14 @@ Checking test 038 control_lndp_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.336159 -The maximum resident set size (KB) = 532000 +The total amount of wall time = 86.542801 +The maximum resident set size (KB) = 523148 Test 038 control_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_iovr4_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_iovr4_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_iovr4_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_iovr4_intel Checking test 039 control_iovr4_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1986,14 +1986,14 @@ Checking test 039 control_iovr4_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.881912 -The maximum resident set size (KB) = 524156 +The total amount of wall time = 136.147660 +The maximum resident set size (KB) = 521928 Test 039 control_iovr4_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_iovr5_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_iovr5_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_iovr5_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_iovr5_intel Checking test 040 control_iovr5_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2008,14 +2008,14 @@ Checking test 040 control_iovr5_intel results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.327801 -The maximum resident set size (KB) = 523360 +The total amount of wall time = 136.557763 +The maximum resident set size (KB) = 524492 Test 040 control_iovr5_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_intel Checking test 041 control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2062,14 +2062,14 @@ Checking test 041 control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 185.314324 -The maximum resident set size (KB) = 1502644 +The total amount of wall time = 177.965252 +The maximum resident set size (KB) = 1494592 Test 041 control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_ugwpv1_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_ugwpv1_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_ugwpv1_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_ugwpv1_intel Checking test 042 control_p8_ugwpv1_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 042 control_p8_ugwpv1_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 183.195088 -The maximum resident set size (KB) = 1499944 +The total amount of wall time = 175.548256 +The maximum resident set size (KB) = 1501844 Test 042 control_p8_ugwpv1_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_restart_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_restart_p8_intel Checking test 043 control_restart_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2162,14 +2162,14 @@ Checking test 043 control_restart_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 103.307747 -The maximum resident set size (KB) = 687284 +The total amount of wall time = 102.786214 +The maximum resident set size (KB) = 688744 Test 043 control_restart_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_noqr_p8_intel Checking test 044 control_noqr_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2216,14 +2216,14 @@ Checking test 044 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 -The total amount of wall time = 182.678197 -The maximum resident set size (KB) = 1487700 +The total amount of wall time = 175.883285 +The maximum resident set size (KB) = 1489816 Test 044 control_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_restart_noqr_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_restart_noqr_p8_intel Checking test 045 control_restart_noqr_p8_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 045 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 -The total amount of wall time = 102.915692 -The maximum resident set size (KB) = 700036 +The total amount of wall time = 100.859681 +The maximum resident set size (KB) = 694928 Test 045 control_restart_noqr_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_decomp_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_decomp_p8_intel Checking test 046 control_decomp_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2312,14 +2312,14 @@ Checking test 046 control_decomp_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 184.977867 -The maximum resident set size (KB) = 1501028 +The total amount of wall time = 182.100211 +The maximum resident set size (KB) = 1498960 Test 046 control_decomp_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_2threads_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_2threads_p8_intel Checking test 047 control_2threads_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2362,14 +2362,14 @@ Checking test 047 control_2threads_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 168.334672 -The maximum resident set size (KB) = 1588844 +The total amount of wall time = 157.376207 +The maximum resident set size (KB) = 1590564 Test 047 control_2threads_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_lndp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_lndp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_lndp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_lndp_intel Checking test 048 control_p8_lndp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 048 control_p8_lndp_intel results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 314.589903 -The maximum resident set size (KB) = 1495128 +The total amount of wall time = 316.620737 +The maximum resident set size (KB) = 1505544 Test 048 control_p8_lndp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_rrtmgp_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_rrtmgp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_rrtmgp_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_rrtmgp_intel Checking test 049 control_p8_rrtmgp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2442,14 +2442,14 @@ Checking test 049 control_p8_rrtmgp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 237.052035 -The maximum resident set size (KB) = 1553184 +The total amount of wall time = 232.095480 +The maximum resident set size (KB) = 1554496 Test 049 control_p8_rrtmgp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_mynn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_mynn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_mynn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_mynn_intel Checking test 050 control_p8_mynn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2496,14 +2496,14 @@ Checking test 050 control_p8_mynn_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 189.199105 -The maximum resident set size (KB) = 1506872 +The total amount of wall time = 183.806895 +The maximum resident set size (KB) = 1505872 Test 050 control_p8_mynn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/merra2_thompson_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/merra2_thompson_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/merra2_thompson_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/merra2_thompson_intel Checking test 051 merra2_thompson_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2550,14 +2550,14 @@ Checking test 051 merra2_thompson_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.252525 -The maximum resident set size (KB) = 1507980 +The total amount of wall time = 213.175129 +The maximum resident set size (KB) = 1509228 Test 051 merra2_thompson_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_control_intel Checking test 052 regional_control_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2568,28 +2568,28 @@ Checking test 052 regional_control_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 306.308614 -The maximum resident set size (KB) = 600240 +The total amount of wall time = 297.560276 +The maximum resident set size (KB) = 610132 Test 052 regional_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_restart_intel Checking test 053 regional_restart_intel results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 184.320551 -The maximum resident set size (KB) = 773468 +The total amount of wall time = 169.817346 +The maximum resident set size (KB) = 777572 Test 053 regional_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_decomp_intel Checking test 054 regional_decomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2600,14 +2600,14 @@ Checking test 054 regional_decomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 323.639888 -The maximum resident set size (KB) = 601536 +The total amount of wall time = 312.351954 +The maximum resident set size (KB) = 606924 Test 054 regional_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_2threads_intel Checking test 055 regional_2threads_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2618,14 +2618,14 @@ Checking test 055 regional_2threads_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.527924 -The maximum resident set size (KB) = 657140 +The total amount of wall time = 187.166914 +The maximum resident set size (KB) = 655908 Test 055 regional_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_noquilt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_noquilt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_noquilt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_noquilt_intel Checking test 056 regional_noquilt_intel results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2633,28 +2633,28 @@ Checking test 056 regional_noquilt_intel results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 302.503541 -The maximum resident set size (KB) = 1136812 +The total amount of wall time = 292.883420 +The maximum resident set size (KB) = 1138940 Test 056 regional_noquilt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_netcdf_parallel_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_netcdf_parallel_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_netcdf_parallel_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_netcdf_parallel_intel Checking test 057 regional_netcdf_parallel_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 300.861202 -The maximum resident set size (KB) = 605512 +The total amount of wall time = 298.499481 +The maximum resident set size (KB) = 606188 Test 057 regional_netcdf_parallel_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_2dwrtdecomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_2dwrtdecomp_intel Checking test 058 regional_2dwrtdecomp_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2665,14 +2665,14 @@ Checking test 058 regional_2dwrtdecomp_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.297003 -The maximum resident set size (KB) = 605836 +The total amount of wall time = 299.643428 +The maximum resident set size (KB) = 605616 Test 058 regional_2dwrtdecomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/fv3_regional_wofs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_wofs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/fv3_regional_wofs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_wofs_intel Checking test 059 regional_wofs_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2683,14 +2683,14 @@ Checking test 059 regional_wofs_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 372.090408 -The maximum resident set size (KB) = 1578800 +The total amount of wall time = 382.124403 +The maximum resident set size (KB) = 1581248 Test 059 regional_wofs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_intel Checking test 060 rap_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2737,14 +2737,14 @@ Checking test 060 rap_control_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 416.854216 -The maximum resident set size (KB) = 915528 +The total amount of wall time = 409.090617 +The maximum resident set size (KB) = 908480 Test 060 rap_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_spp_sppt_shum_skeb_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_spp_sppt_shum_skeb_intel Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2755,14 +2755,14 @@ Checking test 061 regional_spp_sppt_shum_skeb_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 253.907930 -The maximum resident set size (KB) = 1097216 +The total amount of wall time = 248.303094 +The maximum resident set size (KB) = 1087456 Test 061 regional_spp_sppt_shum_skeb_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_decomp_intel Checking test 062 rap_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2809,14 +2809,14 @@ Checking test 062 rap_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 431.731385 -The maximum resident set size (KB) = 914800 +The total amount of wall time = 426.689856 +The maximum resident set size (KB) = 909292 Test 062 rap_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_2threads_intel Checking test 063 rap_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2863,14 +2863,14 @@ Checking test 063 rap_2threads_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 377.372166 -The maximum resident set size (KB) = 1003480 +The total amount of wall time = 374.803359 +The maximum resident set size (KB) = 994740 Test 063 rap_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_restart_intel Checking test 064 rap_restart_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2909,14 +2909,14 @@ Checking test 064 rap_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 213.770754 -The maximum resident set size (KB) = 779480 +The total amount of wall time = 213.308670 +The maximum resident set size (KB) = 782596 Test 064 rap_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_sfcdiff_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_sfcdiff_intel Checking test 065 rap_sfcdiff_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2963,14 +2963,14 @@ Checking test 065 rap_sfcdiff_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 417.343091 -The maximum resident set size (KB) = 910112 +The total amount of wall time = 409.728212 +The maximum resident set size (KB) = 908364 Test 065 rap_sfcdiff_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_sfcdiff_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_sfcdiff_decomp_intel Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3017,14 +3017,14 @@ Checking test 066 rap_sfcdiff_decomp_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 432.866503 -The maximum resident set size (KB) = 912128 +The total amount of wall time = 428.349132 +The maximum resident set size (KB) = 907844 Test 066 rap_sfcdiff_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_sfcdiff_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_sfcdiff_restart_intel Checking test 067 rap_sfcdiff_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3063,14 +3063,14 @@ Checking test 067 rap_sfcdiff_restart_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 315.713489 -The maximum resident set size (KB) = 777192 +The total amount of wall time = 306.080038 +The maximum resident set size (KB) = 781188 Test 067 rap_sfcdiff_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_intel Checking test 068 hrrr_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3117,14 +3117,14 @@ Checking test 068 hrrr_control_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 215.663447 -The maximum resident set size (KB) = 908512 +The total amount of wall time = 209.042219 +The maximum resident set size (KB) = 904140 Test 068 hrrr_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_decomp_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_decomp_intel Checking test 069 hrrr_control_decomp_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3171,14 +3171,14 @@ Checking test 069 hrrr_control_decomp_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 218.227478 -The maximum resident set size (KB) = 906396 +The total amount of wall time = 215.317856 +The maximum resident set size (KB) = 907152 Test 069 hrrr_control_decomp_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_2threads_intel Checking test 070 hrrr_control_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3225,28 +3225,28 @@ Checking test 070 hrrr_control_2threads_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 192.919600 -The maximum resident set size (KB) = 990720 +The total amount of wall time = 189.564749 +The maximum resident set size (KB) = 985840 Test 070 hrrr_control_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_restart_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_restart_intel Checking test 071 hrrr_control_restart_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 117.601133 -The maximum resident set size (KB) = 736064 +The total amount of wall time = 111.288660 +The maximum resident set size (KB) = 739552 Test 071 hrrr_control_restart_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rrfs_v1beta_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rrfs_v1beta_intel Checking test 072 rrfs_v1beta_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3293,14 +3293,14 @@ Checking test 072 rrfs_v1beta_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 406.052616 -The maximum resident set size (KB) = 909132 +The total amount of wall time = 400.620050 +The maximum resident set size (KB) = 901708 Test 072 rrfs_v1beta_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rrfs_v1nssl_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rrfs_v1nssl_intel Checking test 073 rrfs_v1nssl_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3315,14 +3315,14 @@ Checking test 073 rrfs_v1nssl_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 490.643201 -The maximum resident set size (KB) = 1873484 +The total amount of wall time = 489.166601 +The maximum resident set size (KB) = 1867740 Test 073 rrfs_v1nssl_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1nssl_nohailnoccn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rrfs_v1nssl_nohailnoccn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1nssl_nohailnoccn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rrfs_v1nssl_nohailnoccn_intel Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3337,14 +3337,14 @@ Checking test 074 rrfs_v1nssl_nohailnoccn_intel results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 481.049894 -The maximum resident set size (KB) = 1860052 +The total amount of wall time = 471.296809 +The maximum resident set size (KB) = 1855040 Test 074 rrfs_v1nssl_nohailnoccn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmg_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_csawmg_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmg_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_csawmg_intel Checking test 075 control_csawmg_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3355,14 +3355,14 @@ Checking test 075 control_csawmg_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 355.182615 -The maximum resident set size (KB) = 596924 +The total amount of wall time = 347.945007 +The maximum resident set size (KB) = 596252 Test 075 control_csawmg_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_csawmgt_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_csawmgt_intel Checking test 076 control_csawmgt_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3373,14 +3373,14 @@ Checking test 076 control_csawmgt_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 350.798274 -The maximum resident set size (KB) = 593348 +The total amount of wall time = 344.518741 +The maximum resident set size (KB) = 591932 Test 076 control_csawmgt_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_ras_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_ras_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_ras_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_ras_intel Checking test 077 control_ras_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3391,26 +3391,26 @@ Checking test 077 control_ras_intel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.607266 -The maximum resident set size (KB) = 562972 +The total amount of wall time = 185.401079 +The maximum resident set size (KB) = 560104 Test 077 control_ras_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wam_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_wam_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wam_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_wam_intel Checking test 078 control_wam_intel results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.157068 -The maximum resident set size (KB) = 282848 +The total amount of wall time = 120.018729 +The maximum resident set size (KB) = 546032 Test 078 control_wam_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_faster_intel Checking test 079 control_p8_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3457,14 +3457,14 @@ Checking test 079 control_p8_faster_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 176.147802 -The maximum resident set size (KB) = 1500384 +The total amount of wall time = 168.904671 +The maximum resident set size (KB) = 1503956 Test 079 control_p8_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_control_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_control_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_control_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_control_faster_intel Checking test 080 regional_control_faster_intel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3475,14 +3475,14 @@ Checking test 080 regional_control_faster_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.883266 -The maximum resident set size (KB) = 599904 +The total amount of wall time = 287.188746 +The maximum resident set size (KB) = 611920 Test 080 regional_control_faster_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_CubedSphereGrid_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_CubedSphereGrid_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_CubedSphereGrid_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_CubedSphereGrid_debug_intel Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3509,364 +3509,364 @@ Checking test 081 control_CubedSphereGrid_debug_intel results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 172.494621 -The maximum resident set size (KB) = 685020 +The total amount of wall time = 162.341338 +The maximum resident set size (KB) = 679292 Test 081 control_CubedSphereGrid_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wrtGauss_netcdf_parallel_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_wrtGauss_netcdf_parallel_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wrtGauss_netcdf_parallel_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_wrtGauss_netcdf_parallel_debug_intel Checking test 082 control_wrtGauss_netcdf_parallel_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.364879 -The maximum resident set size (KB) = 687256 +The total amount of wall time = 163.075825 +The maximum resident set size (KB) = 681904 Test 082 control_wrtGauss_netcdf_parallel_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_stochy_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_stochy_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_stochy_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_stochy_debug_intel Checking test 083 control_stochy_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 189.599042 -The maximum resident set size (KB) = 696684 +The total amount of wall time = 182.460731 +The maximum resident set size (KB) = 689008 Test 083 control_stochy_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_lndp_debug_intel Checking test 084 control_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 168.547566 -The maximum resident set size (KB) = 694940 +The total amount of wall time = 164.873473 +The maximum resident set size (KB) = 693028 Test 084 control_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmg_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_csawmg_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmg_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_csawmg_debug_intel Checking test 085 control_csawmg_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 277.413431 -The maximum resident set size (KB) = 731092 +The total amount of wall time = 260.310358 +The maximum resident set size (KB) = 725864 Test 085 control_csawmg_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_csawmgt_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_csawmgt_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_csawmgt_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_csawmgt_debug_intel Checking test 086 control_csawmgt_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 276.276758 -The maximum resident set size (KB) = 727792 +The total amount of wall time = 256.167254 +The maximum resident set size (KB) = 727080 Test 086 control_csawmgt_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_ras_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_ras_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_ras_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_ras_debug_intel Checking test 087 control_ras_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.264418 -The maximum resident set size (KB) = 697268 +The total amount of wall time = 167.266983 +The maximum resident set size (KB) = 699176 Test 087 control_ras_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_diag_debug_intel Checking test 088 control_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 178.700857 -The maximum resident set size (KB) = 750144 +The total amount of wall time = 166.258328 +The maximum resident set size (KB) = 741172 Test 088 control_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_debug_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_debug_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_debug_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_debug_p8_intel Checking test 089 control_debug_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.571541 -The maximum resident set size (KB) = 1516404 +The total amount of wall time = 176.381771 +The maximum resident set size (KB) = 1516140 Test 089 control_debug_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_debug_intel Checking test 090 regional_debug_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1082.948444 -The maximum resident set size (KB) = 624900 +The total amount of wall time = 1062.817185 +The maximum resident set size (KB) = 628984 Test 090 regional_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_debug_intel Checking test 091 rap_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.583833 -The maximum resident set size (KB) = 1075924 +The total amount of wall time = 306.051790 +The maximum resident set size (KB) = 1072192 Test 091 rap_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_debug_intel Checking test 092 hrrr_control_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 299.759344 -The maximum resident set size (KB) = 1067184 +The total amount of wall time = 299.390181 +The maximum resident set size (KB) = 1064372 Test 092 hrrr_control_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_gf_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_gf_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_gf_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_gf_debug_intel Checking test 093 hrrr_gf_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.995829 -The maximum resident set size (KB) = 1073448 +The total amount of wall time = 305.803473 +The maximum resident set size (KB) = 1067520 Test 093 hrrr_gf_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_c3_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_c3_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_c3_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_c3_debug_intel Checking test 094 hrrr_c3_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.989015 -The maximum resident set size (KB) = 1074640 +The total amount of wall time = 304.058608 +The maximum resident set size (KB) = 1066456 Test 094 hrrr_c3_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_unified_drag_suite_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_unified_drag_suite_debug_intel Checking test 095 rap_unified_drag_suite_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 305.790012 -The maximum resident set size (KB) = 1074712 +The total amount of wall time = 305.872706 +The maximum resident set size (KB) = 1071536 Test 095 rap_unified_drag_suite_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_diag_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_diag_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_diag_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_diag_debug_intel Checking test 096 rap_diag_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 324.203990 -The maximum resident set size (KB) = 1160520 +The total amount of wall time = 318.321948 +The maximum resident set size (KB) = 1154140 Test 096 rap_diag_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_cires_ugwp_debug_intel Checking test 097 rap_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 320.861789 -The maximum resident set size (KB) = 1074596 +The total amount of wall time = 312.584690 +The maximum resident set size (KB) = 1068420 Test 097 rap_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_unified_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_unified_ugwp_debug_intel Checking test 098 rap_unified_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 314.713493 -The maximum resident set size (KB) = 1076292 +The total amount of wall time = 311.974613 +The maximum resident set size (KB) = 1071088 Test 098 rap_unified_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_lndp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_lndp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_lndp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_lndp_debug_intel Checking test 099 rap_lndp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.612982 -The maximum resident set size (KB) = 1076084 +The total amount of wall time = 309.013476 +The maximum resident set size (KB) = 1070580 Test 099 rap_lndp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_progcld_thompson_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_progcld_thompson_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_progcld_thompson_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_progcld_thompson_debug_intel Checking test 100 rap_progcld_thompson_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.884498 -The maximum resident set size (KB) = 1076136 +The total amount of wall time = 304.482406 +The maximum resident set size (KB) = 1071624 Test 100 rap_progcld_thompson_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_noah_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_noah_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_noah_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_noah_debug_intel Checking test 101 rap_noah_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.887507 -The maximum resident set size (KB) = 1070568 +The total amount of wall time = 298.630343 +The maximum resident set size (KB) = 1067756 Test 101 rap_noah_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_sfcdiff_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_sfcdiff_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_sfcdiff_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_sfcdiff_debug_intel Checking test 102 rap_sfcdiff_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 308.620164 -The maximum resident set size (KB) = 1073216 +The total amount of wall time = 305.018546 +The maximum resident set size (KB) = 1068988 Test 102 rap_sfcdiff_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_noah_sfcdiff_cires_ugwp_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_noah_sfcdiff_cires_ugwp_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_noah_sfcdiff_cires_ugwp_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_noah_sfcdiff_cires_ugwp_debug_intel Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 506.702167 -The maximum resident set size (KB) = 1074348 +The total amount of wall time = 495.883507 +The maximum resident set size (KB) = 1068048 Test 103 rap_noah_sfcdiff_cires_ugwp_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rrfs_v1beta_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rrfs_v1beta_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rrfs_v1beta_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rrfs_v1beta_debug_intel Checking test 104 rrfs_v1beta_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.030900 -The maximum resident set size (KB) = 1066380 +The total amount of wall time = 298.792958 +The maximum resident set size (KB) = 1064388 Test 104 rrfs_v1beta_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_clm_lake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_clm_lake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_clm_lake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_clm_lake_debug_intel Checking test 105 rap_clm_lake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 362.787209 -The maximum resident set size (KB) = 1077308 +The total amount of wall time = 356.705893 +The maximum resident set size (KB) = 1071032 Test 105 rap_clm_lake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_flake_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_flake_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_flake_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_flake_debug_intel Checking test 106 rap_flake_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.689800 -The maximum resident set size (KB) = 1074900 +The total amount of wall time = 308.697516 +The maximum resident set size (KB) = 1070432 Test 106 rap_flake_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/gnv1_c96_no_nest_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/gnv1_c96_no_nest_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/gnv1_c96_no_nest_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/gnv1_c96_no_nest_debug_intel Checking test 107 gnv1_c96_no_nest_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -3907,26 +3907,26 @@ Checking test 107 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 -The total amount of wall time = 533.377903 -The maximum resident set size (KB) = 1080808 +The total amount of wall time = 527.369305 +The maximum resident set size (KB) = 1075748 Test 107 gnv1_c96_no_nest_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_wam_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_wam_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_wam_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_wam_debug_intel Checking test 108 control_wam_debug_intel results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 299.451811 -The maximum resident set size (KB) = 302028 +The total amount of wall time = 299.027489 +The maximum resident set size (KB) = 298312 Test 108 control_wam_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_spp_sppt_shum_skeb_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_spp_sppt_shum_skeb_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_spp_sppt_shum_skeb_dyn32_phy32_intel Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 244.476247 -The maximum resident set size (KB) = 952376 +The total amount of wall time = 242.876887 +The maximum resident set size (KB) = 954396 Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_dyn32_phy32_intel Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3991,14 +3991,14 @@ Checking test 110 rap_control_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 339.469767 -The maximum resident set size (KB) = 789880 +The total amount of wall time = 342.962053 +The maximum resident set size (KB) = 787100 Test 110 rap_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_dyn32_phy32_intel Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4045,14 +4045,14 @@ Checking test 111 hrrr_control_dyn32_phy32_intel results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -The total amount of wall time = 182.188512 -The maximum resident set size (KB) = 788008 +The total amount of wall time = 179.695516 +The maximum resident set size (KB) = 783728 Test 111 hrrr_control_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_2threads_dyn32_phy32_intel Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4099,14 +4099,14 @@ Checking test 112 rap_2threads_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 311.569749 -The maximum resident set size (KB) = 854044 +The total amount of wall time = 310.207037 +The maximum resident set size (KB) = 854604 Test 112 rap_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_2threads_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_2threads_dyn32_phy32_intel Checking test 113 hrrr_control_2threads_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4153,14 +4153,14 @@ Checking test 113 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 -The total amount of wall time = 165.960959 -The maximum resident set size (KB) = 840636 +The total amount of wall time = 160.497586 +The maximum resident set size (KB) = 842136 Test 113 hrrr_control_2threads_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_decomp_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_decomp_dyn32_phy32_intel Checking test 114 hrrr_control_decomp_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4207,14 +4207,14 @@ Checking test 114 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 -The total amount of wall time = 190.341501 -The maximum resident set size (KB) = 790320 +The total amount of wall time = 191.086252 +The maximum resident set size (KB) = 783676 Test 114 hrrr_control_decomp_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_restart_dyn32_phy32_intel Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -4253,28 +4253,28 @@ Checking test 115 rap_restart_dyn32_phy32_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 262.480720 -The maximum resident set size (KB) = 684944 +The total amount of wall time = 252.411547 +The maximum resident set size (KB) = 684416 Test 115 rap_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_restart_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_restart_dyn32_phy32_intel Checking test 116 hrrr_control_restart_dyn32_phy32_intel results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 96.683091 -The maximum resident set size (KB) = 667528 +The total amount of wall time = 95.218990 +The maximum resident set size (KB) = 667536 Test 116 hrrr_control_restart_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_control_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_control_intel Checking test 117 conus13km_control_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4290,40 +4290,40 @@ Checking test 117 conus13km_control_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 136.230740 -The maximum resident set size (KB) = 1048480 +The total amount of wall time = 132.740723 +The maximum resident set size (KB) = 1049556 Test 117 conus13km_control_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_control_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_control_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_2threads_intel Checking test 118 conus13km_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 76.643174 -The maximum resident set size (KB) = 1058544 +The total amount of wall time = 73.935900 +The maximum resident set size (KB) = 1059452 Test 118 conus13km_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_restart_mismatch_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_restart_mismatch_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_restart_mismatch_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_restart_mismatch_intel Checking test 119 conus13km_restart_mismatch_intel results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 100.905029 -The maximum resident set size (KB) = 947840 +The total amount of wall time = 90.321467 +The maximum resident set size (KB) = 955808 Test 119 conus13km_restart_mismatch_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_dyn64_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_dyn64_phy32_intel Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -4370,42 +4370,42 @@ Checking test 120 rap_control_dyn64_phy32_intel results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK -The total amount of wall time = 234.355164 -The maximum resident set size (KB) = 806644 +The total amount of wall time = 237.370999 +The maximum resident set size (KB) = 808496 Test 120 rap_control_dyn64_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_debug_dyn32_phy32_intel Checking test 121 rap_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.259917 -The maximum resident set size (KB) = 952124 +The total amount of wall time = 298.565862 +The maximum resident set size (KB) = 956320 Test 121 rap_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hrrr_control_debug_dyn32_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hrrr_control_debug_dyn32_phy32_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hrrr_control_debug_dyn32_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hrrr_control_debug_dyn32_phy32_intel Checking test 122 hrrr_control_debug_dyn32_phy32_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.166308 -The maximum resident set size (KB) = 949980 +The total amount of wall time = 291.952544 +The maximum resident set size (KB) = 946788 Test 122 hrrr_control_debug_dyn32_phy32_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_debug_intel Checking test 123 conus13km_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4419,14 +4419,14 @@ Checking test 123 conus13km_debug_intel results .... Comparing RESTART/20210512.170000.phy_data.nc .........OK Comparing RESTART/20210512.170000.sfc_data.nc .........OK -The total amount of wall time = 929.733868 -The maximum resident set size (KB) = 1081644 +The total amount of wall time = 897.786695 +The maximum resident set size (KB) = 1086364 Test 123 conus13km_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_debug_qr_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_debug_qr_intel Checking test 124 conus13km_debug_qr_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4440,81 +4440,81 @@ Checking test 124 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 -The total amount of wall time = 929.540100 -The maximum resident set size (KB) = 709352 +The total amount of wall time = 910.249426 +The maximum resident set size (KB) = 709304 Test 124 conus13km_debug_qr_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_debug_2threads_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_debug_2threads_intel Checking test 125 conus13km_debug_2threads_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 534.914118 -The maximum resident set size (KB) = 1091584 +The total amount of wall time = 522.395964 +The maximum resident set size (KB) = 1089344 Test 125 conus13km_debug_2threads_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/conus13km_radar_tten_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/conus13km_radar_tten_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/conus13km_radar_tten_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/conus13km_radar_tten_debug_intel Checking test 126 conus13km_radar_tten_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 922.270001 -The maximum resident set size (KB) = 1156588 +The total amount of wall time = 902.364437 +The maximum resident set size (KB) = 1154248 Test 126 conus13km_radar_tten_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/rap_control_debug_dyn64_phy32_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/rap_control_dyn64_phy32_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/rap_control_debug_dyn64_phy32_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/rap_control_dyn64_phy32_debug_intel Checking test 127 rap_control_dyn64_phy32_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 310.690699 -The maximum resident set size (KB) = 974952 +The total amount of wall time = 304.875012 +The maximum resident set size (KB) = 974496 Test 127 rap_control_dyn64_phy32_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_atm_intel Checking test 128 hafs_regional_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 378.248313 -The maximum resident set size (KB) = 615008 +The total amount of wall time = 349.511813 +The maximum resident set size (KB) = 620312 Test 128 hafs_regional_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_thompson_gfdlsf_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_atm_thompson_gfdlsf_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_thompson_gfdlsf_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_atm_thompson_gfdlsf_intel Checking test 129 hafs_regional_atm_thompson_gfdlsf_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 367.413048 -The maximum resident set size (KB) = 975660 +The total amount of wall time = 333.361751 +The maximum resident set size (KB) = 973940 Test 129 hafs_regional_atm_thompson_gfdlsf_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_atm_ocn_intel Checking test 130 hafs_regional_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4523,14 +4523,14 @@ Checking test 130 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 -The total amount of wall time = 490.072746 -The maximum resident set size (KB) = 662736 +The total amount of wall time = 429.036834 +The maximum resident set size (KB) = 662912 Test 130 hafs_regional_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_atm_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_atm_wav_intel Checking test 131 hafs_regional_atm_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4539,14 +4539,14 @@ Checking test 131 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 -The total amount of wall time = 808.755378 -The maximum resident set size (KB) = 696172 +The total amount of wall time = 757.918407 +The maximum resident set size (KB) = 705684 Test 131 hafs_regional_atm_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_atm_ocn_wav_intel Checking test 132 hafs_regional_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4557,14 +4557,14 @@ Checking test 132 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 -The total amount of wall time = 972.310138 -The maximum resident set size (KB) = 723656 +The total amount of wall time = 950.335845 +The maximum resident set size (KB) = 708616 Test 132 hafs_regional_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_1nest_atm_intel Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4586,14 +4586,14 @@ Checking test 133 hafs_regional_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 337.047255 -The maximum resident set size (KB) = 386332 +The total amount of wall time = 333.689227 +The maximum resident set size (KB) = 424748 Test 133 hafs_regional_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_telescopic_2nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_telescopic_2nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_telescopic_2nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_telescopic_2nests_atm_intel Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4602,14 +4602,14 @@ Checking test 134 hafs_regional_telescopic_2nests_atm_intel results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 478.766676 -The maximum resident set size (KB) = 406972 +The total amount of wall time = 425.638020 +The maximum resident set size (KB) = 419780 Test 134 hafs_regional_telescopic_2nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_global_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_global_1nest_atm_intel Checking test 135 hafs_global_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4656,14 +4656,14 @@ Checking test 135 hafs_global_1nest_atm_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 194.822277 -The maximum resident set size (KB) = 285116 +The total amount of wall time = 181.846806 +The maximum resident set size (KB) = 287532 Test 135 hafs_global_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_multiple_4nests_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_global_multiple_4nests_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_multiple_4nests_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_global_multiple_4nests_atm_intel Checking test 136 hafs_global_multiple_4nests_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4745,14 +4745,14 @@ Checking test 136 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 -The total amount of wall time = 555.331933 -The maximum resident set size (KB) = 385412 +The total amount of wall time = 521.829721 +The maximum resident set size (KB) = 378944 Test 136 hafs_global_multiple_4nests_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_specified_moving_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_specified_moving_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_specified_moving_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_specified_moving_1nest_atm_intel Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4761,14 +4761,14 @@ Checking test 137 hafs_regional_specified_moving_1nest_atm_intel results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 258.181353 -The maximum resident set size (KB) = 420420 +The total amount of wall time = 230.441340 +The maximum resident set size (KB) = 425888 Test 137 hafs_regional_specified_moving_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_storm_following_1nest_atm_intel Checking test 138 hafs_regional_storm_following_1nest_atm_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4790,14 +4790,14 @@ Checking test 138 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 -The total amount of wall time = 242.738674 -The maximum resident set size (KB) = 424036 +The total amount of wall time = 214.408098 +The maximum resident set size (KB) = 424384 Test 138 hafs_regional_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_storm_following_1nest_atm_ocn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_storm_following_1nest_atm_ocn_intel Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4806,28 +4806,28 @@ Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_intel results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 301.395617 -The maximum resident set size (KB) = 488996 +The total amount of wall time = 276.609242 +The maximum resident set size (KB) = 496528 Test 139 hafs_regional_storm_following_1nest_atm_ocn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_global_storm_following_1nest_atm_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_global_storm_following_1nest_atm_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_global_storm_following_1nest_atm_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_global_storm_following_1nest_atm_intel Checking test 140 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 -The total amount of wall time = 107.080886 -The maximum resident set size (KB) = 320340 +The total amount of wall time = 93.803446 +The maximum resident set size (KB) = 315652 Test 140 hafs_global_storm_following_1nest_atm_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/gnv1_nested_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/gnv1_nested_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/gnv1_nested_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/gnv1_nested_intel Checking test 141 gnv1_nested_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4874,28 +4874,28 @@ Checking test 141 gnv1_nested_intel results .... Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK -The total amount of wall time = 290.041968 -The maximum resident set size (KB) = 676960 +The total amount of wall time = 264.662160 +The maximum resident set size (KB) = 681300 -Test 141 gnv1_nested_intel PASS +Test 141 gnv1_nested_intel PASS Tries: 2 -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_storm_following_1nest_atm_ocn_debug_intel Checking test 142 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 -The total amount of wall time = 853.266033 -The maximum resident set size (KB) = 499412 +The total amount of wall time = 828.440100 +The maximum resident set size (KB) = 504284 Test 142 hafs_regional_storm_following_1nest_atm_ocn_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_storm_following_1nest_atm_ocn_wav_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_storm_following_1nest_atm_ocn_wav_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_storm_following_1nest_atm_ocn_wav_intel Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4906,14 +4906,14 @@ Checking test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel results Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 544.255749 -The maximum resident set size (KB) = 543188 +The total amount of wall time = 530.220412 +The maximum resident set size (KB) = 535312 Test 143 hafs_regional_storm_following_1nest_atm_ocn_wav_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_docn_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_docn_intel Checking test 144 hafs_regional_docn_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4921,14 +4921,14 @@ Checking test 144 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 -The total amount of wall time = 490.360003 -The maximum resident set size (KB) = 650708 +The total amount of wall time = 396.254428 +The maximum resident set size (KB) = 646896 Test 144 hafs_regional_docn_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_docn_oisst_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_docn_oisst_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_docn_oisst_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_docn_oisst_intel Checking test 145 hafs_regional_docn_oisst_intel results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4936,27 +4936,27 @@ Checking test 145 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 -The total amount of wall time = 474.739132 -The maximum resident set size (KB) = 630676 +The total amount of wall time = 405.831619 +The maximum resident set size (KB) = 633824 Test 145 hafs_regional_docn_oisst_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/hafs_regional_datm_cdeps_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/hafs_regional_datm_cdeps_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/hafs_regional_datm_cdeps_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/hafs_regional_datm_cdeps_intel Checking test 146 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 -The total amount of wall time = 953.837931 -The maximum resident set size (KB) = 817200 +The total amount of wall time = 951.114277 +The maximum resident set size (KB) = 884600 Test 146 hafs_regional_datm_cdeps_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/control_p8_atmlnd_sbs_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/control_p8_atmlnd_sbs_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/control_p8_atmlnd_sbs_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/control_p8_atmlnd_sbs_intel Checking test 147 control_p8_atmlnd_sbs_intel results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -5041,14 +5041,14 @@ Checking test 147 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 -The total amount of wall time = 269.140341 -The maximum resident set size (KB) = 1559752 +The total amount of wall time = 227.730209 +The maximum resident set size (KB) = 1561836 Test 147 control_p8_atmlnd_sbs_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/atmaero_control_p8_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/atmaero_control_p8_intel Checking test 148 atmaero_control_p8_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5092,14 +5092,14 @@ Checking test 148 atmaero_control_p8_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 271.864599 -The maximum resident set size (KB) = 2837312 +The total amount of wall time = 253.712907 +The maximum resident set size (KB) = 2845064 Test 148 atmaero_control_p8_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/atmaero_control_p8_rad_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/atmaero_control_p8_rad_intel Checking test 149 atmaero_control_p8_rad_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5143,14 +5143,14 @@ Checking test 149 atmaero_control_p8_rad_intel results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -The total amount of wall time = 308.080043 -The maximum resident set size (KB) = 2897636 +The total amount of wall time = 284.919660 +The maximum resident set size (KB) = 2907336 Test 149 atmaero_control_p8_rad_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/atmaero_control_p8_rad_micro_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/atmaero_control_p8_rad_micro_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/atmaero_control_p8_rad_micro_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/atmaero_control_p8_rad_micro_intel Checking test 150 atmaero_control_p8_rad_micro_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -5194,14 +5194,14 @@ Checking test 150 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 -The total amount of wall time = 317.062093 -The maximum resident set size (KB) = 2913608 +The total amount of wall time = 299.734279 +The maximum resident set size (KB) = 2919956 Test 150 atmaero_control_p8_rad_micro_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_atmaq_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_atmaq_intel Checking test 151 regional_atmaq_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5217,14 +5217,14 @@ Checking test 151 regional_atmaq_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 783.606233 -The maximum resident set size (KB) = 4999132 +The total amount of wall time = 726.535370 +The maximum resident set size (KB) = 5000300 Test 151 regional_atmaq_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_debug_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_atmaq_debug_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_debug_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_atmaq_debug_intel Checking test 152 regional_atmaq_debug_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -5238,14 +5238,14 @@ Checking test 152 regional_atmaq_debug_intel results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1430.520359 -The maximum resident set size (KB) = 4443900 +The total amount of wall time = 1336.809320 +The maximum resident set size (KB) = 4440512 Test 152 regional_atmaq_debug_intel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20231221/regional_atmaq_faster_intel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_236919/regional_atmaq_faster_intel +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240111/regional_atmaq_faster_intel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_66325/regional_atmaq_faster_intel Checking test 153 regional_atmaq_faster_intel results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -5261,12 +5261,12 @@ Checking test 153 regional_atmaq_faster_intel results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 979.872692 -The maximum resident set size (KB) = 5019516 +The total amount of wall time = 945.069702 +The maximum resident set size (KB) = 5001624 Test 153 regional_atmaq_faster_intel PASS REGRESSION TEST WAS SUCCESSFUL -Fri Dec 22 15:20:40 UTC 2023 -Elapsed time: 01h:30m:03s. Have a nice day! +Tue Jan 16 04:56:06 UTC 2024 +Elapsed time: 01h:17m:45s. Have a nice day! 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 25311f89bd..a6cd6a6003 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -43,11 +43,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 | @@ -144,7 +144,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 | @@ -307,8 +307,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 | @@ -400,21 +400,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 5e15abc6aa..22c9dd3960 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -304,29 +304,6 @@ elif [[ $MACHINE_ID = acorn ]]; then PTMP=/lfs/h2/emc/ptmp SCHEDULER=pbs -elif [[ $MACHINE_ID = gaea ]]; then - - module use /lustre/f2/dev/role.epic/contrib/rocoto/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 - elif [[ $MACHINE_ID = gaea-c5 ]]; then module use /lustre/f2/dev/role.epic/contrib/C5/rocoto/modulefiles @@ -680,10 +657,6 @@ if [[ $ROCOTO == true ]]; then QUEUE=main COMPILE_QUEUE=main ROCOTO_SCHEDULER=pbspro - elif [[ $MACHINE_ID = gaea ]]; then - QUEUE=normal - COMPILE_QUEUE=normal - ROCOTO_SCHEDULER=slurm elif [[ $MACHINE_ID = gaea-c5 ]]; then QUEUE=normal COMPILE_QUEUE=normal 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