diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 94acf25b86..2aa6bfbb62 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 94acf25b8692e38b3c8314125278cdc2700fb869 +Subproject commit 2aa6bfbb62ebeecd7da964b8074f6c3c41c7d1eb diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 7a9379d210..2d276f71cb 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -44,6 +44,7 @@ list(APPEND cdeps_datm_files CDEPS/datm/datm_datamode_era5_mod.F90 CDEPS/datm/datm_datamode_gefs_mod.F90 CDEPS/datm/datm_datamode_gfs_mod.F90 + CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 ) @@ -62,6 +63,8 @@ list(APPEND cdeps_docn_files CDEPS/docn/docn_datamode_copyall_mod.F90 CDEPS/docn/docn_datamode_iaf_mod.F90 CDEPS/docn/docn_datamode_som_mod.F90 + CDEPS/docn/docn_datamode_cplhist_mod.F90 + CDEPS/docn/docn_import_data_mod.F90 CDEPS/docn/ocn_comp_nuopc.F90 ) diff --git a/CMakeLists.txt b/CMakeLists.txt index eac52d6424..8e9944edc8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,6 +70,7 @@ set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") +set(PDLIB OFF CACHE BOOL "Enable Domain Decomposition in WW3 via PDLIB") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -206,7 +207,11 @@ if(WW3) set(UFS_CAP "MULTI_ESMF" CACHE STRING "Build with MULTI_ESMF cap") list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) else() - set(SWITCH "meshcap" CACHE STRING "NUOPC mesh cap") + if(PDLIB) + set(SWITCH "meshcap_pdlib" CACHE STRING "NUOPC mesh cap") + else() + set(SWITCH "meshcap" CACHE STRING "NUOPC mesh cap") + endif() set(UFS_CAP "NUOPC_MESH" CACHE STRING "Build with NUOPC_MESH cap") list(APPEND _ufs_defs_private FRONT_WW3=wav_comp_nuopc) endif() diff --git a/FV3 b/FV3 index 160b422dc1..7a6751d1d4 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 160b422dc1d294623cc8ebfabfbe7d28d7c65c62 +Subproject commit 7a6751d1d438c21e47043e6c34b77d585ecbaef7 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 520a4d1b09..fdbfa25236 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 520a4d1b09b944b2e77eea9d13433cd488edbd16 +Subproject commit fdbfa2523650b81a0771f3fb1791ea3e3dce66db diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 9448378f8c..04adba4c30 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -12,7 +12,6 @@ list(APPEND mom6_src_files MOM6/src/ALE/coord_hycom.F90 MOM6/src/ALE/coord_rho.F90 MOM6/src/ALE/coord_sigma.F90 - MOM6/src/ALE/coord_slight.F90 MOM6/src/ALE/coord_zlike.F90 MOM6/src/ALE/MOM_hybgen_regrid.F90 MOM6/src/ALE/MOM_hybgen_remap.F90 @@ -22,6 +21,7 @@ list(APPEND mom6_src_files MOM6/src/ALE/regrid_edge_values.F90 MOM6/src/ALE/regrid_interp.F90 MOM6/src/ALE/regrid_solvers.F90 + MOM6/src/ALE/remapping_attic.F90 MOM6/src/core/MOM.F90 MOM6/src/core/MOM_CoriolisAdv.F90 @@ -109,7 +109,6 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_data_override.F90 MOM6/src/framework/MOM_diag_mediator.F90 MOM6/src/framework/MOM_diag_remap.F90 - MOM6/src/framework/MOM_diag_vkernels.F90 MOM6/src/framework/MOM_document.F90 MOM6/src/framework/MOM_domains.F90 MOM6/src/framework/MOM_dyn_horgrid.F90 @@ -122,6 +121,8 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_interpolate.F90 MOM6/src/framework/MOM_intrinsic_functions.F90 MOM6/src/framework/MOM_io.F90 + MOM6/src/framework/MOM_io_file.F90 + MOM6/src/framework/MOM_netcdf.F90 MOM6/src/framework/posix.F90 MOM6/src/framework/MOM_random.F90 MOM6/src/framework/MOM_restart.F90 diff --git a/WW3 b/WW3 index 7c932242fd..c4b116886b 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 7c932242fd120b189cb17f48799e3cd00260621c +Subproject commit c4b116886b5ef9af5fb4942d7161074df3402732 diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 9c7258463b..7be32f526d 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,2 +1,3 @@ sphinxcontrib-bibtex sphinx_rtd_theme +docutils==0.16 \ No newline at end of file diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 4322eb0529..fd3502f9a0 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -8,62 +8,159 @@ Building and Running the UFS Weather Model Supported Platforms & Compilers =================================== Before running the Weather Model (:term:`WM`), users should determine which of the -`levels of support `__ +:ref:`levels of support ` is applicable to their system. Generally, Level 1 & 2 systems are restricted to those with access through NOAA and its affiliates. These systems are named (e.g., Hera, Orion, Cheyenne). Level 3 & 4 systems include certain personal computers or non-NOAA-affiliated HPC systems. -The prerequisite software libraries for building the WM already exist on Level 1/preconfigured -systems, so users may skip directly :ref:`downloading the code `. -On other systems, users will need to build the prerequisite libraries using :term:`HPC-Stack`. +The prerequisite software libraries for building the WM already exist in a centralized location on Level 1/preconfigured +systems, so users may skip directly to :ref:`getting the data ` and downloading the code. +On other systems, users will need to build the prerequisite libraries using :term:`HPC-Stack` or :term:`spack-stack`. -====================== +======================= Prerequisite Libraries -====================== +======================= -The UFS Weather Model (WM) requires a number of libraries for it to compile. +The UFS WM requires a number of libraries. The WM uses two categories of libraries, which are available as a bundle via -:term:`HPC-Stack`: +:term:`HPC-Stack` or :term:`spack-stack`: #. :term:`NCEP` libraries (:term:`NCEPLIBS`): These are libraries developed for use with NOAA weather models. Most have an NCEPLIBS prefix in the repository (e.g., NCEPLIBS-bacio). Select tools from the UFS Utilities repository (:term:`UFS_UTILS`) are also included in this category. - A list of the bundled libraries tested with this WM release is available in the top-level ``README`` of the - `NCEPLIBS repository `__ (**be sure to look at - the tag in that repository that matches the tag on the most recent WM release**). - #. Third-party libraries (:term:`NCEPLIBS-external`): These are libraries that were developed external to + #. Third-party libraries (:term:`NCEPLIBS-external`): These are libraries that were developed externally to the UFS Weather Model. They are general software packages that are also used by other community models. Building these libraries is optional if users can point to existing builds of these libraries on their system - instead. A list of the external libraries tested with this WM release is in the top-level ``README`` - of the `NCEPLIBS-external `__ repository. Again, be - sure to look at the tag in that repository that matches the tag on this WM release. + instead. .. note:: - Documentation is available for installing `HPC-Stack `__. - One of these software stacks (or the libraries they contain) must be installed before running the Weather Model. + Currently, HPC-Stack is the software stack validated by the UFS WM for running :term:`regression tests `. + However, UFS applications are shifting to spack-stack, which is a Spack-based + method for installing UFS prerequisite software libraries. The spack-stack is currently + used on NOAA Cloud platforms and in containers, while HPC-Stack is still used on NOAA + Research & Development HPC Systems (RDHPCS). -.. COMMENT: "and `spack-stack `__, respectively" +---------------- +Common Modules +---------------- -For users who *do* need to build the prerequisite libraries, it is a good idea to check the platform- and compiler-specific -``README`` files in the ``doc`` directory of the `NCEPLIBS-external repository `_ -first to see if their system or one similar to it is included. These files have detailed -instructions for building NCEPLIBS-external, NCEPLIBS, and the UFS Weather Model. They may be all the -documentation you need. Be sure to use the tag that corresponds to this version of the WM, and define a -WORK directory path before you get started. +As of May 19, 2023, the UFS WM Regression Tests (:term:`RTs `) on Level 1 systems use the following common modules: -.. - COMMENT: What is meant by a WORK directory path? +.. code-block:: console -If your platform is not included in these platform- and compiler-specific ``README`` files, there is a more -generic set of instructions in the ``README`` file at the top level of the `NCEPLIBS-external repository -`__ and at the top level of the `NCEPLIBS repository -`__. It may still be a good idea to look at some of the platform- -and compiler-specific ``README`` files as a guide. Again, be sure to use the tag that corresponds to this version of the WM. + bacio/2.4.1 + crtm/2.4.0 + esmf/8.3.0b09 + fms/2022.04 + g2/3.4.5 + g2tmpl/1.10.2 + gftl-shared/v1.5.0 + hdf5/1.10.6 + ip/3.3.3 + jasper/2.0.25 + libpng/1.6.37 + mapl/2.22.0-esmf-8.3.0b09 + netcdf/4.7.4 + pio/2.5.7 + sp/2.3.3 + w3emc/2.9.2 + zlib/1.2.11 + +The most updated list of common modules can be viewed in ``ufs_common.lua`` +`here `__. -The top-level ``README`` in the NCEPLIBS-external repository includes a troubleshooting section that may be helpful. +.. attention:: + Documentation is available for installing `HPC-Stack `__ + and `spack-stack `__, respectively. + One of these software stacks (or the libraries they contain) must be installed before running the UFS Weather Model. + +.. _GetData: + +============ +Get Data +============ + +The WM RTs require input files to run. +These include static datasets, files that depend on grid resolution and +initial/boundary conditions, and model configuration files. On Level 1 and 2 systems, +the data required to run the WM RTs are already available in the following locations: + +.. _DataLocations: +.. table:: Data Locations for Level 1 & 2 Systems + + +--------------+-----------------------------------------------------+ + | Machine | File location | + +==============+=====================================================+ + | Cheyenne | /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT | + +--------------+-----------------------------------------------------+ + | Gaea | /lustre/f2/pdata/ncep_shared/emc.nemspara/RT | + +--------------+-----------------------------------------------------+ + | Hera | /scratch1/NCEPDEV/nems/emc.nemspara/RT | + +--------------+-----------------------------------------------------+ + | Jet | /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT | + +--------------+-----------------------------------------------------+ + | Orion | /work/noaa/nems/emc.nemspara/RT | + +--------------+-----------------------------------------------------+ + | S4 | /data/prod/emc.nemspara/RT | + +--------------+-----------------------------------------------------+ + | WCOSS2 | /lfs/h2/emc/nems/noscrub/emc.nems/RT | + +--------------+-----------------------------------------------------+ + +For Level 3-4 systems, the data must be added to the user's system. +Publicly available RT data is available in the `UFS WM Data Bucket `__. +Data for running RTs off of the develop branch is available for the most recent 60 days. +To view the data, users can visit https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html. +To download data, users must select the data they want from the bucket and either download it in their browser or via a ``wget`` command. +For example, to get the data for ``control_p8`` (specifically the May 17, 2023 ``develop`` branch version of the WM), run: + +.. code-block:: console -You can also get expert help through a `user support forum `__ -set up specifically for issues related to build dependencies. + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/atmf000.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/atmf021.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/atmf024.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSFLX.GrbF00 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSFLX.GrbF21 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSFLX.GrbF24 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSPRS.GrbF00 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSPRS.GrbF21 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/GFSPRS.GrbF24 + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/sfcf000.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/sfcf021.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/sfcf024.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.coupler.res + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile1.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile2.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile3.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile4.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile5.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_core.res.tile6.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile1.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile2.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile3.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile4.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile5.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.fv_tracer.res.tile6.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile1.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile2.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile3.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile4.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile5.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.phy_data.tile6.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile1.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile2.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile3.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile4.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile5.nc + wget https://noaa-ufs-regtests-pds.s3.amazonaws.com/develop-20230517/INTEL/control_p8/RESTART/20210323.060000.sfc_data.tile6.nc + +Detailed information on input files can be found in :numref:`Chapter %s `. .. _DownloadingWMCode: @@ -75,11 +172,10 @@ To clone the develop branch of the ``ufs-weather-model`` repository and update i .. code-block:: console - git clone https://github.com/ufs-community/ufs-weather-model.git ufs-weather-model + git clone --recursive https://github.com/ufs-community/ufs-weather-model.git ufs-weather-model cd ufs-weather-model - git submodule update --init --recursive -Compiling the model will take place within the ``ufs-weather-model`` directory you just created. +Compiling the model will take place within the ``ufs-weather-model`` directory created by this command. ========================== Building the Weather Model @@ -89,9 +185,16 @@ Building the Weather Model Loading the Required Modules ---------------------------- -Modulefiles for `pre-configured platforms `_ -are located in ``modulefiles/ufs_.``. For example, to load the modules from the ``ufs-weather-model`` -directory on Hera: +The process for loading modules is fairly straightforward on NOAA :ref:`Level 1 Systems `. +Users may need to make adjustments when running on other systems. + + +On NOAA Level 1 & 2 Systems +----------------------------- + +Modulefiles for :ref:`preconfigured platforms ` are located in +``modulefiles/ufs_.``. For example, to load the modules from the +``ufs-weather-model`` directory on Hera: .. code-block:: console @@ -117,6 +220,9 @@ Note that loading this module file will also set the CMake environment variables | CMAKE_Platform | String containing platform and compiler name | hera.intel | +-------------------------+----------------------------------------------+----------------------+ +On Other Systems +------------------- + If you are not running on one of the pre-configured platforms, you will need to set the environment variables manually. For example, in a bash shell, a command in the following form will set the C compiler environment variable: @@ -124,22 +230,25 @@ manually. For example, in a bash shell, a command in the following form will set export CMAKE_C_COMPILER= +.. COMMENT: Update after Zach's PR is merged. ------------------------------------------------------------------------ Setting the ``CMAKE_FLAGS`` and ``CCPP_SUITES`` Environment Variables ------------------------------------------------------------------------ -The UFS Weather Model can be built in one of twelve configurations (cf. :numref:`Table %s `). -The ``CMAKE_FLAGS`` environment variable specifies which configuration to build. -Additionally, users must select the :term:`CCPP` suite(s) by setting the ``CCPP_SUITES`` environment variable at -build time in order to have one or more CCPP physics suites available at runtime. Multiple suites can be set. -Additional environment variables, such as ``-D32BIT=ON``, can be set if the user chooses. These options are documented -in :numref:`Section %s `. +The UFS Weather Model can be built in one of several configurations (see :numref:`Table %s ` for common options). +The ``CMAKE_FLAGS`` environment variable specifies which configuration to build using the ``-DAPP`` and ``-DCCPP_SUITES`` variables. +Users set which components to build using ``-DAPP``. Users select the :term:`CCPP` suite(s) by setting the +``CCPP_SUITES`` environment variable at build time in order to have one or more CCPP physics suites available at runtime. +Multiple suites can be set. Additional variables, such as ``-D32BIT=ON``, +can be set if the user chooses. These options are documented in :numref:`Section %s `. The following examples assume a bash shell. ATM Configurations --------------------- +.. _atm: + **Standalone ATM** For the ``ufs-weather-model ATM`` configuration (standalone :term:`ATM`): @@ -148,6 +257,8 @@ For the ``ufs-weather-model ATM`` configuration (standalone :term:`ATM`): export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16" +.. _atmw: + **ATMW** For the ``ufs-weather-model ATMW`` configuration (standalone ATM coupled to :term:`WW3`): @@ -156,6 +267,8 @@ For the ``ufs-weather-model ATMW`` configuration (standalone ATM coupled to :ter export CMAKE_FLAGS="-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16" +.. _atmaero: + **ATMAERO** For the ``ufs-weather-model ATMAERO`` configuration (standalone ATM coupled to :term:`GOCART`): @@ -164,6 +277,8 @@ For the ``ufs-weather-model ATMAERO`` configuration (standalone ATM coupled to : export CMAKE_FLAGS="-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8" +.. _atmaq: + **ATMAQ** For the ``ufs-weather-model ATMAQ`` configuration (standalone ATM coupled to :term:`CMAQ`): @@ -172,9 +287,21 @@ For the ``ufs-weather-model ATMAQ`` configuration (standalone ATM coupled to :te export CMAKE_FLAGS="-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2" +.. _atml: + +**ATML** + +For the ``ufs-weather-model ATML`` configuration (standalone ATM coupled to :term:`LND`): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v17_p8" + S2S Configurations ---------------------- +.. _s2s: + **S2S** For the ``ufs-weather-model S2S`` configuration (coupled atm/ice/ocean): @@ -196,6 +323,8 @@ For example: export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON" +.. _s2sa: + **S2SA** For the ``ufs-weather-model S2SA`` configuration (atm/ice/ocean/aerosols): @@ -207,6 +336,8 @@ For the ``ufs-weather-model S2SA`` configuration (atm/ice/ocean/aerosols): .. CHECK: DAPP flag and physics suites +.. _s2sw: + **S2SW** For the ``ufs-weather-model S2SW`` configuration (atm/ice/ocean/wave): @@ -215,6 +346,8 @@ For the ``ufs-weather-model S2SW`` configuration (atm/ice/ocean/wave): export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" +.. _s2swa: + **S2SWA** For the ``ufs-weather-model S2SWA`` configuration (atm/ice/ocean/wave/aerosols): @@ -223,6 +356,8 @@ For the ``ufs-weather-model S2SWA`` configuration (atm/ice/ocean/wave/aerosols): export CMAKE_FLAGS="-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp" +.. _ng-godas: + NG-GODAS Configuration ------------------------ @@ -237,6 +372,8 @@ For the ``ufs-weather-model NG-GODAS`` configuration (atm/ocean/ice/data assimil HAFS Configurations ---------------------- +.. _hafs: + **HAFS** For the ``ufs-weather-model HAFS`` configuration (atm/ocean) in 32 bit: @@ -245,6 +382,8 @@ For the ``ufs-weather-model HAFS`` configuration (atm/ocean) in 32 bit: export CMAKE_FLAGS="-DAPP=HAFS -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf" +.. _hafsw: + **HAFSW** For the ``ufs-weather-model HAFSW`` configuration (atm/ocean/wave) in 32-bit with moving nest: @@ -253,6 +392,8 @@ For the ``ufs-weather-model HAFSW`` configuration (atm/ocean/wave) in 32-bit wit export CMAKE_FLAGS="-DAPP=HAFSW -D32BIT=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf" +.. _hafs-all: + **HAFS-ALL** For the ``ufs-weather-model HAFS-ALL`` configuration (data/atm/ocean/wave) in 32 bit: @@ -261,11 +402,26 @@ For the ``ufs-weather-model HAFS-ALL`` configuration (data/atm/ocean/wave) in 32 export CMAKE_FLAGS="-DAPP=HAFS-ALL -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +LND Configuration +---------------------- + +.. _lnd: + +**LND** + +For the ``ufs-weather-model LND`` configuration (datm/land): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=LND" ------------------ Building the Model ------------------ -The UFS Weather Model uses the CMake build system. There is a build script called ``build.sh`` in the + +.. COMMENT: Is the "Building the Model" section necessary? Can users just run the RT without? + +The UFS Weather Model uses the CMake build system. There is a build script called ``build.sh`` in the top-level directory of the WM repository that configures the build environment and runs the ``make`` command. This script also checks that all necessary environment variables have been set. @@ -281,12 +437,11 @@ The WM can be built by running the following command from the ``ufs-weather-mode ./build.sh -Once ``build.sh`` is finished, you should see the executable, named ``ufs_model``, in the ``ufs-weather-model/build/`` directory. -If it is desired to build in a different directory, specify the ``BUILD_DIR`` environment variable: e.g. ``export BUILD_DIR=test_cpld`` +Once ``build.sh`` is finished, users should see the executable, named ``ufs_model``, in the ``ufs-weather-model/build/`` directory. +If users prefer to build in a different directory, specify the ``BUILD_DIR`` environment variable. For example: ``export BUILD_DIR=test_cpld`` will build in the ``ufs-weather-model/test_cpld`` directory instead. -Expert help is available through a `user support forum `__ -set up specifically for issues related to the Weather Model. +Expert help is available through `GitHub Discussions `__. Users may post questions there for help with difficulties related to the UFS WM. .. _run-wm: @@ -304,33 +459,24 @@ Running the Model Using the Regression Test Script -------------------------------- -Users can run a number of preconfigured regression test cases using the regression test script -``rt.sh`` in the ``tests`` directory. This script is the top-level script -that calls lower-level scripts to build specified WM configurations, set up environments, and run tests. - -On `Tier-1 platforms `__, users can run -regression tests by (1) editing the ``rt.conf`` file and (2) executing: - -.. code-block:: console - - ./rt.sh -l rt.conf - -Users *may* need to add additional command line arguments or change information in the ``rt.sh`` file as well. -This information is provided in :numref:`Section %s ` below. +Users can run a number of preconfigured regression test cases from the ``rt.conf`` file +using the regression test script ``rt.sh`` in the ``tests`` directory. +``rt.sh`` is the top-level script that calls lower-level scripts to build specified +WM configurations, set up environments, and run tests. +Users must edit the ``rt.conf`` file to indicate which tests/configurations to run. .. _rt.conf: The ``rt.conf`` File ------------------------ -Each line in the PSV (Pipe-separated values) file ``rt.conf`` contains four columns of information. +Each line in the PSV (Pipe-separated values) file, ``rt.conf``, contains four columns of information. The first column specifies whether to build a test (``COMPILE``) or run a test (``RUN``). The second column specifies either configuration information for building a test or the name of a test to run. -Thus, the second column in a ``COMPILE`` line will list the application to build (e.g., ``APP=S2S``), -the CCPP suite to use (e.g., ``SUITES=FV3_GFS_2017_coupled``), and additional build options -(e.g., ``DEBUG=Y``) as needed. On a ``RUN`` line, the second column will contain a test name +Thus, the second column in a ``COMPILE`` line will list the application to build (e.g., ``-DAPP=S2S``), +the CCPP suite to use (e.g., ``-DCCPP_SUITES=FV3_GFS_2017_coupled``), and additional build options +(e.g., ``-DDEBUG=ON``) as needed. On a ``RUN`` line, the second column will contain a test name (e.g., ``control_p8``). The test name should match the name of one of the test files in the ``tests/tests`` directory or, if the user is adding a new test, the name of the new test file. The third column of ``rt.conf`` relates to the platform; @@ -342,10 +488,8 @@ and ``fv3`` means that the test will be included during baseline creation. The order of lines in ``rt.conf`` matters since ``rt.sh`` processes them sequentially; a ``RUN`` line should be preceeded by a ``COMPILE`` line that builds the model used in the test. The following -``rt.conf`` file excerpt builds the standalone ATM model in 32-bit mode and then runs the -``control`` test: - -.. COMMENT: Is the control test just the test with which other tests are compared? +``rt.conf`` file excerpt builds the standalone ATM model with GFS_v16 physics +in 32-bit mode and then runs the ``control`` test: .. code-block:: console @@ -354,7 +498,36 @@ by a ``COMPILE`` line that builds the model used in the test. The following The ``rt.conf`` file includes a large number of tests. If the user wants to run only specific tests, s/he can either (1) comment out the tests to be skipped (using the ``#`` prefix) -or (2) create a new file (e.g., ``my_rt.conf``) and execute ``./rt.sh -l my_rt.conf``. +or (2) create a new file (e.g., ``my_rt.conf``), add the tests, and execute ``./rt.sh -l my_rt.conf``. + +On NOAA RDHPCS +------------------ + +On `Tier-1 platforms `__, users can run +regression tests by editing the ``rt.conf`` file and executing: + +.. code-block:: console + + ./rt.sh -l rt.conf + +Users may need to add additional command line arguments or change information in the ``rt.sh`` file as well. +This information is provided in :numref:`Section %s ` below. + +On Other Systems +------------------ + +Users on non-NOAA systems will need to make adjustments to several files in the +``tests`` directory before running ``rt.sh``, including: + + * ``rt.sh`` + * ``run_test.sh`` + * ``detect_machine.sh`` + * ``default_vars.sh`` + * ``fv3_conf/fv3_slurm.IN_*`` + * ``fv3_conf/compile_slurm.IN_*`` + * ``compile.sh`` + * ``module-setup.sh`` .. _rt.sh: @@ -372,18 +545,18 @@ To display detailed information on how to use ``rt.sh``, users can simply run `` .. code-block:: console - ./rt.sh -c | -f | -l | -m | -k | -r | -e | -h - -c: create baseline - -f: use rt.conf - -l: use instead of rt.conf - -m: compare against new baseline results - -k: keep run directory - -r: use Rocoto workflow manager - -e: use ecFlow workflow manager - -h: display help (same as ./rt.sh) + ./rt.sh -c | -e | -h | -k | -w | -d | -l | -m | -n | -r + -c create new baseline results + -e use ecFlow workflow manager + -h display this help + -k keep run directory after rt.sh is completed + -l runs test specified in + -m compare against new baseline results + -n run single test + -r use Rocoto workflow manager + -w for weekly_test, skip comparing baseline results + -d delete run direcotries that are not used by other tests -.. COMMENT: Remove -f option? The wiki says: "Update 01/06/2021: On January 6, 2021, the argument -f was removed. - Adding it will force rt.sh to exit immediately. The default for rt.sh is to run the full regression tests in rt.conf unless -l xyz.conf is provided." .. COMMENT: An -n option is discussed below. Why is this not printed when running ./rt.sh? When running a large number (10's or 100's) of tests, the ``-e`` or ``-r`` options can significantly @@ -391,14 +564,30 @@ decrease testing time by using a workflow manager (ecFlow or Rocoto, respectivel according to dependencies and run them concurrently. The ``-n`` option can be used to run a single test; for example, ``./rt.sh -n control`` will build the ATM model and run the ``control`` test. -The ``-c`` option is used to create a baseline. New baslines are needed when code changes lead +The ``-c`` option is used to create a baseline. New baselines are needed when code changes lead to result changes and therefore deviate from existing baselines on a bit-for-bit basis. +To run ``rt.sh`` using a custom configuration file and the Rocoto workflow manager, +create the configuration file (e.g. ``my_rt.conf``) based on the desired tests in +``rt.conf``, and run: + +.. code-block:: console + + ./rt.sh -r -l my_rt.conf + +adding additional arguments as desired. + +To run a single test, users can try the following command instead of creating a ``my_rt.conf`` file: + +.. code-block:: console + + ./rt.sh -r -k -n control_p8 + Troubleshooting ^^^^^^^^^^^^^^^^^^ Users may need to adjust certain information in the ``rt.sh`` file, such as -the ``'Machine'`` and ``'Account'`` variables (``$ACCNR`` and ``$MACHINE_ID``), for the tests to run +the *Machine* and *Account* variables (``$MACHINE_ID`` and ``$ACCNR``), for the tests to run correctly. If there is a problem with these or other variables (e.g., file paths), the output should indicate where: .. code-block:: console @@ -433,7 +622,7 @@ The run directory path, which corresponds to the value of ``RUNDIR`` in the ``ru is particularly useful. ``$RUNDIR`` is a self-contained (i.e., sandboxed) directory with the executable file, initial conditions, model configuration files, environment setup scripts and a batch job submission script. The user can run the test -by ``cd``-ing into ``$RUNDIR`` and invoking the command: +by navigating into ``$RUNDIR`` and invoking the command: .. code-block:: console @@ -445,7 +634,7 @@ specifying the ``-k`` option retains the ``$RUNDIR``, e.g. ``./rt.sh -l rt.conf Inside the ``$RUNDIR`` directory are a number of model configuration files (``input.nml``, ``model_configure``, ``nems.configure``) and other application -dependent files (e.g., ``ice_in`` for the Subseasonal-to-Seasonal application). +dependent files (e.g., ``ice_in`` for the Subseasonal-to-Seasonal Application). These model configuration files are generated by ``rt.sh`` from the template files in the ``tests/parm`` directory. Specific values used to fill in the template files are test-dependent and @@ -508,11 +697,11 @@ Using the Operational Requirement Test Script The operational requirement test script ``opnReqTest`` in the ``tests`` directory can be used to run tests in place of ``rt.sh``. Given the name of a test, ``opnReqTest`` carries out a suite of test cases. Each test case addresses an aspect of the requirements that new operational implementations -should satisfy. These requirements are shown in :numref:`Table %s `. +must satisfy. These requirements are shown in :numref:`Table %s `. For the following discussions on opnReqTest, the user should note the distinction between ``'test name'`` and ``'test case'``. Examples of test names are ``control``, ``cpld_control`` and ``regional_control`` which are all found in the ``tests/tests`` directory, whereas -test case refers to any one of ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. +test case refers to any one of the operational requirements: ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. .. _OperationalRequirement: diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 827a1d3fe3..7b304e2808 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -1,14 +1,52 @@ .. _CodeOverview: ************************* -Code Overview +Technical Overview ************************* +.. _SupportedPlatforms: + +===================================================================== +Supported Platforms and Compilers for Running the UFS Weather Model +===================================================================== + +Four levels of support have been defined for :term:`UFS` applications, and the UFS Weather Model (:term:`WM`) operates under this paradigm: + +* **Level 1** *(Preconfigured)*: Prerequisite software libraries are pre-built and available in a central location; code builds and runs; full testing of model. +* **Level 2** *(Configurable)*: Prerequisite libraries are not available in a centralized location but are expected to install successfully; code builds and runs; full testing of model. +* **Level 3** *(Limited-test platforms)*: Libraries and code build on these systems, but there is limited testing with running the model. +* **Level 4** *(Build-only platforms)*: Libraries and code build, but running the model is not tested. + +Level 1 Systems +================== +Preconfigured (Level 1) systems for the UFS WM already have the required external libraries available in a central location via :term:`HPC-Stack` or :term:`spack-stack`. The WM is expected to build and run out-of-the-box on these systems, and users can download the WM code without first installing prerequisite software. Additionally, regression test data is already available on these systems. In general, users must have access to these Level 1 systems in order to use them. + +Currently, Level 1 (or Tier-1) platforms for regression testing are: + + * WCOSS2 (Intel) + * Cheyenne (Intel/GNU compilers) + * Gaea (Intel) + * Hera (Intel/GNU compilers) + * Jet (Intel) + * Orion (Intel) + * AWS Docker container (Intel) + +More information is available in the `UFS WM wiki `__. + +Level 2-4 Systems +=================== + +On non-Level 1 platforms, users must install the required libraries before building the UFS WM. Additionally, users must stage the required data in order to run regression tests. Once the prerequisite libraries are installed, and the data has been staged, the WM should build and run successfully. However, users may need to perform additional troubleshooting on Level 3 or 4 systems since little or no testing is conducted on these systems. + +Currently, Level 2 platforms for regression testing are: + + * S4 (Intel) + =================================================== UFS Weather Model Hierarchical Repository Structure =================================================== -The UFS Weather Model (:term:`WM`) repository supports the :term:`UFS` short- and medium-range weather applications (:term:`SRW` / :term:`MRW` Apps). The WM repository contains atmosphere, ocean, sea ice, and wave components, as well as some infrastructure components. Each of these subcomponents has its own repository. All the repositories are currently located in GitHub with public access to the broad community. :numref:`Table %s ` describes the list of repositories that comprises the UFS WM. +The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range weather applications (:term:`SRW` / :term:`MRW` Apps). The WM repository contains atmosphere, ocean, sea ice, land, and wave components, as well as some infrastructure components. Each of these subcomponents has its own repository. All the repositories are currently located in GitHub with public access to the broader community. :numref:`Table %s ` describes the list of repositories that comprise the UFS WM. .. _Repo_Structure: @@ -20,103 +58,107 @@ The UFS Weather Model (:term:`WM`) repository supports the :term:`UFS` short- an - Authoritative repository URL * - Umbrella repository for the UFS Weather Model - https://github.com/ufs-community/ufs-weather-model - * - Framework to connect the CCPP library to a host model + * - Framework to connect the :term:`CCPP` library to a host model - https://github.com/NCAR/ccpp-framework * - CCPP library of physical parameterizations - https://github.com/NCAR/ccpp-physics * - Umbrella repository for the physics and dynamics of the atmospheric model (FV3) - https://github.com/NOAA-EMC/fv3atm - * - FV3 dynamical core + * - :term:`FV3` dynamical core - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere * - Stochastic physics pattern generator - https://github.com/noaa-psd/stochastic_physics - * - Modular Ocean Model (MOM6) + * - Modular Ocean Model (:term:`MOM6`) - https://github.com/NOAA-EMC/MOM6 - * - HYbrid Coordinate Ocean Model (HYCOM) + * - HYbrid Coordinate Ocean Model (:term:`HYCOM`) - https://github.com/NOAA-EMC/HYCOM-src - * - Los Alamos sea ice model (CICE6) + * - Los Alamos sea ice model (:term:`CICE6`) - https://github.com/NOAA-EMC/CICE - * - NOAA/NCEP WAVEWATCH III Model (WW3) + * - NOAA/NCEP WAVEWATCH III Model (:term:`WW3`) - https://github.com/NOAA-EMC/WW3 - * - The Goddard Chemistry Aerosol Radiation and Transport (GOCART) + * - The Goddard Chemistry Aerosol Radiation and Transport (:term:`GOCART`) - https://github.com/GEOS-ESM/GOCART - * - NUOPC Community Mediator for Earth Prediction Systems (CMEPS) + * - NUOPC Community Mediator for Earth Prediction Systems (:term:`CMEPS`) - https://github.com/NOAA-EMC/CMEPS - * - Community Data Models for Earth Prediction Systems (CDEPS) + * - Community Data Models for Earth Prediction Systems (:term:`CDEPS`) - https://github.com/NOAA-EMC/CDEPS - * - Air Quality Model (AQM) + * - Air Quality Model (:term:`AQM`) - https://github.com/NOAA-EMC/AQM + * - Noah-MP Land Surface Model (Noah-MP) + - https://github.com/NOAA-EMC/noahmp -In the table, the left column contains a description of each repository, and the right column shows the component repositories which are pointing to (or will point to) the authoritative repositories. The UFS WM currently uses Git submodules to manage the sub-components. +In the table, the left-hand column contains a description of each repository, and the +right-hand column shows the GitHub location of the authoritative component repositories. +The UFS WM currently uses Git submodules to manage these subcomponents. =================== Directory Structure =================== -The umbrella repository for the UFS Weather Model is named ``ufs-weather-model``. Under this repository reside a number of submodules that are nested in specific directories under the parent repository's working directory. When the ``ufs-weather-model`` repository is cloned, the basic directory structure will be similar to the example below. Files and some directories have been removed for brevity. Directories in parentheses will appear only after a submodule update (``git submodule update --init --recursive``). +The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under this repository reside a number of submodules that are nested in specific directories under the parent repository's working directory. When the ``ufs-weather-model`` repository is cloned, the basic directory structure will be similar to the example below. Files and some directories have been removed for brevity. Directories in parentheses will appear only after a recursive clone or submodule update (``git submodule update --init --recursive``). .. code-block:: console - ufs-weather-model/ - ├── build.sh -------- script for building the WM - ├── cmake -------- cmake configuration files - ├── CMakeLists.txt - ├── CMakeModules - ├── doc -------- User Guide files - ├── driver - ├── FV3 -------- UFSAtm atmosphere model - │ ├── (atmos_cubed_sphere) -------- FV3 dynamical core - │ │ ├── (docs) - │ │ ├── (driver) - │ │ ├── (model) - │ │ └── (tools) - │ ├── (ccpp) -------- Common Community Physics Package - │ │ ├── (config) - │ │ ├── (driver) - │ │ ├── (framework) -------- CCPP framework - │ │ ├── (physics) -------- CCPP compliant physics schemes - │ │ └── (suites) -------- CCPP physics suite definition files (SDFs) - │ ├── (cpl) -------- Coupling field data structures - │ ├── (io) -------- UFSAtm write grid comp code - │ └── (stochastic_physics) -------- Wrapper for stochastic physics - │ - ├── stochastic_physics -------- stochastic physics pattern generator - ├── AQM - │ └── (src) - │ ├── (model) - │ └── (CMAQ) --------- EPA AQ Model - ├── CICE-interface - │ └── CICE --------- CICE6 sea ice model - │ ├── (icepack) --------- Sea ice column physics - │ └── (cicecore/drivers/nuopc/cmeps) --------- NUOPC CICE6 cap - ├── GOCART - │ └── (ESMF) --------- GOCART model - ├── HYCOM-interface - │ └── HYCOM --------- HYCOM ocean model - │ └── (NUOPC) --------- NUOPC HYCOM cap - ├── MOM6-interface - │ └── MOM6 - │ ├── (src) --------- MOM6 ocean model - │ └── (config_source/drivers/nuopc_cap) --------- NUOPC MOM6 cap - ├── WW3 - │ └── (model) --------- WW3 model - │ └── (esmf) --------- NUOPC WW3 cap - ├── CDEPS-interface - │ └── CDEPS - │ ├── (datm) --------- CDEPS DATM - │ └── (docn) --------- CDEPS DOCN - ├── CMEPS-interface - │ └── CMEPS - │ └── (cesm) --------- CMEPS CESM - ├── modulefiles -------- system module files for supported HPC systems - └── tests -------- regression test infrastructure - └── parm - └── tests - └── fv3_conf - -The physics subdirectory in the ``gfsphysics`` directory is not used or supported -as part of this release (all physics is available through the :term:`CCPP` using -the repository described in :numref:`Table %s `). - -.. COMMENT: Should we omit CMakeLists.txt, CMakeModules, driver (which I added) or add a description? -.. COMMENT: I don't see a "gfsphysics" directory... Can we remove it or be more specific about where it is? There are two CCPP repos in the table referenced above... Framework and Physics. \ No newline at end of file + ufs-weather-model + ├── AQM + │ └── (src) + │ ├── (model) + │ └── (CMAQ) -------- EPA Air Quality Model + ├── build.sh -------- script for building the WM + ├── CDEPS-interface + │ └── CDEPS + │ ├── (datm) -------- CDEPS DATM + │ └── (docn) -------- CDEPS DOCN + ├── CICE-interface + │ └── CICE -------- CICE6 sea ice model + │ ├── (icepack) -------- Sea ice column physics + │ └── (cicecore/drivers/nuopc/cmeps) -------- NUOPC CICE6 cap + ├── cmake -------- cmake configuration files + ├── CMakeLists.txt + ├── CMakeModules + ├── CMEPS-interface + │ └── CMEPS + │ └── (cesm) -------- CMEPS CESM + ├── doc -------- User Guide files + ├── driver + ├── FV3 -------- UFSAtm atmosphere model + │ ├── (atmos_cubed_sphere) -------- FV3 dynamical core + │ │ ├── (docs) + │ │ ├── (driver) + │ │ ├── (model) + │ │ └── (tools) + │ ├── (ccpp) -------- Common Community Physics Package + │ │ ├── (config) + │ │ ├── (driver) + │ │ ├── (framework) -------- CCPP framework + │ │ ├── (physics) -------- CCPP-compliant physics schemes + │ │ └── (suites) -------- CCPP physics suite definition files (SDFs) + │ ├── (cpl) -------- Coupling field data structures + │ ├── (io) -------- UFSAtm write grid comp code + │ └── (stochastic_physics) -------- Wrapper for stochastic physics + ├── GOCART + │ └── (ESMF) -------- GOCART model + ├── HYCOM-interface + │ └── HYCOM -------- HYCOM ocean model + │ └── (NUOPC) -------- NUOPC HYCOM cap + ├── LICENSE.md + ├── modulefiles -------- system module files for supported HPC systems + ├── MOM6-interface + │ └── MOM6 + │ ├── (src) -------- MOM6 ocean model + │ └── (config_source/drivers/nuopc_cap) -------- NUOPC MOM6 cap + ├── NOAHMP-interface + │ └── noahmp + │ ├── (cmake) -------- Noah-MP land model + │ ├── (drivers/nuopc) -------- NUOPC Noah-MP cap + │ ├── (parameters) + │ └── (src) + ├── README.md + ├── stochastic_physics -------- stochastic physics pattern generator + ├── tests -------- regression test infrastructure + │ └── parm + │ └── tests + │ └── fv3_conf + └── WW3 + └── (model) -------- WW3 model + └── (src) -------- NUOPC WW3 caps \ No newline at end of file diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst new file mode 100644 index 0000000000..a19df6d812 --- /dev/null +++ b/doc/UsersGuide/source/Configurations.rst @@ -0,0 +1,340 @@ +.. _Configurations: + +************************* +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. + +.. attention:: + + This chapter is a work in progress. There are a multitude of options for configuring the UFS WM, + and this chapter merely details a few supported configurations. It will be expanded over time + to include the full set of configurations supported for WM regression tests (RTs). + +.. _UFS-configurations-documented: + +.. list-table:: *Documented UFS Weather Model Configuration Categories* + :widths: 10 70 + :header-rows: 1 + + * - Configuration Category + - Description + * - :ref:`ATM ` + - Standalone Atmospheric Model (:term:`ATM`) + * - :ref:`ATML ` + - Coupled :term:`ATM` and :term:`LND` + * - :ref:`LND ` + - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS` + +This chapter details the supported build/run options for each supported configuration. +Click on the configuration category in :numref:`Table %s ` +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, +and links to information on other input files required to run the model. + +============ +Background +============ + +Each RT configuration file (located in the ``ufs-weather-model/tests/tests`` +`directory `__) +sets default variables by calling setup functions from ``ufs-weather-model/tests/default_vars.sh`` +(see defaults `here `__). +Then, the RT configuration file sets test-specific variables; these values will override +the defaults. For example, the ``control_c48`` test file sets a list of files that +it will use, calls the ``export_fv3`` function from ``default_vars.sh``, and then exports +test-specific variables. An excerpt is included below (``...`` indicates omitted lines): + +.. code-block:: console + + export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + ... + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + + export_fv3 + + export INPES=1 + export JNPES=1 + export WRTTASK_PER_GROUP=2 + export NPZ=127 + export NPZP=128 + export NPX=49 + export NPY=49 + export DT_ATMOS=1200 + ... + +``default_vars.sh`` contains eight functions that set defaults for different types of tests. :numref:`Table %s ` describes what each function does. + +.. _def-funcs: + +.. list-table:: *default_vars.sh functions* + :widths: 10 70 + :header-rows: 1 + + * - Function Name + - Description + * - export_fv3 + - Set variables to the FV3 default values (first common variables, then model-specific ones). Different machines may have different defaults for some variables. + * - export_cpl + - Set variables to the default values for *coupled* / S2S configurations. + * - export_35d_run + - Set variables to the default values for EMC's weekly coupled benchmark 35d tests (see `rt_35d.conf `__). + * - export_datm_cdeps + - Set variables to the default values for configurations that use the data atmosphere (:term:`DATM`) component. + * - export_hafs_datm_cdeps + - Set variables to the default values for HAFS configurations that use the data atmosphere (DATM) component. + * - export_hafs_docn_cdeps + - Set variables to the default values for HAFS configurations that use the data ocean (:term:`DOCN`) component. + * - export_hafs_regional + - Set variables to the default values for regional HAFS configurations. + * - export_hafs + - Set variables to the default values for HAFS configurations. + +Multiple ``default_vars.sh`` functions may be called in a given test. Values set in one +function will be overridden when the same values are set in a subsequent function. + +The most up-to-date list of ``develop`` branch data required for each test is available in +the `UFS WM RT Data Bucket `__. +Users should click on "Browse Bucket" and navigate to the most recent date (in ``develop-YYYY-MM-DD`` format). +Then, users should select *Intel* or *GNU* based on the compiler used in the test they +want to run and then select the test name to see the required data. + +==================================== +Atmospheric Model Configurations +==================================== + +The atmospheric model configurations all use the UFS WM atmospheric component +and may couple it with other models (e.g., a wave or aerosol model). + +.. _atm-documented: + +ATM - Standalone Atmospheric Model +===================================== + +The standalone atmospheric model (:term:`ATM`) is an :term:`FV3`-based prognostic +atmospheric model that can be used for short- and medium-range research and operational +forecasts. In standalone mode, ``ATM`` is not coupled to any other model. + +Current ATM regression tests cover a wide variety of functionality and involve several +physics tests. :numref:`Table %s ` contains a small selection of ATM-only RTs; +it will be expanded to cover the full range of ATM-only supported configurations in time: + +.. _atm-rts: + +.. list-table:: *ATM regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - `control_c48 `__ + - Compare global control C48L127 results with previous trunk version + - FV3_GFS_v16 + - 1200 + - 2021-03-22 06:00:00 + - 24 + * - `control_p8 `__ + - Compare global control results with previous trunk version + - FV3_GFS_v17_p8 + - 720 + - 2021-03-22 06:00:00 + - 24 + * - `regional_control `__ + - FV3 regional control (hi-res 3km, small domain) test + - FV3_GFS_v15_thompson_mynn_lam3km + - 1800 + - 2016-10-03 00:00:00 + - 6 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON" + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the ATM configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_GFS_v16 + - The :term:`CCPP` GFS_v16 physics suite is described in the CCPP documentation `here `__. + * - FV3_GFS_v17_p8 + - The CCPP GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. + * - FV3_GFS_v15_thompson_mynn_lam3km + - The CCPP GFS_v15 physics suite with the Thompson Aerosol-Aware Cloud Microphysics Scheme + (see `here `__) and + Mynn Surface Layer Module (see `here `__) + tailored for a limited area model (LAM) 3-km resolution grid. + +**Additional Information** + +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 `__. + + +ATMW +======= + +**COMING SOON!** + +ATMAERO +========= + +**COMING SOON!** + +ATMAQ +======= + +**COMING SOON!** + +.. _atml-documented: + +ATML +====== + +The ATML configuration couples :term:`ATM` with :term:`LND`. +These tests use default values set in the ``export_fv3`` function of ``default_vars.sh``. + +.. attention:: + There is an issue with ``-D32BIT=ON`` in the ATM-LND tests, and NoahMP requires r8 libraries. + +.. COMMENT: Should "r8" be "p8"? + +.. _atml-rts: + +.. list-table:: *ATML regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - control_p8_atmlnd_sbs + - Compare global control results with previous trunk version + - FV3_GFS_v17_p8 + - 720 + - 2021-03-22 06:00:00 + - 24 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v17_p8" + + +**Supported Physics Suites** + +.. list-table:: *Physics suites used in the ATM configurations above* + :widths: 10 50 + :header-rows: 1 + + * - Physics Suite + - Description + * - FV3_GFS_v17_p8 + - The :term:`CCPP` GFS_v17_p8 physics suite is described in the CCPP documentation `here `__. + +**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 `__. + + +.. _lnd-documented: + +======= +LND +======= + +The LND configuration couples :term:`DATM`, :term:`CDEPS`, and :term:`CMEPS` with :term:`LND`. These tests use default values set in the ``export_datm_cdeps`` function of ``default_vars.sh``. + +.. _lnd-rts: + +.. list-table:: *LND regression test descriptions* + :widths: 10 40 10 10 15 5 + :header-rows: 1 + + * - Test Name + - Description + - Physics Suite + - DT_ATMOS + - Start Date + - Forecast Length (hours) + * - datm_cdeps_lnd_gswp3 + - DATM_CDEPS_NOAHMP_GSWP3 - control + - N/A + - N/A + - 2000-01-01 00:00:00 + - 24 + * - datm_cdeps_lnd_gswp3_rst + - DATM_CDEPS_NOAHMP_GSWP3_RST - control restart + - N/A + - N/A + - 2000-01-01 12:00:00 + - 12 + +**Sample** ``CMAKE_FLAGS`` **Setting** + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=LND" + +**Additional Information** + +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 `__. + + +============================================= +Seasonal to Subseasonal (S2S) Configurations +============================================= + +**COMING SOON!** + +============== +NG-GODAS +============== + +**COMING SOON!** + +======================================================== +Hurricane Analysis and Reforecast System Configurations +======================================================== + +**COMING SOON!** + + + + + diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index ba105504db..c325d647c6 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -55,7 +55,10 @@ Glossary Cron is a job scheduler accessed through the command-line on UNIX-like operating systems. It is useful for automating tasks such as regression testing. Cron periodically checks a cron table (aka crontab) to see if any tasks are are ready to execute. If so, it runs them. DATM - DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS Documentation `__. + DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS Documentation `__. + + DOCN + DOCN is the *Data Ocean* component of :term:`CDEPS`. It uses static ocean forcing files (derived from observations or previous ocean model runs) instead of output from an active ocean model. This reduces the complexity and computational cost associated with coupling to an active ocean model. The *Data Ocean* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update atmospheric fields in a coupled model. In general, use of DOCN in place of :term:`MOM6` or :term:`HYCOM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DOCN is available in the `CDEPS Documentation `__. dycore dynamical core @@ -90,6 +93,10 @@ Glossary HYCOM The HYbrid Coordinate Ocean Model (`HYCOM `__) was developed to address known shortcomings in the vertical coordinate scheme of the Miami Isopycnic-Coordinate Ocean Model (MICOM). HYCOM is a primitive equation, general circulation model with vertical coordinates that remain isopycnic in the open, stratified ocean. However, the isopycnal vertical coordinates smoothly transition to z-coordinates in the weakly stratified upper-ocean mixed layer, to terrain-following sigma coordinates in shallow water regions, and back to z-level coordinates in very shallow water. The latter transition prevents layers from becoming too thin where the water is very shallow. See the `HYCOM User's Guide `__ for more information on using the model. The `HYCOM model code `__ is publicly available on GitHub. + LND + land component + The Noah Multi-Physics (Noah-MP) land surface model (LSM) is an open-source, community-developed LSM that has been incorporated into the UFS Weather Model (WM). It is the UFS WM's land component. + Mediator A mediator, sometimes called a coupler, is a software component that includes code for representing component interactions. Typical operations include merging data fields, ensuring consistent treatment of coastlines, computing fluxes, and temporal averaging. @@ -120,6 +127,9 @@ Glossary The NOAA Environmental Modeling System is a common modeling framework whose purpose is to streamline components of operational modeling suites at :term:`NCEP`. + netCDF + NetCDF (`Network Common Data Form `__) is a file format and community standard for storing multidimensional scientific data. It includes a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + NG-GODAS Next Generation-Global Ocean Data Assimilation System. NG-GODAS is a UFS Weather Model configuration that couples ocean (:term:`MOM6`), sea ice (:term:`CICE6`), and Data Assimilation (DA) capabilities with the :term:`DATM` component of :term:`CDEPS`. @@ -144,6 +154,10 @@ Glossary Post-processor Software that enhances the value of the raw forecasts produced by the modeling application to make them more useful. At :term:`NCEP`, the :term:`UPP` (Unified Post Processor) software is used to convert data from spectral to gridded format, de-stagger grids, interpolate data vertically (e.g., to isobaric levels) and horizontally (to various predefined grids), and to compute derived variables. Some types of post-processors, such as statistical post-processors, use historical information of previous runs and observations to de-bias and calibrate its output. + RT + Regression test + Tests to validate that software still performs as expected after a change. In general, RTs ensure that the code should produce the same results and performance, within predefined measures of variance. When a code change is designed to change results or performance, then a new baseline is created. From these baselines, regression tests determine whether a change has occurred. + SRW SRW App Short-Range Weather Application diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 31e3280b80..7e19dca68a 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -4,44 +4,50 @@ Data: Input, Model Configuration, and Output Files ***************************************************** -The UFS Weather Model can be run in one of several configurations, from a single component atmospheric +The UFS Weather Model can be run in one of several configurations (sometimes referred to as "applications"), from a single-component atmospheric model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice and -mediator). Currently the supported configurations are: +mediator). Currently, supported configurations include: .. _UFS-configurations: .. list-table:: *Supported ufs-weather-model applications* :widths: 10 70 :header-rows: 1 - + * - Configuration Name - Description - * - ATM - - Standalone UFSAtm - * - ATMW - - UFSAtm coupled to WW3 - * - ATMAERO - - UFSAtm coupled to GOCART - * - ATMAQ - - UFSAtm coupled to CMAQ - * - S2S - - Coupled UFSATM-MOM6-CICE6-CMEPS - * - S2SA - - Coupled UFSATM-MOM6-CICE6-GOCART-CMEPS - * - S2SW - - Coupled UFSATM-MOM6-CICE6-WW3-CMEPS - * - S2SWA - - Coupled UFSATM-MOM6-CICE6-WW3-GOCART-CMEPS - * - NG-GODAS - - Coupled CDEPS-DATM-MOM6-CICE6-CMEPS - * - HAFS - - Coupled UFSATM-HYCOM-CMEPS - * - HAFSW - - Coupled UFSATM-HYCOM-WW3-CMEPS - * - HAFS-ALL - - Coupled CDEPS-UFSATM-HYCOM-WW3-CMEPS - -Each of the component models for a given configuration requires specific input files, and each component model outputs a particular set of files. Each configuration requires a set of model configuration files, as well. This chapter describes the input and output files involved with each component model. It also discusses the various configuration files involved in running the model. Users will need to view the input file requirements for each component model involved in the configuration they are running. For example, users running the *S2S* configuration would need to gather input data required for the *ATM*, *MOM6*, and *CICE6* component models. Then, they would need to alter certain model configuration files to reflect the ``ufs-weather-model`` configuration they plan to run. + * - :ref:`ATM ` + - Standalone Atmospheric Model (:term:`ATM`) + * - :ref:`ATMW ` + - :term:`ATM` coupled to :term:`WW3` + * - :ref:`ATMAERO ` + - :term:`ATM` coupled to :term:`GOCART` + * - :ref:`ATMAQ ` + - :term:`ATM` coupled to :term:`CMAQ` + * - :ref:`ATML ` + - :term:`ATM` coupled to :term:`LND` + * - :ref:`S2S ` + - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`CMEPS` + * - :ref:`S2SA ` + - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`GOCART` - :term:`CMEPS` + * - :ref:`S2SW ` + - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`WW3` - :term:`CMEPS` + * - :ref:`S2SWA ` + - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`GOCART` - :term:`WW3` - :term:`CMEPS` + * - :ref:`NG-GODAS ` + - Coupled :term:`CDEPS` - :term:`DATM` - :term:`MOM6` - :term:`CICE6` - :term:`CMEPS` + * - :ref:`LND ` + - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LND` -:term:`CMEPS` + * - :ref:`HAFS ` + - Coupled :term:`ATM` - :term:`HYCOM` - :term:`CMEPS` + * - :ref:`HAFSW ` + - Coupled :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`CMEPS` + * - :ref:`HAFS-ALL ` + - Coupled :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`CMEPS` + +.. COMMENT: Should HAFS-ALL be DATM instead of ATM? + +This chapter describes the input and output files needed for executing the model in the various supported configurations (see :numref:`Table %s `). Each of the component models for a given configuration requires specific input files, and each component model outputs a particular set of files. Each configuration requires a set of model configuration files, as well. This chapter describes the input and output files involved with each component model. It also discusses the various configuration files involved in running the model. Users will need to view the input file requirements for each component model involved in the configuration they are running. For example, users running the *S2S* configuration would need to gather input data required for the *ATM*, *MOM6*, and *CICE6* component models. Then, they would need to alter certain model configuration files to reflect the ``ufs-weather-model`` configuration that they plan to run. ============= Input files @@ -55,6 +61,8 @@ 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 ------- @@ -940,6 +948,92 @@ 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 +------- + +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 + +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. + +.. _LndInputFiles: + +.. list-table:: *LND input files* + :widths: 30 60 10 + :header-rows: 1 + + * - Filename + - 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. + - Initial conditions + * - C96_grid.tileN.nc + - C96 grid information for tiles 1-6, where N is the grid tile number [1-6]. + - 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º). + - Grid + * - ufs-land.namelist.gdas + - Land component model configuration (namelist) file + - Model configuration + * - ghcn_snwd_ioda_YYYYMMDD.nc + - 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 + - Restart file + - Restart + +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +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 file is available in the ``inputs`` data directory at the following path: + +.. code-block:: + + inputs/forcing/gdas/static/ufs-land_C96_static_fields.nc + +Details on the configuration variables included in this file are available from the :ref:`Land DA documentation `. + +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +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: + +.. code-block:: + + inputs/forcing/GDAS/init/ufs-land_C96_init_fields_1hr.nc + +^^^^^^^^^^^^^^^^^^^^ +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 `. + .. _model-config-files: ========================== @@ -1421,11 +1515,13 @@ are not usually changed. - integer - 0 +.. _nems-conf: + ------------------------ ``nems.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. +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. A sample of the file contents is shown below: @@ -1438,639 +1534,27 @@ A sample of the file contents is shown below: 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: -For the fully coupled S2SW application, a sample ``nems.configure`` is shown 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) -.. 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 - :: - - -For the coupled NG_GODAS application, a sample ``nems.configure`` is shown below : + * For more HAFS, HAFSW, and HAFS-ALL configurations please see the following ``nems.configure`` templates: -.. 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 - :: - -For the coupled HAFS application, a sample ``nems.configure`` is shown below : - -.. 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' - :: - -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 `_ - -For the coupled GOCART in S2SAW application, a sample ``nems.configure`` is shown below : - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM CHM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 287 - :: - - # ATM # - ATM_model: fv3 - ATM_petlist_bounds: 0 311 - ATM_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - :: - - # CHM # - CHM_model: gocart - CHM_petlist_bounds: 0 287 - CHM_attributes:: - Verbosity = 0 - :: - - # OCN # - OCN_model: mom6 - OCN_petlist_bounds: 312 431 - OCN_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = mesh.mx025.nc - :: - - # ICE # - ICE_model: cice6 - ICE_petlist_bounds: 432 479 - ICE_attributes:: - Verbosity = 0 - DumpFields = false - ProfileMemory = false - OverwriteSlice = true - mesh_ice = mesh.mx025.nc - stop_n = 6 - stop_option = nhours - stop_ymd = -999 - :: - - # WAV # - WAV_model: ww3 - WAV_petlist_bounds: 480 559 - WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - :: - - # CMEPS warm run sequence - runSeq:: - @1800 - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 - OCN - @300 - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - WAV -> ATM :srcMaskValues=1 - ATM -> WAV - ICE -> WAV - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - WAV - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write - @ - :: - - # CMEPS variables - - DRIVER_attributes:: - :: - - MED_attributes:: - ATM_model = fv3 - ICE_model = cice6 - OCN_model = mom6 - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = nems_frac - history_tile_atm = 384 - :: - ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = startup - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = 6 - restart_option = nhours - restart_ymd = -999 - dbug_flag = 0 - use_coldstart = false - use_mommesh = true - eps_imesh = 1.0e-1 - stop_n = 6 - stop_option = nhours - stop_ymd = -999 - :: - -For the fully coupled S2S application that receives atmosphere-ocean fluxes from mediator, a sample ``nems.configure`` is shown below : - -.. code-block:: console - - # EARTH # - EARTH_component_list: MED ATM CHM OCN ICE WAV - EARTH_attributes:: - Verbosity = 0 - :: - - # MED # - MED_model: cmeps - MED_petlist_bounds: 0 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 - :: + * `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. -For the ATMAQ application, a sample ``nems.configure`` is shown below : - -.. 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 - @ - :: - --------------------------------------- The Suite Definition File (SDF) File --------------------------------------- diff --git a/doc/UsersGuide/source/_static/theme_overrides.css b/doc/UsersGuide/source/_static/theme_overrides.css index 9713e89ab2..0416b736cd 100644 --- a/doc/UsersGuide/source/_static/theme_overrides.css +++ b/doc/UsersGuide/source/_static/theme_overrides.css @@ -4,6 +4,6 @@ max-width: 100% !important; } -.wy-table-responsive table td { +.wy-table-responsive table td, .wy-table-responsive table th { white-space: normal !important; } diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index fa2a93ca5b..3ea9ae9025 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -203,7 +203,8 @@ def setup(app): # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {'landda': ('https://land-da-workflow.readthedocs.io/en/latest/', None), + } # -- Options for todo extension ---------------------------------------------- diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst index f5e638de4b..c6636e8452 100644 --- a/doc/UsersGuide/source/index.rst +++ b/doc/UsersGuide/source/index.rst @@ -14,6 +14,7 @@ Welcome to the UFS Weather Model User's Guide CodeOverview BuildingAndRunning InputsOutputs + Configurations ConfigParameters AutomatedTesting FAQ diff --git a/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst b/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst new file mode 100644 index 0000000000..006a275364 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.ATMAQ.rst @@ -0,0 +1,38 @@ +: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 new file mode 100644 index 0000000000..c154e51311 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.ATM_LND.rst @@ -0,0 +1,130 @@ +: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 new file mode 100644 index 0000000000..92aeafcde1 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.HAFS.rst @@ -0,0 +1,110 @@ +: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 new file mode 100644 index 0000000000..d2e173dbbb --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.NG-GODAS.rst @@ -0,0 +1,131 @@ +: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 new file mode 100644 index 0000000000..05d008c321 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.S2S.rst @@ -0,0 +1,129 @@ +: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 new file mode 100644 index 0000000000..3f7aa34698 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.S2SW.rst @@ -0,0 +1,103 @@ +: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 new file mode 100644 index 0000000000..e3a83199b9 --- /dev/null +++ b/doc/UsersGuide/source/samples/nems.configure.S2SWA.rst @@ -0,0 +1,140 @@ +: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/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua index 8c7aa71d60..6d96ab95d3 100644 --- a/modulefiles/ufs_cheyenne.gnu.lua +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -33,6 +33,9 @@ load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua index 327a11db22..b1fbec74a3 100644 --- a/modulefiles/ufs_cheyenne.intel.lua +++ b/modulefiles/ufs_cheyenne.intel.lua @@ -34,6 +34,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" load(pathJoin("hpc-mpt", hpc_mpt_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaea.intel.lua index ebbe542453..7ada2ff5a2 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaea.intel.lua @@ -1,22 +1,22 @@ help([[ This module loads libraries required for building and running UFS Weather Model - on the NOAA RDHPC machine Gaea using Intel-2022.1.2 + on the NOAA RDHPC machine Gaea using Intel-2022.0.2 ]]) whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) -load(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1")) +load_any(pathJoin("cmake", os.getenv("cmake_ver") or "3.20.1"),"cmake") prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2021.3.0_ncdf492/modulefiles/stack") +#prepend_path("MODULEPATH","/lustre/f2/dev/role.epic/contrib/hpc-stack/intel-2022.0.2/modulefiles/stack") load(pathJoin("hpc", os.getenv("hpc_ver") or "1.2.0")) -load(pathJoin("intel", os.getenv("intel_ver") or "2021.3.0")) -load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2021.3.0")) + +load(pathJoin("intel-classic", os.getenv("intel_ver") or "2022.0.2")) +load_any(pathJoin("cray-mpich", os.getenv("cray_mpich_ver") or "7.7.11"),"cray-mpich") +load(pathJoin("hpc-intel", os.getenv("hpc_intel_ver") or "2022.0.2")) load(pathJoin("hpc-cray-mpich", os.getenv("hpc_cray_mpich_ver") or "7.7.11")) -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) load(pathJoin("libpng", os.getenv("libpng_ver") or "1.6.37")) --- needed for WW3 build -load(pathJoin("gcc", os.getenv("gcc_ver") or "8.3.0")) -- Needed at runtime: load("alps") diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua index 9154c6fd02..a07c10dd64 100644 --- a/modulefiles/ufs_hera.gnu.lua +++ b/modulefiles/ufs_hera.gnu.lua @@ -22,6 +22,9 @@ load(pathJoin("hpc-gnu", hpc_gnu_ver)) hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" load(pathJoin("hpc-mpich", hpc_mpich_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpicc") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 770dbd1766..e15ee342be 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -25,6 +25,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" load(pathJoin("hpc-impi", hpc_impi_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpiicc") diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua index 84b3dd242e..dcd5a4b61d 100644 --- a/modulefiles/ufs_orion.intel.lua +++ b/modulefiles/ufs_orion.intel.lua @@ -19,6 +19,9 @@ load(pathJoin("hpc-intel", hpc_intel_ver)) hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" load(pathJoin("hpc-impi", hpc_impi_ver)) +scotch_ver=os.getenv("scotch_ver") or "7.0.3" +load(pathJoin("scotch", scotch_ver)) + load("ufs_common") setenv("CC", "mpiicc") diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log index eac601784e..3a909331b0 100644 --- a/tests/RegressionTests_acorn.intel.log +++ b/tests/RegressionTests_acorn.intel.log @@ -1,41 +1,41 @@ -Tue May 9 13:48:34 UTC 2023 +Wed May 24 17:17:45 UTC 2023 Start Regression test -Compile 001 elapsed time 1117 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 698 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 543 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 1201 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 711 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1560 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 481 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 703 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 524 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 719 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 710 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 503 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 023 elapsed time 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 166 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 803 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 026 elapsed time 941 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 520 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 771 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 629 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 782 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 313 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 032 elapsed time 698 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_mixedmode +Compile 001 elapsed time 845 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1100 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1441 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1108 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 669 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 717 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 880 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 1073 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 874 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 912 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 163 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 510 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 511 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 949 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 841 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 023 elapsed time 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 024 elapsed time 674 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 54 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 500 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 496 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 497 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 982 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 984 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 374 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 032 elapsed time 844 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -100,14 +100,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 336.363959 -The maximum resident set size (KB) = 2946824 +The total amount of wall time = 330.719772 +The maximum resident set size (KB) = 2951016 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_gfsv17 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -171,14 +171,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 256.744435 -The maximum resident set size (KB) = 1575372 +The total amount of wall time = 252.443596 +The maximum resident set size (KB) = 1556180 Test 002 cpld_control_gfsv17 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -243,14 +243,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.625964 -The maximum resident set size (KB) = 2984092 +The total amount of wall time = 381.451218 +The maximum resident set size (KB) = 2976140 Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -303,14 +303,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 231.545030 -The maximum resident set size (KB) = 2866808 +The total amount of wall time = 228.951138 +The maximum resident set size (KB) = 2868492 Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -375,14 +375,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.994257 -The maximum resident set size (KB) = 2989600 +The total amount of wall time = 383.223396 +The maximum resident set size (KB) = 2989692 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -435,14 +435,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 234.214218 -The maximum resident set size (KB) = 2880012 +The total amount of wall time = 232.408401 +The maximum resident set size (KB) = 2876432 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -495,14 +495,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 369.229710 -The maximum resident set size (KB) = 3282976 +The total amount of wall time = 364.655846 +The maximum resident set size (KB) = 3279856 Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -555,14 +555,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 380.117371 -The maximum resident set size (KB) = 2977252 +The total amount of wall time = 379.836332 +The maximum resident set size (KB) = 2977140 Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_mpi_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -615,14 +615,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 316.600731 -The maximum resident set size (KB) = 2906004 +The total amount of wall time = 319.958147 +The maximum resident set size (KB) = 2909924 Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_ciceC_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -687,14 +687,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 387.088747 -The maximum resident set size (KB) = 2983916 +The total amount of wall time = 385.316546 +The maximum resident set size (KB) = 2979128 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -758,14 +758,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 288.043237 -The maximum resident set size (KB) = 1571324 +The total amount of wall time = 282.320293 +The maximum resident set size (KB) = 1573076 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_nowave_noaero_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -827,14 +827,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 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 = 302.775396 -The maximum resident set size (KB) = 1619192 +The total amount of wall time = 300.076026 +The maximum resident set size (KB) = 1621256 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_noaero_p8_agrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_noaero_p8_agrid Checking test 013 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -896,14 +896,14 @@ Checking test 013 cpld_control_noaero_p8_agrid 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 = 311.242252 -The maximum resident set size (KB) = 1624168 +The total amount of wall time = 304.547918 +The maximum resident set size (KB) = 1626120 Test 013 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_c48 Checking test 014 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -953,14 +953,14 @@ Checking test 014 cpld_control_c48 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 = 440.579996 -The maximum resident set size (KB) = 2627996 +The total amount of wall time = 437.550955 +The maximum resident set size (KB) = 2637752 Test 014 cpld_control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_warmstart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_warmstart_c48 Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1010,14 +1010,14 @@ Checking test 015 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 124.387910 -The maximum resident set size (KB) = 2648620 +The total amount of wall time = 120.487955 +The maximum resident set size (KB) = 2656124 Test 015 cpld_warmstart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_restart_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_restart_c48 Checking test 016 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1067,14 +1067,14 @@ Checking test 016 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 67.231318 -The maximum resident set size (KB) = 2063356 +The total amount of wall time = 65.512780 +The maximum resident set size (KB) = 2070084 Test 016 cpld_restart_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/cpld_control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/cpld_control_p8_faster Checking test 017 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1139,14 +1139,14 @@ Checking test 017 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 378.806501 -The maximum resident set size (KB) = 2980508 +The total amount of wall time = 378.172523 +The maximum resident set size (KB) = 2974432 Test 017 cpld_control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_flake +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1157,14 +1157,14 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.680390 -The maximum resident set size (KB) = 560972 +The total amount of wall time = 211.982203 +The maximum resident set size (KB) = 561876 Test 018 control_flake PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1191,14 +1191,14 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 129.442093 -The maximum resident set size (KB) = 510480 +The total amount of wall time = 129.474451 +The maximum resident set size (KB) = 516292 Test 019 control_CubedSphereGrid PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_latlon +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1209,14 +1209,14 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 132.313437 -The maximum resident set size (KB) = 514292 +The total amount of wall time = 131.529302 +The maximum resident set size (KB) = 514904 Test 020 control_latlon PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,14 +1227,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 134.587190 -The maximum resident set size (KB) = 516324 +The total amount of wall time = 134.388721 +The maximum resident set size (KB) = 513840 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c48 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,14 +1273,14 @@ Checking test 022 control_c48 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.158061 -The maximum resident set size (KB) = 674744 +The total amount of wall time = 324.168884 +The maximum resident set size (KB) = 673792 Test 022 control_c48 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c192 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,14 +1291,14 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.827409 -The maximum resident set size (KB) = 613968 +The total amount of wall time = 527.035567 +The maximum resident set size (KB) = 615724 Test 023 control_c192 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1309,14 +1309,14 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 567.740010 -The maximum resident set size (KB) = 922308 +The total amount of wall time = 564.190417 +The maximum resident set size (KB) = 924672 Test 024 control_c384 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_c384gdas +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1359,14 +1359,14 @@ Checking test 025 control_c384gdas 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 = 501.063852 -The maximum resident set size (KB) = 1057488 +The total amount of wall time = 498.781897 +The maximum resident set size (KB) = 1052844 Test 025 control_c384gdas PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1377,28 +1377,28 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 89.548602 -The maximum resident set size (KB) = 520556 +The total amount of wall time = 89.753702 +The maximum resident set size (KB) = 523748 Test 026 control_stochy PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 49.805313 -The maximum resident set size (KB) = 286884 +The total amount of wall time = 49.137044 +The maximum resident set size (KB) = 290284 Test 027 control_stochy_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1409,14 +1409,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.261682 -The maximum resident set size (KB) = 514508 +The total amount of wall time = 82.994626 +The maximum resident set size (KB) = 516424 Test 028 control_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr4 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_iovr4 Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.443496 -The maximum resident set size (KB) = 515316 +The total amount of wall time = 134.786152 +The maximum resident set size (KB) = 513476 Test 029 control_iovr4 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_iovr5 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_iovr5 Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 135.131040 -The maximum resident set size (KB) = 517488 +The total amount of wall time = 135.053218 +The maximum resident set size (KB) = 515776 Test 030 control_iovr5 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1507,14 +1507,14 @@ Checking test 031 control_p8 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 = 178.586291 -The maximum resident set size (KB) = 1486440 +The total amount of wall time = 177.565280 +The maximum resident set size (KB) = 1479196 Test 031 control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1553,14 +1553,14 @@ Checking test 032 control_restart_p8 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 = 102.039083 -The maximum resident set size (KB) = 652712 +The total amount of wall time = 99.271794 +The maximum resident set size (KB) = 650948 Test 032 control_restart_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_qr_p8 Checking test 033 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1607,14 +1607,14 @@ Checking test 033 control_qr_p8 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 = 177.069032 -The maximum resident set size (KB) = 1496520 +The total amount of wall time = 176.299113 +The maximum resident set size (KB) = 1495036 Test 033 control_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_restart_qr_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_restart_qr_p8 Checking test 034 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1653,14 +1653,14 @@ Checking test 034 control_restart_qr_p8 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 = 99.997949 -The maximum resident set size (KB) = 661824 +The total amount of wall time = 101.348699 +The maximum resident set size (KB) = 665100 Test 034 control_restart_qr_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_decomp_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,14 +1703,14 @@ Checking test 035 control_decomp_p8 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.600221 -The maximum resident set size (KB) = 1476356 +The total amount of wall time = 180.656420 +The maximum resident set size (KB) = 1472120 Test 035 control_decomp_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_2threads_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1753,14 +1753,14 @@ Checking test 036 control_2threads_p8 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 = 155.072124 -The maximum resident set size (KB) = 1562436 +The total amount of wall time = 155.621980 +The maximum resident set size (KB) = 1573220 Test 036 control_2threads_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_lndp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8_lndp Checking test 037 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1779,14 +1779,14 @@ Checking test 037 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 320.952524 -The maximum resident set size (KB) = 1482664 +The total amount of wall time = 320.656413 +The maximum resident set size (KB) = 1488184 Test 037 control_p8_lndp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_rrtmgp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8_rrtmgp Checking test 038 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1833,14 +1833,14 @@ Checking test 038 control_p8_rrtmgp 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 = 233.481542 -The maximum resident set size (KB) = 1549580 +The total amount of wall time = 233.072797 +The maximum resident set size (KB) = 1547052 Test 038 control_p8_rrtmgp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_mynn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8_mynn Checking test 039 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,14 +1887,14 @@ Checking test 039 control_p8_mynn 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 = 180.056537 -The maximum resident set size (KB) = 1482184 +The total amount of wall time = 179.524503 +The maximum resident set size (KB) = 1483556 Test 039 control_p8_mynn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/merra2_thompson +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/merra2_thompson Checking test 040 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1941,14 +1941,14 @@ Checking test 040 merra2_thompson 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.150063 -The maximum resident set size (KB) = 1495252 +The total amount of wall time = 203.123410 +The maximum resident set size (KB) = 1486536 Test 040 merra2_thompson PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1959,28 +1959,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.768961 -The maximum resident set size (KB) = 652256 +The total amount of wall time = 288.073564 +The maximum resident set size (KB) = 652348 Test 041 regional_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_restart Checking test 042 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.757532 -The maximum resident set size (KB) = 646500 +The total amount of wall time = 153.599557 +The maximum resident set size (KB) = 649480 Test 042 regional_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_control_qr Checking test 043 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1991,28 +1991,28 @@ Checking test 043 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 288.660681 -The maximum resident set size (KB) = 651596 +The total amount of wall time = 285.789458 +The maximum resident set size (KB) = 652776 Test 043 regional_control_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_restart_qr +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_restart_qr Checking test 044 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 157.125493 -The maximum resident set size (KB) = 647372 +The total amount of wall time = 153.984282 +The maximum resident set size (KB) = 647400 Test 044 regional_restart_qr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_decomp Checking test 045 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2023,14 +2023,14 @@ Checking test 045 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 302.719313 -The maximum resident set size (KB) = 653444 +The total amount of wall time = 301.470765 +The maximum resident set size (KB) = 652928 Test 045 regional_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_2threads Checking test 046 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2041,14 +2041,14 @@ Checking test 046 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 177.098448 -The maximum resident set size (KB) = 690084 +The total amount of wall time = 175.085006 +The maximum resident set size (KB) = 691720 Test 046 regional_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_noquilt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_noquilt Checking test 047 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2056,14 +2056,14 @@ Checking test 047 regional_noquilt 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 = 312.288321 -The maximum resident set size (KB) = 641836 +The total amount of wall time = 310.296040 +The maximum resident set size (KB) = 645656 Test 047 regional_noquilt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_2dwrtdecomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2074,14 +2074,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 291.297269 -The maximum resident set size (KB) = 648664 +The total amount of wall time = 286.075058 +The maximum resident set size (KB) = 653772 Test 048 regional_2dwrtdecomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_wofs +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2092,14 +2092,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 363.681402 -The maximum resident set size (KB) = 339880 +The total amount of wall time = 361.807659 +The maximum resident set size (KB) = 338344 Test 049 regional_wofs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_ifi_control Checking test 050 regional_ifi_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2110,14 +2110,14 @@ Checking test 050 regional_ifi_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 319.829398 -The maximum resident set size (KB) = 652716 +The total amount of wall time = 320.831197 +The maximum resident set size (KB) = 651268 Test 050 regional_ifi_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_ifi_decomp Checking test 051 regional_ifi_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2128,14 +2128,14 @@ Checking test 051 regional_ifi_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 337.637772 -The maximum resident set size (KB) = 651640 +The total amount of wall time = 337.008835 +The maximum resident set size (KB) = 654648 Test 051 regional_ifi_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_ifi_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_ifi_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_ifi_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_ifi_2threads Checking test 052 regional_ifi_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2146,14 +2146,14 @@ Checking test 052 regional_ifi_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 197.923256 -The maximum resident set size (KB) = 694224 +The total amount of wall time = 198.157406 +The maximum resident set size (KB) = 696992 Test 052 regional_ifi_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2200,14 +2200,14 @@ Checking test 053 rap_control 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 = 420.529683 -The maximum resident set size (KB) = 890820 +The total amount of wall time = 419.218234 +The maximum resident set size (KB) = 888488 Test 053 rap_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_spp_sppt_shum_skeb Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2218,14 +2218,14 @@ Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.595334 -The maximum resident set size (KB) = 984960 +The total amount of wall time = 244.259774 +The maximum resident set size (KB) = 982576 Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_decomp Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2272,14 +2272,14 @@ Checking test 055 rap_decomp 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 = 433.623522 -The maximum resident set size (KB) = 889564 +The total amount of wall time = 431.991365 +The maximum resident set size (KB) = 891316 Test 055 rap_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_2threads Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2326,14 +2326,14 @@ Checking test 056 rap_2threads 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 = 389.187607 -The maximum resident set size (KB) = 965076 +The total amount of wall time = 386.159384 +The maximum resident set size (KB) = 963984 Test 056 rap_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_restart Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2372,14 +2372,14 @@ Checking test 057 rap_restart 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 = 212.797248 -The maximum resident set size (KB) = 643128 +The total amount of wall time = 214.305789 +The maximum resident set size (KB) = 638368 Test 057 rap_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_sfcdiff Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2426,14 +2426,14 @@ Checking test 058 rap_sfcdiff 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 = 421.937458 -The maximum resident set size (KB) = 891224 +The total amount of wall time = 421.340296 +The maximum resident set size (KB) = 892388 Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_sfcdiff_decomp Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2480,14 +2480,14 @@ Checking test 059 rap_sfcdiff_decomp 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 = 438.488075 -The maximum resident set size (KB) = 889616 +The total amount of wall time = 437.207172 +The maximum resident set size (KB) = 890860 Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_sfcdiff_restart Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2526,14 +2526,14 @@ Checking test 060 rap_sfcdiff_restart 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 = 309.652010 -The maximum resident set size (KB) = 638856 +The total amount of wall time = 309.672320 +The maximum resident set size (KB) = 636328 Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2580,14 +2580,14 @@ Checking test 061 hrrr_control 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 = 390.537386 -The maximum resident set size (KB) = 885484 +The total amount of wall time = 388.680521 +The maximum resident set size (KB) = 886004 Test 061 hrrr_control PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_decomp Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,14 +2634,14 @@ Checking test 062 hrrr_control_decomp 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 = 403.625872 -The maximum resident set size (KB) = 885312 +The total amount of wall time = 402.178836 +The maximum resident set size (KB) = 886744 Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_2threads Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2688,28 +2688,28 @@ Checking test 063 hrrr_control_2threads 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 = 350.187083 -The maximum resident set size (KB) = 963176 +The total amount of wall time = 349.131561 +The maximum resident set size (KB) = 954468 Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_restart Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 286.567256 -The maximum resident set size (KB) = 637920 +The total amount of wall time = 285.661194 +The maximum resident set size (KB) = 636392 Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_v1beta Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2756,14 +2756,14 @@ Checking test 065 rrfs_v1beta 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 = 420.781959 -The maximum resident set size (KB) = 887468 +The total amount of wall time = 417.700590 +The maximum resident set size (KB) = 887632 Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_v1nssl Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2778,14 +2778,14 @@ Checking test 066 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.049540 -The maximum resident set size (KB) = 580772 +The total amount of wall time = 482.110331 +The maximum resident set size (KB) = 581472 Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1nssl_nohailnoccn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_v1nssl_nohailnoccn Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2800,14 +2800,14 @@ Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 469.470987 -The maximum resident set size (KB) = 567484 +The total amount of wall time = 470.630549 +The maximum resident set size (KB) = 568932 Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_smoke_conus13km_hrrr_warm Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2816,14 +2816,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 149.357899 -The maximum resident set size (KB) = 797204 +The total amount of wall time = 149.992318 +The maximum resident set size (KB) = 799092 Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2832,14 +2832,14 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 104.267413 -The maximum resident set size (KB) = 798048 +The total amount of wall time = 104.740741 +The maximum resident set size (KB) = 797112 Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_conus13km_hrrr_warm Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2848,14 +2848,14 @@ Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 135.253002 -The maximum resident set size (KB) = 789912 +The total amount of wall time = 134.280968 +The maximum resident set size (KB) = 792300 Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_smoke_conus13km_radar_tten_warm Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2864,26 +2864,26 @@ Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 150.721902 -The maximum resident set size (KB) = 798076 +The total amount of wall time = 150.145930 +The maximum resident set size (KB) = 799116 Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 69.356727 -The maximum resident set size (KB) = 762976 +The total amount of wall time = 69.037139 +The maximum resident set size (KB) = 763268 Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_csawmg Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 073 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 346.903408 -The maximum resident set size (KB) = 582132 +The total amount of wall time = 347.584336 +The maximum resident set size (KB) = 583472 Test 073 control_csawmg PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_csawmgt Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2912,14 +2912,14 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.889755 -The maximum resident set size (KB) = 584616 +The total amount of wall time = 345.196336 +The maximum resident set size (KB) = 584440 Test 074 control_csawmgt PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_ras Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2930,26 +2930,26 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 180.969138 -The maximum resident set size (KB) = 549940 +The total amount of wall time = 182.640408 +The maximum resident set size (KB) = 549268 Test 075 control_ras PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_wam Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 117.727981 -The maximum resident set size (KB) = 271620 +The total amount of wall time = 117.183366 +The maximum resident set size (KB) = 273760 Test 076 control_wam PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8_faster Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2996,14 +2996,14 @@ Checking test 077 control_p8_faster 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.470930 -The maximum resident set size (KB) = 1485504 +The total amount of wall time = 173.655416 +The maximum resident set size (KB) = 1481400 Test 077 control_p8_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_control_faster +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_control_faster Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3014,56 +3014,56 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 285.157731 -The maximum resident set size (KB) = 651384 +The total amount of wall time = 276.566872 +The maximum resident set size (KB) = 652056 Test 078 regional_control_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 911.396994 -The maximum resident set size (KB) = 824496 +The total amount of wall time = 906.183694 +The maximum resident set size (KB) = 828892 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 522.835240 -The maximum resident set size (KB) = 828620 +The total amount of wall time = 520.032457 +The maximum resident set size (KB) = 826264 Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_conus13km_hrrr_warm_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_conus13km_hrrr_warm_debug Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 807.153458 -The maximum resident set size (KB) = 821048 +The total amount of wall time = 810.190791 +The maximum resident set size (KB) = 821896 Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_CubedSphereGrid_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_CubedSphereGrid_debug Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3090,348 +3090,348 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 157.586723 -The maximum resident set size (KB) = 680688 +The total amount of wall time = 156.837083 +The maximum resident set size (KB) = 680416 Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_wrtGauss_netcdf_parallel_debug Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.668771 -The maximum resident set size (KB) = 684644 +The total amount of wall time = 156.028854 +The maximum resident set size (KB) = 677252 Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_stochy_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_stochy_debug Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.068927 -The maximum resident set size (KB) = 684384 +The total amount of wall time = 176.062514 +The maximum resident set size (KB) = 679352 Test 084 control_stochy_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_lndp_debug Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.465969 -The maximum resident set size (KB) = 683312 +The total amount of wall time = 160.093642 +The maximum resident set size (KB) = 687308 Test 085 control_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmg_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_csawmg_debug Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.764378 -The maximum resident set size (KB) = 719940 +The total amount of wall time = 253.334727 +The maximum resident set size (KB) = 716980 Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_csawmgt_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_csawmgt_debug Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.361541 -The maximum resident set size (KB) = 720840 +The total amount of wall time = 249.523674 +The maximum resident set size (KB) = 719504 Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_ras_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_ras_debug Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.030484 -The maximum resident set size (KB) = 692700 +The total amount of wall time = 160.422629 +The maximum resident set size (KB) = 689560 Test 088 control_ras_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_diag_debug Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.443811 -The maximum resident set size (KB) = 736976 +The total amount of wall time = 161.294175 +The maximum resident set size (KB) = 736044 Test 089 control_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_debug_p8 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_debug_p8 Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.903939 -The maximum resident set size (KB) = 1497888 +The total amount of wall time = 184.982969 +The maximum resident set size (KB) = 1508496 Test 090 control_debug_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_debug Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1039.888379 -The maximum resident set size (KB) = 673284 +The total amount of wall time = 1040.295159 +The maximum resident set size (KB) = 676488 Test 091 regional_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control_debug Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.282402 -The maximum resident set size (KB) = 1049644 +The total amount of wall time = 294.783520 +The maximum resident set size (KB) = 1049960 Test 092 rap_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_debug Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.761857 -The maximum resident set size (KB) = 1045756 +The total amount of wall time = 288.172146 +The maximum resident set size (KB) = 1046948 Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_drag_suite_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_unified_drag_suite_debug Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.703058 -The maximum resident set size (KB) = 1054660 +The total amount of wall time = 295.737163 +The maximum resident set size (KB) = 1054172 Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_diag_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_diag_debug Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.403952 -The maximum resident set size (KB) = 1135448 +The total amount of wall time = 306.839675 +The maximum resident set size (KB) = 1136764 Test 095 rap_diag_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_cires_ugwp_debug Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.522266 -The maximum resident set size (KB) = 1053976 +The total amount of wall time = 302.634186 +The maximum resident set size (KB) = 1051644 Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_unified_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_unified_ugwp_debug Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.877103 -The maximum resident set size (KB) = 1054988 +The total amount of wall time = 301.494184 +The maximum resident set size (KB) = 1048124 Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_lndp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_lndp_debug Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.263580 -The maximum resident set size (KB) = 1054040 +The total amount of wall time = 298.438286 +The maximum resident set size (KB) = 1049724 Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_progcld_thompson_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_progcld_thompson_debug Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.992735 -The maximum resident set size (KB) = 1055396 +The total amount of wall time = 295.478707 +The maximum resident set size (KB) = 1054308 Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_noah_debug Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 288.879077 -The maximum resident set size (KB) = 1051356 +The total amount of wall time = 291.575465 +The maximum resident set size (KB) = 1051372 Test 100 rap_noah_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_sfcdiff_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_sfcdiff_debug Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.769756 -The maximum resident set size (KB) = 1056012 +The total amount of wall time = 295.610189 +The maximum resident set size (KB) = 1051180 Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_noah_sfcdiff_cires_ugwp_debug Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 485.248172 -The maximum resident set size (KB) = 1053808 +The total amount of wall time = 484.264110 +The maximum resident set size (KB) = 1051492 Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rrfs_v1beta_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rrfs_v1beta_debug Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.168689 -The maximum resident set size (KB) = 1051216 +The total amount of wall time = 291.297897 +The maximum resident set size (KB) = 1051860 Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_clm_lake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_clm_lake_debug Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 375.496163 -The maximum resident set size (KB) = 1054136 +The total amount of wall time = 352.707185 +The maximum resident set size (KB) = 1052896 Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_flake_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_flake_debug Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.191398 -The maximum resident set size (KB) = 1053512 +The total amount of wall time = 295.942348 +The maximum resident set size (KB) = 1054384 Test 105 rap_flake_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_wam_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_wam_debug Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.306328 -The maximum resident set size (KB) = 300136 +The total amount of wall time = 297.742452 +The maximum resident set size (KB) = 299628 Test 106 control_wam_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3442,14 +3442,14 @@ Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 232.241044 -The maximum resident set size (KB) = 893180 +The total amount of wall time = 231.431310 +The maximum resident set size (KB) = 896336 Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control_dyn32_phy32 Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3496,14 +3496,14 @@ Checking test 108 rap_control_dyn32_phy32 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.166121 -The maximum resident set size (KB) = 778836 +The total amount of wall time = 351.505150 +The maximum resident set size (KB) = 774904 Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_dyn32_phy32 Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3550,14 +3550,14 @@ Checking test 109 hrrr_control_dyn32_phy32 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 = 179.665397 -The maximum resident set size (KB) = 775532 +The total amount of wall time = 178.788013 +The maximum resident set size (KB) = 780692 Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_2threads_dyn32_phy32 Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3604,14 +3604,14 @@ Checking test 110 rap_2threads_dyn32_phy32 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 = 329.569917 -The maximum resident set size (KB) = 830220 +The total amount of wall time = 329.243926 +The maximum resident set size (KB) = 828908 Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_2threads_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_2threads_dyn32_phy32 Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3658,14 +3658,14 @@ Checking test 111 hrrr_control_2threads_dyn32_phy32 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 = 160.017313 -The maximum resident set size (KB) = 824276 +The total amount of wall time = 160.218360 +The maximum resident set size (KB) = 826456 Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_decomp_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_decomp_dyn32_phy32 Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3712,14 +3712,14 @@ Checking test 112 hrrr_control_decomp_dyn32_phy32 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.593899 -The maximum resident set size (KB) = 774056 +The total amount of wall time = 186.076441 +The maximum resident set size (KB) = 775236 Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_restart_dyn32_phy32 Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3758,28 +3758,28 @@ Checking test 113 rap_restart_dyn32_phy32 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 = 258.426638 -The maximum resident set size (KB) = 613916 +The total amount of wall time = 258.433109 +The maximum resident set size (KB) = 613480 Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_restart_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_restart_dyn32_phy32 Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 92.268874 -The maximum resident set size (KB) = 608780 +The total amount of wall time = 93.514681 +The maximum resident set size (KB) = 603484 Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control_dyn64_phy32 Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3826,81 +3826,81 @@ Checking test 115 rap_control_dyn64_phy32 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.769471 -The maximum resident set size (KB) = 793068 +The total amount of wall time = 234.779093 +The maximum resident set size (KB) = 795024 Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control_debug_dyn32_phy32 Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.250645 -The maximum resident set size (KB) = 937720 +The total amount of wall time = 288.854917 +The maximum resident set size (KB) = 934812 Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hrrr_control_debug_dyn32_phy32 +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hrrr_control_debug_dyn32_phy32 Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 283.265837 -The maximum resident set size (KB) = 938596 +The total amount of wall time = 282.732582 +The maximum resident set size (KB) = 931996 Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/rap_control_dyn64_phy32_debug +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/rap_control_dyn64_phy32_debug Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.568086 -The maximum resident set size (KB) = 951188 +The total amount of wall time = 292.577237 +The maximum resident set size (KB) = 958120 Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_atm Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 270.575055 -The maximum resident set size (KB) = 819092 +The total amount of wall time = 269.582536 +The maximum resident set size (KB) = 818232 Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_thompson_gfdlsf +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_atm_thompson_gfdlsf Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 310.019167 -The maximum resident set size (KB) = 1171428 +The total amount of wall time = 316.791634 +The maximum resident set size (KB) = 1180100 Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_atm_ocn Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3909,14 +3909,14 @@ Checking test 121 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 387.848541 -The maximum resident set size (KB) = 857772 +The total amount of wall time = 387.991280 +The maximum resident set size (KB) = 858384 Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_atm_wav Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3925,14 +3925,14 @@ Checking test 122 hafs_regional_atm_wav 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 = 708.254334 -The maximum resident set size (KB) = 887828 +The total amount of wall time = 706.075341 +The maximum resident set size (KB) = 886784 Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_atm_ocn_wav +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_atm_ocn_wav Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3943,29 +3943,73 @@ Checking test 123 hafs_regional_atm_ocn_wav 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 = 899.934683 -The maximum resident set size (KB) = 913080 +The total amount of wall time = 895.251030 +The maximum resident set size (KB) = 911936 Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_1nest_atm +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_1nest_atm Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 331.253605 -The maximum resident set size (KB) = 391104 + 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 + +The total amount of wall time = 331.811355 +The maximum resident set size (KB) = 392776 Test 124 hafs_regional_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_telescopic_2nests_atm -Checking test 125 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_1nest_atm_qr +Checking test 125 hafs_regional_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 + +The total amount of wall time = 353.568130 +The maximum resident set size (KB) = 368672 + +Test 125 hafs_regional_1nest_atm_qr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_telescopic_2nests_atm +Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3973,29 +4017,123 @@ Checking test 125 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 400.888883 -The maximum resident set size (KB) = 398688 +The total amount of wall time = 401.809291 +The maximum resident set size (KB) = 398360 -Test 125 hafs_regional_telescopic_2nests_atm PASS +Test 126 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_1nest_atm -Checking test 126 hafs_global_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_global_1nest_atm +Checking test 127 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 171.530611 -The maximum resident set size (KB) = 260584 - -Test 126 hafs_global_1nest_atm PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_multiple_4nests_atm -Checking test 127 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + +The total amount of wall time = 171.830605 +The maximum resident set size (KB) = 259904 + +Test 127 hafs_global_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_global_1nest_atm_qr +Checking test 128 hafs_global_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 177.370897 +The maximum resident set size (KB) = 269124 + +Test 128 hafs_global_1nest_atm_qr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4011,16 +4149,169 @@ Checking test 127 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - -The total amount of wall time = 489.402314 -The maximum resident set size (KB) = 342596 - -Test 127 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_specified_moving_1nest_atm -Checking test 128 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 + +The total amount of wall time = 494.571790 +The maximum resident set size (KB) = 341652 + +Test 129 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_global_multiple_4nests_atm_qr +Checking test 130 hafs_global_multiple_4nests_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......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 + +The total amount of wall time = 536.254324 +The maximum resident set size (KB) = 373196 + +Test 130 hafs_global_multiple_4nests_atm_qr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4028,29 +4319,73 @@ Checking test 128 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 217.997175 -The maximum resident set size (KB) = 404772 +The total amount of wall time = 217.965820 +The maximum resident set size (KB) = 400328 -Test 128 hafs_regional_specified_moving_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm -Checking test 129 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 206.140001 -The maximum resident set size (KB) = 407460 - -Test 129 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn -Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... + 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 + +The total amount of wall time = 205.010875 +The maximum resident set size (KB) = 400188 + +Test 132 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_storm_following_1nest_atm_qr +Checking test 133 hafs_regional_storm_following_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 + +The total amount of wall time = 229.195526 +The maximum resident set size (KB) = 392188 + +Test 133 hafs_regional_storm_following_1nest_atm_qr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_storm_following_1nest_atm_ocn +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4058,43 +4393,43 @@ Checking test 130 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 251.283608 -The maximum resident set size (KB) = 467736 +The total amount of wall time = 252.216844 +The maximum resident set size (KB) = 465584 -Test 130 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_global_storm_following_1nest_atm -Checking test 131 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_global_storm_following_1nest_atm +Checking test 135 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 84.501360 -The maximum resident set size (KB) = 277208 +The total amount of wall time = 85.086078 +The maximum resident set size (KB) = 288188 -Test 131 hafs_global_storm_following_1nest_atm PASS +Test 135 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 803.380641 -The maximum resident set size (KB) = 488060 +The total amount of wall time = 801.069137 +The maximum resident set size (KB) = 488388 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4104,162 +4439,162 @@ Checking test 133 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 499.621703 -The maximum resident set size (KB) = 522020 +The total amount of wall time = 508.990927 +The maximum resident set size (KB) = 518656 -Test 133 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn -Checking test 134 hafs_regional_docn results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_docn +Checking test 138 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 368.968063 -The maximum resident set size (KB) = 861620 +The total amount of wall time = 370.245937 +The maximum resident set size (KB) = 861920 -Test 134 hafs_regional_docn PASS +Test 138 hafs_regional_docn PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_docn_oisst -Checking test 135 hafs_regional_docn_oisst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_docn_oisst +Checking test 139 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 373.084886 -The maximum resident set size (KB) = 852044 +The total amount of wall time = 371.261532 +The maximum resident set size (KB) = 853380 -Test 135 hafs_regional_docn_oisst PASS +Test 139 hafs_regional_docn_oisst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/hafs_regional_datm_cdeps -Checking test 136 hafs_regional_datm_cdeps results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/hafs_regional_datm_cdeps +Checking test 140 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 943.300758 -The maximum resident set size (KB) = 834100 +The total amount of wall time = 945.744947 +The maximum resident set size (KB) = 834564 -Test 136 hafs_regional_datm_cdeps PASS +Test 140 hafs_regional_datm_cdeps PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr -Checking test 137 datm_cdeps_control_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_control_cfsr +Checking test 141 datm_cdeps_control_cfsr 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.077664 -The maximum resident set size (KB) = 734016 +The total amount of wall time = 141.844556 +The maximum resident set size (KB) = 734896 -Test 137 datm_cdeps_control_cfsr PASS +Test 141 datm_cdeps_control_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_restart_cfsr -Checking test 138 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_restart_cfsr +Checking test 142 datm_cdeps_restart_cfsr 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 = 85.501202 -The maximum resident set size (KB) = 727844 +The total amount of wall time = 86.150235 +The maximum resident set size (KB) = 721128 -Test 138 datm_cdeps_restart_cfsr PASS +Test 142 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_gefs -Checking test 139 datm_cdeps_control_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_control_gefs +Checking test 143 datm_cdeps_control_gefs 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 = 134.969062 -The maximum resident set size (KB) = 613912 +The total amount of wall time = 134.101139 +The maximum resident set size (KB) = 616824 -Test 139 datm_cdeps_control_gefs PASS +Test 143 datm_cdeps_control_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_iau_gefs -Checking test 140 datm_cdeps_iau_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_iau_gefs +Checking test 144 datm_cdeps_iau_gefs 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 = 136.103046 -The maximum resident set size (KB) = 614860 +The total amount of wall time = 138.073907 +The maximum resident set size (KB) = 616484 -Test 140 datm_cdeps_iau_gefs PASS +Test 144 datm_cdeps_iau_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_stochy_gefs -Checking test 141 datm_cdeps_stochy_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_stochy_gefs +Checking test 145 datm_cdeps_stochy_gefs 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 = 137.541242 -The maximum resident set size (KB) = 615512 +The total amount of wall time = 138.698559 +The maximum resident set size (KB) = 613116 -Test 141 datm_cdeps_stochy_gefs PASS +Test 145 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_ciceC_cfsr -Checking test 142 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_ciceC_cfsr +Checking test 146 datm_cdeps_ciceC_cfsr 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.756770 -The maximum resident set size (KB) = 733292 +The total amount of wall time = 142.030152 +The maximum resident set size (KB) = 720428 -Test 142 datm_cdeps_ciceC_cfsr PASS +Test 146 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_cfsr -Checking test 143 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_bulk_cfsr +Checking test 147 datm_cdeps_bulk_cfsr 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.232509 -The maximum resident set size (KB) = 731380 +The total amount of wall time = 142.548992 +The maximum resident set size (KB) = 732668 -Test 143 datm_cdeps_bulk_cfsr PASS +Test 147 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_bulk_gefs -Checking test 144 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_bulk_gefs +Checking test 148 datm_cdeps_bulk_gefs 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.415352 -The maximum resident set size (KB) = 611032 +The total amount of wall time = 134.643506 +The maximum resident set size (KB) = 612464 -Test 144 datm_cdeps_bulk_gefs PASS +Test 148 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_cfsr -Checking test 145 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_mx025_cfsr +Checking test 149 datm_cdeps_mx025_cfsr 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 @@ -4267,15 +4602,15 @@ Checking test 145 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 429.509832 -The maximum resident set size (KB) = 569868 +The total amount of wall time = 431.520521 +The maximum resident set size (KB) = 571232 -Test 145 datm_cdeps_mx025_cfsr PASS +Test 149 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_mx025_gefs -Checking test 146 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_mx025_gefs +Checking test 150 datm_cdeps_mx025_gefs 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 @@ -4283,65 +4618,65 @@ Checking test 146 datm_cdeps_mx025_gefs 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 = 430.724925 -The maximum resident set size (KB) = 547828 +The total amount of wall time = 429.505881 +The maximum resident set size (KB) = 547840 -Test 146 datm_cdeps_mx025_gefs PASS +Test 150 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_multiple_files_cfsr -Checking test 147 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_multiple_files_cfsr +Checking test 151 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 141.076767 -The maximum resident set size (KB) = 732764 +The total amount of wall time = 141.736083 +The maximum resident set size (KB) = 731412 -Test 147 datm_cdeps_multiple_files_cfsr PASS +Test 151 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_3072x1536_cfsr -Checking test 148 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_3072x1536_cfsr +Checking test 152 datm_cdeps_3072x1536_cfsr 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 = 257.300795 -The maximum resident set size (KB) = 1980580 +The total amount of wall time = 256.447245 +The maximum resident set size (KB) = 1979668 -Test 148 datm_cdeps_3072x1536_cfsr PASS +Test 152 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_gfs -Checking test 149 datm_cdeps_gfs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_gfs +Checking test 153 datm_cdeps_gfs 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 = 257.374949 -The maximum resident set size (KB) = 1981816 +The total amount of wall time = 255.334699 +The maximum resident set size (KB) = 1977244 -Test 149 datm_cdeps_gfs PASS +Test 153 datm_cdeps_gfs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_control_cfsr_faster -Checking test 150 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_control_cfsr_faster +Checking test 154 datm_cdeps_control_cfsr_faster 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.014891 -The maximum resident set size (KB) = 736604 +The total amount of wall time = 141.142040 +The maximum resident set size (KB) = 734212 -Test 150 datm_cdeps_control_cfsr_faster PASS +Test 154 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3 -Checking test 151 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_lnd_gswp3 +Checking test 155 datm_cdeps_lnd_gswp3 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 @@ -4349,15 +4684,15 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 21.967855 -The maximum resident set size (KB) = 226740 +The total amount of wall time = 21.951071 +The maximum resident set size (KB) = 232312 -Test 151 datm_cdeps_lnd_gswp3 PASS +Test 155 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/datm_cdeps_lnd_gswp3_rst -Checking test 152 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/datm_cdeps_lnd_gswp3_rst +Checking test 156 datm_cdeps_lnd_gswp3_rst 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 @@ -4365,15 +4700,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 27.074508 -The maximum resident set size (KB) = 230032 +The total amount of wall time = 27.092106 +The maximum resident set size (KB) = 224212 -Test 152 datm_cdeps_lnd_gswp3_rst PASS +Test 156 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_p8_atmlnd_sbs -Checking test 153 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_p8_atmlnd_sbs +Checking test 157 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4457,15 +4792,15 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 233.778318 -The maximum resident set size (KB) = 1538084 +The total amount of wall time = 235.033715 +The maximum resident set size (KB) = 1538060 -Test 153 control_p8_atmlnd_sbs PASS +Test 157 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmwav_control_noaero_p8 -Checking test 154 atmwav_control_noaero_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/atmwav_control_noaero_p8 +Checking test 158 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4507,15 +4842,15 @@ Checking test 154 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -The total amount of wall time = 107.758489 -The maximum resident set size (KB) = 1529048 +The total amount of wall time = 109.085694 +The maximum resident set size (KB) = 1526204 -Test 154 atmwav_control_noaero_p8 PASS +Test 158 atmwav_control_noaero_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/control_atmwav -Checking test 155 control_atmwav results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/control_atmwav +Checking test 159 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4558,15 +4893,15 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -The total amount of wall time = 91.300620 -The maximum resident set size (KB) = 540416 +The total amount of wall time = 91.123358 +The maximum resident set size (KB) = 543668 -Test 155 control_atmwav PASS +Test 159 control_atmwav PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8 -Checking test 156 atmaero_control_p8 results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/atmaero_control_p8 +Checking test 160 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4609,15 +4944,15 @@ Checking test 156 atmaero_control_p8 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.781569 -The maximum resident set size (KB) = 2815684 +The total amount of wall time = 242.921767 +The maximum resident set size (KB) = 2811420 -Test 156 atmaero_control_p8 PASS +Test 160 atmaero_control_p8 PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad -Checking test 157 atmaero_control_p8_rad results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/atmaero_control_p8_rad +Checking test 161 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4660,15 +4995,15 @@ Checking test 157 atmaero_control_p8_rad 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 = 284.941388 -The maximum resident set size (KB) = 2876476 +The total amount of wall time = 282.309752 +The maximum resident set size (KB) = 2874752 -Test 157 atmaero_control_p8_rad PASS +Test 161 atmaero_control_p8_rad PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/atmaero_control_p8_rad_micro -Checking test 158 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/atmaero_control_p8_rad_micro +Checking test 162 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4711,15 +5046,15 @@ Checking test 158 atmaero_control_p8_rad_micro 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 = 288.119953 -The maximum resident set size (KB) = 2885652 +The total amount of wall time = 287.599152 +The maximum resident set size (KB) = 2882416 -Test 158 atmaero_control_p8_rad_micro PASS +Test 162 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq -Checking test 159 regional_atmaq results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_atmaq +Checking test 163 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4734,15 +5069,15 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 684.497360 -The maximum resident set size (KB) = 1257648 +The total amount of wall time = 679.640324 +The maximum resident set size (KB) = 1251144 -Test 159 regional_atmaq PASS +Test 163 regional_atmaq PASS -baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_171451/regional_atmaq_debug -Checking test 160 regional_atmaq_debug results .... +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_104550/regional_atmaq_debug +Checking test 164 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4755,12 +5090,12 @@ Checking test 160 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1298.969894 -The maximum resident set size (KB) = 1282084 +The total amount of wall time = 1293.261342 +The maximum resident set size (KB) = 1288368 -Test 160 regional_atmaq_debug PASS +Test 164 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue May 9 15:25:58 UTC 2023 -Elapsed time: 01h:37m:25s. Have a nice day! +Wed May 24 18:52:00 UTC 2023 +Elapsed time: 01h:34m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 654508dfb6..7344f4e8ef 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,23 @@ -Fri May 5 04:04:33 MDT 2023 +Tue May 23 15:21:38 MDT 2023 Start Regression test -Compile 001 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 914 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 394 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 897 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 914 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 619 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 587 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 336 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_c48 +Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 879 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 879 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 878 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 612 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 567 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 327 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 538 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 285 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 293 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +56,14 @@ Checking test 001 control_c48 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 = 815.480234 -0:The maximum resident set size (KB) = 680420 +0:The total amount of wall time = 818.329254 +0:The maximum resident set size (KB) = 680312 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +74,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.402887 -0:The maximum resident set size (KB) = 443712 +0:The total amount of wall time = 178.491114 +0:The maximum resident set size (KB) = 443596 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_ras +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +92,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 292.422375 -0:The maximum resident set size (KB) = 452412 +0:The total amount of wall time = 295.399635 +0:The maximum resident set size (KB) = 452380 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +146,14 @@ Checking test 004 control_p8 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 = 310.277991 -0:The maximum resident set size (KB) = 1225396 +0:The total amount of wall time = 309.407340 +0:The maximum resident set size (KB) = 1225228 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_flake +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_flake +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +164,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 356.342994 -0:The maximum resident set size (KB) = 490524 +0:The total amount of wall time = 350.741130 +0:The maximum resident set size (KB) = 490972 Test 005 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +218,14 @@ Checking test 006 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.142443 -0:The maximum resident set size (KB) = 792380 +0:The total amount of wall time = 718.583620 +0:The maximum resident set size (KB) = 792712 Test 006 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +272,14 @@ Checking test 007 rap_decomp 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 = 716.643434 -0:The maximum resident set size (KB) = 791704 +0:The total amount of wall time = 720.644689 +0:The maximum resident set size (KB) = 792100 Test 007 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +326,14 @@ Checking test 008 rap_2threads 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 = 654.604419 -0:The maximum resident set size (KB) = 865968 +0:The total amount of wall time = 657.962672 +0:The maximum resident set size (KB) = 866068 Test 008 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +372,14 @@ Checking test 009 rap_restart 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 = 353.254777 -0:The maximum resident set size (KB) = 539344 +0:The total amount of wall time = 353.458051 +0:The maximum resident set size (KB) = 539600 Test 009 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +426,14 @@ Checking test 010 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 712.612280 -0:The maximum resident set size (KB) = 791688 +0:The total amount of wall time = 717.312756 +0:The maximum resident set size (KB) = 792176 Test 010 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +480,14 @@ Checking test 011 rap_sfcdiff_decomp 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 = 722.607342 -0:The maximum resident set size (KB) = 791524 +0:The total amount of wall time = 725.678168 +0:The maximum resident set size (KB) = 792004 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +526,14 @@ Checking test 012 rap_sfcdiff_restart 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 = 523.487983 -0:The maximum resident set size (KB) = 544668 +0:The total amount of wall time = 528.312314 +0:The maximum resident set size (KB) = 544692 Test 012 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +580,14 @@ Checking test 013 hrrr_control 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 = 685.441953 -0:The maximum resident set size (KB) = 789064 +0:The total amount of wall time = 688.327360 +0:The maximum resident set size (KB) = 789468 Test 013 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +634,14 @@ Checking test 014 hrrr_control_2threads 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 = 706.043873 -0:The maximum resident set size (KB) = 855888 +0:The total amount of wall time = 712.468638 +0:The maximum resident set size (KB) = 855860 Test 014 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +688,28 @@ Checking test 015 hrrr_control_decomp 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 = 682.241630 -0:The maximum resident set size (KB) = 788552 +0:The total amount of wall time = 689.086403 +0:The maximum resident set size (KB) = 788492 Test 015 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 506.150669 -0:The maximum resident set size (KB) = 539912 +0:The total amount of wall time = 505.434330 +0:The maximum resident set size (KB) = 540588 Test 016 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_v1beta +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +756,14 @@ Checking test 017 rrfs_v1beta 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 = 703.906877 -0:The maximum resident set size (KB) = 789108 +0:The total amount of wall time = 706.315266 +0:The maximum resident set size (KB) = 789484 Test 017 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +772,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 239.470312 -0:The maximum resident set size (KB) = 639764 +0:The total amount of wall time = 240.268189 +0:The maximum resident set size (KB) = 639636 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +788,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 150.141650 -0:The maximum resident set size (KB) = 658528 +0:The total amount of wall time = 149.990036 +0:The maximum resident set size (KB) = 658096 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +804,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 219.792470 -0:The maximum resident set size (KB) = 618852 +0:The total amount of wall time = 220.151923 +0:The maximum resident set size (KB) = 618392 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +820,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 241.487717 -0:The maximum resident set size (KB) = 642424 +0:The total amount of wall time = 240.980840 +0:The maximum resident set size (KB) = 642368 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 115.306913 -0:The maximum resident set size (KB) = 599588 +0:The total amount of wall time = 114.843945 +0:The maximum resident set size (KB) = 599540 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.884814 -0:The maximum resident set size (KB) = 492036 +0:The total amount of wall time = 84.044500 +0:The maximum resident set size (KB) = 491840 Test 023 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/regional_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 479.193602 -0:The maximum resident set size (KB) = 567300 +0:The total amount of wall time = 472.565993 +0:The maximum resident set size (KB) = 568064 Test 024 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.048157 -0:The maximum resident set size (KB) = 806312 +0:The total amount of wall time = 143.744321 +0:The maximum resident set size (KB) = 806584 Test 025 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 142.255144 -0:The maximum resident set size (KB) = 801756 +0:The total amount of wall time = 140.108232 +0:The maximum resident set size (KB) = 801980 Test 026 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 152.680367 -0:The maximum resident set size (KB) = 888496 +0:The total amount of wall time = 151.218407 +0:The maximum resident set size (KB) = 888532 Test 027 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 234.710988 -0:The maximum resident set size (KB) = 804596 +0:The total amount of wall time = 231.517649 +0:The maximum resident set size (KB) = 804392 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.669938 -0:The maximum resident set size (KB) = 806512 +0:The total amount of wall time = 144.204463 +0:The maximum resident set size (KB) = 806336 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.646493 -0:The maximum resident set size (KB) = 801440 +0:The total amount of wall time = 142.897109 +0:The maximum resident set size (KB) = 801736 Test 030 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_ras_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.149052 -0:The maximum resident set size (KB) = 446740 +0:The total amount of wall time = 79.322299 +0:The maximum resident set size (KB) = 446484 Test 031 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_stochy_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.535128 -0:The maximum resident set size (KB) = 438820 +0:The total amount of wall time = 88.784109 +0:The maximum resident set size (KB) = 438908 Test 032 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.356838 -0:The maximum resident set size (KB) = 1221880 +0:The total amount of wall time = 89.764312 +0:The maximum resident set size (KB) = 1221296 Test 033 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 445.690545 -0:The maximum resident set size (KB) = 644980 +0:The total amount of wall time = 442.284543 +0:The maximum resident set size (KB) = 644896 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 259.824078 -0:The maximum resident set size (KB) = 664096 +0:The total amount of wall time = 257.240237 +0:The maximum resident set size (KB) = 669164 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 402.880230 -0:The maximum resident set size (KB) = 623520 +0:The total amount of wall time = 400.575221 +0:The maximum resident set size (KB) = 623328 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_flake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_flake_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.280735 -0:The maximum resident set size (KB) = 806316 +0:The total amount of wall time = 143.814504 +0:The maximum resident set size (KB) = 806556 Test 037 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_clm_lake_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_clm_lake_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.819596 -0:The maximum resident set size (KB) = 807840 +0:The total amount of wall time = 164.710635 +0:The maximum resident set size (KB) = 808048 Test 038 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/control_wam_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 140.143132 -0:The maximum resident set size (KB) = 182888 +0:The total amount of wall time = 141.043548 +0:The maximum resident set size (KB) = 182416 Test 039 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1122,14 @@ Checking test 040 rap_control_dyn32_phy32 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 = 699.489469 -0:The maximum resident set size (KB) = 672628 +0:The total amount of wall time = 705.730540 +0:The maximum resident set size (KB) = 672664 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1176,14 @@ Checking test 041 hrrr_control_dyn32_phy32 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 = 352.641227 -0:The maximum resident set size (KB) = 671112 +0:The total amount of wall time = 353.717733 +0:The maximum resident set size (KB) = 671144 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1230,14 @@ Checking test 042 rap_2threads_dyn32_phy32 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 = 643.040342 -0:The maximum resident set size (KB) = 720036 +0:The total amount of wall time = 647.682275 +0:The maximum resident set size (KB) = 720452 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1284,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 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 = 403.092652 -0:The maximum resident set size (KB) = 712460 +0:The total amount of wall time = 406.103116 +0:The maximum resident set size (KB) = 711808 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1338,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 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 = 351.172256 -0:The maximum resident set size (KB) = 670068 +0:The total amount of wall time = 352.567936 +0:The maximum resident set size (KB) = 670400 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1384,28 @@ Checking test 045 rap_restart_dyn32_phy32 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 = 520.157001 -0:The maximum resident set size (KB) = 511708 +0:The total amount of wall time = 521.594652 +0:The maximum resident set size (KB) = 512212 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.758570 -0:The maximum resident set size (KB) = 505972 +0:The total amount of wall time = 179.426117 +0:The maximum resident set size (KB) = 505912 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,56 +1452,56 @@ Checking test 047 rap_control_dyn64_phy32 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 = 413.889092 -0:The maximum resident set size (KB) = 693804 +0:The total amount of wall time = 413.154995 +0:The maximum resident set size (KB) = 693032 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.185860 -0:The maximum resident set size (KB) = 687056 +0:The total amount of wall time = 142.845632 +0:The maximum resident set size (KB) = 687020 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 141.476420 -0:The maximum resident set size (KB) = 684228 +0:The total amount of wall time = 139.172927 +0:The maximum resident set size (KB) = 684516 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.643835 -0:The maximum resident set size (KB) = 708028 +0:The total amount of wall time = 147.645670 +0:The maximum resident set size (KB) = 707880 Test 050 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/cpld_control_p8 Checking test 051 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1564,14 +1566,14 @@ Checking test 051 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 499.255766 -0:The maximum resident set size (KB) = 3161428 +0:The total amount of wall time = 493.735428 +0:The maximum resident set size (KB) = 3158868 Test 051 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1633,14 +1635,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 239.383698 -0:The maximum resident set size (KB) = 1240728 +0:The total amount of wall time = 249.131380 +0:The maximum resident set size (KB) = 1240448 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1693,25 +1695,155 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 202.179415 -0:The maximum resident set size (KB) = 3175064 +0:The total amount of wall time = 202.027661 +0:The maximum resident set size (KB) = 3174164 Test 053 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_54655/datm_cdeps_control_cfsr -Checking test 054 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/cpld_control_pdlib_p8 +Checking test 054 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1400.948631 +0:The maximum resident set size (KB) = 1432384 + +Test 054 cpld_control_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_debug_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/cpld_debug_pdlib_p8 +Checking test 055 cpld_debug_pdlib_p8 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 = 690.997536 +0:The maximum resident set size (KB) = 1298520 + +Test 055 cpld_debug_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15188/datm_cdeps_control_cfsr +Checking test 056 datm_cdeps_control_cfsr 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 = 178.657507 -0:The maximum resident set size (KB) = 676024 +0:The total amount of wall time = 179.551834 +0:The maximum resident set size (KB) = 670508 -Test 054 datm_cdeps_control_cfsr PASS +Test 056 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 04:40:47 MDT 2023 -Elapsed time: 00h:36m:14s. Have a nice day! +Tue May 23 16:07:54 MDT 2023 +Elapsed time: 00h:46m:17s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 24f21fc368..0aef596ffb 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,42 +1,44 @@ -Sat May 6 07:46:17 MDT 2023 +Tue May 23 13:22:07 MDT 2023 Start Regression test -Compile 001 elapsed time 1587 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1518 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1428 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 457 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1140 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1143 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1167 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1016 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 863 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 443 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 265 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 1228 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 020 elapsed time 356 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 021 elapsed time 1650 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 1204 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 023 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 024 elapsed time 197 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 025 elapsed time 428 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 026 elapsed time 104 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 1003 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 1071 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 1059 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 976 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 948 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 310 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 1102 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8_mixedmode +Compile 001 elapsed time 1597 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1546 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1462 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 485 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 413 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1165 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1159 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1492 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 409 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 010 elapsed time 1172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1064 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 997 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 1366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 446 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 282 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 903 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 298 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 1256 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 353 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 023 elapsed time 1652 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 1183 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 025 elapsed time 439 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 026 elapsed time 206 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 027 elapsed time 434 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 028 elapsed time 106 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 1026 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 1071 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 1071 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 970 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 936 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 302 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 035 elapsed time 1105 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +103,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 319.544609 -0:The maximum resident set size (KB) = 2698760 +0:The total amount of wall time = 322.788019 +0:The maximum resident set size (KB) = 2699108 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +174,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 282.033907 -0:The maximum resident set size (KB) = 1437756 +0:The total amount of wall time = 285.380357 +0:The maximum resident set size (KB) = 1426644 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +246,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 323.529452 -0:The maximum resident set size (KB) = 2715428 +0:The total amount of wall time = 326.806346 +0:The maximum resident set size (KB) = 2715540 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +306,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 186.860231 -0:The maximum resident set size (KB) = 2576764 +0:The total amount of wall time = 189.074339 +0:The maximum resident set size (KB) = 2577008 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -376,14 +378,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 329.694969 -0:The maximum resident set size (KB) = 2719992 +0:The total amount of wall time = 326.046567 +0:The maximum resident set size (KB) = 2720048 Test 005 cpld_control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_qr_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -436,14 +438,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 200.761474 -0:The maximum resident set size (KB) = 2593872 +0:The total amount of wall time = 200.029750 +0:The maximum resident set size (KB) = 2593132 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -496,14 +498,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 249.551018 -0:The maximum resident set size (KB) = 3178456 +0:The total amount of wall time = 256.844830 +0:The maximum resident set size (KB) = 3178328 Test 007 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -556,14 +558,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 322.275955 -0:The maximum resident set size (KB) = 2720620 +0:The total amount of wall time = 324.958776 +0:The maximum resident set size (KB) = 2722700 Test 008 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -616,14 +618,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 280.595475 -0:The maximum resident set size (KB) = 2681440 +0:The total amount of wall time = 282.242182 +0:The maximum resident set size (KB) = 2681944 Test 009 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -688,14 +690,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 325.778808 -0:The maximum resident set size (KB) = 2715260 +0:The total amount of wall time = 322.852216 +0:The maximum resident set size (KB) = 2715604 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -748,14 +750,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 627.058141 -0:The maximum resident set size (KB) = 3351720 +0:The total amount of wall time = 632.961288 +0:The maximum resident set size (KB) = 3353408 Test 011 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -808,14 +810,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -0:The total amount of wall time = 381.779742 -0:The maximum resident set size (KB) = 3276152 +0:The total amount of wall time = 390.627958 +0:The maximum resident set size (KB) = 3277216 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -879,14 +881,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 295.577147 -0:The maximum resident set size (KB) = 1435776 +0:The total amount of wall time = 296.702808 +0:The maximum resident set size (KB) = 1436060 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -948,14 +950,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 198.337851 -0:The maximum resident set size (KB) = 1453396 +0:The total amount of wall time = 194.340921 +0:The maximum resident set size (KB) = 1453628 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1008,14 +1010,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 349.597925 -0:The maximum resident set size (KB) = 2780652 +0:The total amount of wall time = 351.663577 +0:The maximum resident set size (KB) = 2780476 Test 015 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1067,14 +1069,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK -0:The total amount of wall time = 302.597149 -0:The maximum resident set size (KB) = 1454940 +0:The total amount of wall time = 302.094764 +0:The maximum resident set size (KB) = 1454080 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1136,14 +1138,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 251.790780 -0:The maximum resident set size (KB) = 1457044 +0:The total amount of wall time = 258.620349 +0:The maximum resident set size (KB) = 1457048 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1193,14 +1195,14 @@ Checking test 018 cpld_control_c48 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 = 609.571758 -0:The maximum resident set size (KB) = 2586800 +0:The total amount of wall time = 608.000449 +0:The maximum resident set size (KB) = 2586828 Test 018 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1250,14 +1252,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 162.965347 -0:The maximum resident set size (KB) = 2602612 +0:The total amount of wall time = 162.917324 +0:The maximum resident set size (KB) = 2602764 Test 019 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1307,15 +1309,275 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -0:The total amount of wall time = 85.380411 -0:The maximum resident set size (KB) = 2019952 +0:The total amount of wall time = 85.295736 +0:The maximum resident set size (KB) = 2020076 Test 020 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_flake -Checking test 021 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_control_pdlib_p8 +Checking test 021 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1185.831804 +0:The maximum resident set size (KB) = 1498448 + +Test 021 cpld_control_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_restart_pdlib_p8 +Checking test 022 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 560.159994 +0:The maximum resident set size (KB) = 679240 + +Test 022 cpld_restart_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_mpi_pdlib_p8 +Checking test 023 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1077.911910 +0:The maximum resident set size (KB) = 1472952 + +Test 023 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_pdlib_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/cpld_debug_pdlib_p8 +Checking test 024 cpld_debug_pdlib_p8 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 = 1491.874828 +0:The maximum resident set size (KB) = 1514916 + +Test 024 cpld_debug_pdlib_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_flake +Checking test 025 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1325,15 +1587,15 @@ Checking test 021 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 217.647145 -0:The maximum resident set size (KB) = 501448 +0:The total amount of wall time = 225.123089 +0:The maximum resident set size (KB) = 501400 -Test 021 control_flake PASS +Test 025 control_flake PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_CubedSphereGrid +Checking test 026 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1359,29 +1621,29 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.366063 -0:The maximum resident set size (KB) = 454624 +0:The total amount of wall time = 142.782673 +0:The maximum resident set size (KB) = 454612 -Test 022 control_CubedSphereGrid PASS +Test 026 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_parallel -Checking test 023 control_CubedSphereGrid_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_CubedSphereGrid_parallel +Checking test 027 control_CubedSphereGrid_parallel 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 -0:The total amount of wall time = 139.906136 -0:The maximum resident set size (KB) = 454520 +0:The total amount of wall time = 140.343807 +0:The maximum resident set size (KB) = 454536 -Test 023 control_CubedSphereGrid_parallel PASS +Test 027 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_latlon -Checking test 024 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_latlon +Checking test 028 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1653,15 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.709422 -0:The maximum resident set size (KB) = 454584 +0:The total amount of wall time = 146.642761 +0:The maximum resident set size (KB) = 454600 -Test 024 control_latlon PASS +Test 028 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel -Checking test 025 control_wrtGauss_netcdf_parallel results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_wrtGauss_netcdf_parallel +Checking test 029 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -1409,15 +1671,15 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 149.238871 -0:The maximum resident set size (KB) = 454604 +0:The total amount of wall time = 149.728015 +0:The maximum resident set size (KB) = 454640 -Test 025 control_wrtGauss_netcdf_parallel PASS +Test 029 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c48 -Checking test 026 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_c48 +Checking test 030 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1455,15 +1717,15 @@ Checking test 026 control_c48 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 = 441.114330 -0:The maximum resident set size (KB) = 634276 +0:The total amount of wall time = 444.557091 +0:The maximum resident set size (KB) = 634268 -Test 026 control_c48 PASS +Test 030 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c192 -Checking test 027 control_c192 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_c192 +Checking test 031 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1473,15 +1735,15 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 592.672442 -0:The maximum resident set size (KB) = 560248 +0:The total amount of wall time = 593.497852 +0:The maximum resident set size (KB) = 560280 -Test 027 control_c192 PASS +Test 031 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384 -Checking test 028 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_c384 +Checking test 032 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1491,15 +1753,15 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 592.928324 -0:The maximum resident set size (KB) = 900432 +0:The total amount of wall time = 589.804278 +0:The maximum resident set size (KB) = 899960 -Test 028 control_c384 PASS +Test 032 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_c384gdas -Checking test 029 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_c384gdas +Checking test 033 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1541,15 +1803,15 @@ Checking test 029 control_c384gdas 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 = 516.649977 -0:The maximum resident set size (KB) = 1028888 +0:The total amount of wall time = 522.525632 +0:The maximum resident set size (KB) = 1027792 -Test 029 control_c384gdas PASS +Test 033 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy -Checking test 030 control_stochy results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_stochy +Checking test 034 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1559,29 +1821,29 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.282045 -0:The maximum resident set size (KB) = 459416 +0:The total amount of wall time = 98.033181 +0:The maximum resident set size (KB) = 459380 -Test 030 control_stochy PASS +Test 034 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_restart -Checking test 031 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_stochy_restart +Checking test 035 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 53.448086 -0:The maximum resident set size (KB) = 227948 +0:The total amount of wall time = 52.654603 +0:The maximum resident set size (KB) = 227740 -Test 031 control_stochy_restart PASS +Test 035 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp -Checking test 032 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_lndp +Checking test 036 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1591,15 +1853,15 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.827000 -0:The maximum resident set size (KB) = 459200 +0:The total amount of wall time = 88.888632 +0:The maximum resident set size (KB) = 459464 -Test 032 control_lndp PASS +Test 036 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr4 -Checking test 033 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_iovr4 +Checking test 037 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1613,15 +1875,15 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.991596 -0:The maximum resident set size (KB) = 454532 +0:The total amount of wall time = 147.891084 +0:The maximum resident set size (KB) = 454548 -Test 033 control_iovr4 PASS +Test 037 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_iovr5 -Checking test 034 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_iovr5 +Checking test 038 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1635,15 +1897,15 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 150.452526 -0:The maximum resident set size (KB) = 454496 +0:The total amount of wall time = 148.652214 +0:The maximum resident set size (KB) = 454444 -Test 034 control_iovr5 PASS +Test 038 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8 -Checking test 035 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8 +Checking test 039 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1689,15 +1951,15 @@ Checking test 035 control_p8 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 = 182.205472 -0:The maximum resident set size (KB) = 1423928 +0:The total amount of wall time = 181.659267 +0:The maximum resident set size (KB) = 1423980 -Test 035 control_p8 PASS +Test 039 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_p8 -Checking test 036 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_restart_p8 +Checking test 040 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1735,15 +1997,15 @@ Checking test 036 control_restart_p8 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 = 96.626032 -0:The maximum resident set size (KB) = 582132 +0:The total amount of wall time = 96.126148 +0:The maximum resident set size (KB) = 582092 -Test 036 control_restart_p8 PASS +Test 040 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_qr_p8 -Checking test 037 control_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_qr_p8 +Checking test 041 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1789,15 +2051,15 @@ Checking test 037 control_qr_p8 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 = 184.088698 -0:The maximum resident set size (KB) = 1427616 +0:The total amount of wall time = 182.095223 +0:The maximum resident set size (KB) = 1427672 -Test 037 control_qr_p8 PASS +Test 041 control_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_restart_qr_p8 -Checking test 038 control_restart_qr_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_restart_qr_p8 +Checking test 042 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1835,15 +2097,15 @@ Checking test 038 control_restart_qr_p8 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 = 99.706604 -0:The maximum resident set size (KB) = 597216 +0:The total amount of wall time = 99.990371 +0:The maximum resident set size (KB) = 597148 -Test 038 control_restart_qr_p8 PASS +Test 042 control_restart_qr_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_decomp_p8 -Checking test 039 control_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_decomp_p8 +Checking test 043 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1885,15 +2147,15 @@ Checking test 039 control_decomp_p8 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 = 190.475383 -0:The maximum resident set size (KB) = 1417728 +0:The total amount of wall time = 186.460473 +0:The maximum resident set size (KB) = 1418040 -Test 039 control_decomp_p8 PASS +Test 043 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_2threads_p8 -Checking test 040 control_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_2threads_p8 +Checking test 044 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1935,15 +2197,15 @@ Checking test 040 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.161166 -0:The maximum resident set size (KB) = 1509260 +0:The total amount of wall time = 168.016802 +0:The maximum resident set size (KB) = 1509440 -Test 040 control_2threads_p8 PASS +Test 044 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_lndp -Checking test 041 control_p8_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8_lndp +Checking test 045 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1961,15 +2223,15 @@ Checking test 041 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.855857 -0:The maximum resident set size (KB) = 1424216 +0:The total amount of wall time = 335.430716 +0:The maximum resident set size (KB) = 1424212 -Test 041 control_p8_lndp PASS +Test 045 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_rrtmgp -Checking test 042 control_p8_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8_rrtmgp +Checking test 046 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2015,15 +2277,15 @@ Checking test 042 control_p8_rrtmgp 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 = 254.926464 -0:The maximum resident set size (KB) = 1480576 +0:The total amount of wall time = 254.952212 +0:The maximum resident set size (KB) = 1480612 -Test 042 control_p8_rrtmgp PASS +Test 046 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_mynn -Checking test 043 control_p8_mynn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8_mynn +Checking test 047 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2069,15 +2331,15 @@ Checking test 043 control_p8_mynn 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.673954 -0:The maximum resident set size (KB) = 1428428 +0:The total amount of wall time = 180.761403 +0:The maximum resident set size (KB) = 1428456 -Test 043 control_p8_mynn PASS +Test 047 control_p8_mynn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/merra2_thompson -Checking test 044 merra2_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/merra2_thompson +Checking test 048 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2123,15 +2385,15 @@ Checking test 044 merra2_thompson 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 = 207.735299 -0:The maximum resident set size (KB) = 1429944 +0:The total amount of wall time = 207.031788 +0:The maximum resident set size (KB) = 1429948 -Test 044 merra2_thompson PASS +Test 048 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control -Checking test 045 regional_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_control +Checking test 049 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2141,29 +2403,29 @@ Checking test 045 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 342.263461 -0:The maximum resident set size (KB) = 605068 +0:The total amount of wall time = 347.078428 +0:The maximum resident set size (KB) = 605048 -Test 045 regional_control PASS +Test 049 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart -Checking test 046 regional_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_restart +Checking test 050 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 176.774690 -0:The maximum resident set size (KB) = 594372 +0:The total amount of wall time = 175.050514 +0:The maximum resident set size (KB) = 594376 -Test 046 regional_restart PASS +Test 050 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_qr -Checking test 047 regional_control_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_control_qr +Checking test 051 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2173,29 +2435,29 @@ Checking test 047 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 343.043390 -0:The maximum resident set size (KB) = 605020 +0:The total amount of wall time = 341.186914 +0:The maximum resident set size (KB) = 605028 -Test 047 regional_control_qr PASS +Test 051 regional_control_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_restart_qr -Checking test 048 regional_restart_qr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_restart_qr +Checking test 052 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 175.499656 -0:The maximum resident set size (KB) = 594360 +0:The total amount of wall time = 174.847333 +0:The maximum resident set size (KB) = 594324 -Test 048 regional_restart_qr PASS +Test 052 regional_restart_qr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_decomp -Checking test 049 regional_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_decomp +Checking test 053 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2205,15 +2467,15 @@ Checking test 049 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 363.507975 -0:The maximum resident set size (KB) = 598972 +0:The total amount of wall time = 364.288665 +0:The maximum resident set size (KB) = 598948 -Test 049 regional_decomp PASS +Test 053 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2threads -Checking test 050 regional_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_2threads +Checking test 054 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2223,44 +2485,44 @@ Checking test 050 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 202.640040 -0:The maximum resident set size (KB) = 611844 +0:The total amount of wall time = 210.216405 +0:The maximum resident set size (KB) = 611840 -Test 050 regional_2threads PASS +Test 054 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_noquilt -Checking test 051 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_noquilt +Checking test 055 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 364.602808 -0:The maximum resident set size (KB) = 599564 +0:The total amount of wall time = 363.763442 +0:The maximum resident set size (KB) = 599496 -Test 051 regional_noquilt PASS +Test 055 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_netcdf_parallel -Checking test 052 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_netcdf_parallel +Checking test 056 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 341.209017 -0:The maximum resident set size (KB) = 597016 +0:The total amount of wall time = 341.342401 +0:The maximum resident set size (KB) = 596976 -Test 052 regional_netcdf_parallel PASS +Test 056 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_2dwrtdecomp -Checking test 053 regional_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_2dwrtdecomp +Checking test 057 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2270,15 +2532,15 @@ Checking test 053 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 341.811660 -0:The maximum resident set size (KB) = 605080 +0:The total amount of wall time = 345.200643 +0:The maximum resident set size (KB) = 605060 -Test 053 regional_2dwrtdecomp PASS +Test 057 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_wofs -Checking test 054 regional_wofs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_wofs +Checking test 058 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2288,15 +2550,15 @@ Checking test 054 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.573325 -0:The maximum resident set size (KB) = 276128 +0:The total amount of wall time = 426.718399 +0:The maximum resident set size (KB) = 276056 -Test 054 regional_wofs PASS +Test 058 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control -Checking test 055 rap_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control +Checking test 059 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2342,15 +2604,15 @@ Checking test 055 rap_control 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 = 475.908364 -0:The maximum resident set size (KB) = 823820 +0:The total amount of wall time = 483.918787 +0:The maximum resident set size (KB) = 823788 -Test 055 rap_control PASS +Test 059 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb -Checking test 056 regional_spp_sppt_shum_skeb results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_spp_sppt_shum_skeb +Checking test 060 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2360,15 +2622,15 @@ Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 261.915424 -0:The maximum resident set size (KB) = 953640 +0:The total amount of wall time = 262.539896 +0:The maximum resident set size (KB) = 953708 -Test 056 regional_spp_sppt_shum_skeb PASS +Test 060 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_decomp -Checking test 057 rap_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_decomp +Checking test 061 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2414,15 +2676,15 @@ Checking test 057 rap_decomp 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 = 505.879688 -0:The maximum resident set size (KB) = 822812 +0:The total amount of wall time = 503.475774 +0:The maximum resident set size (KB) = 822736 -Test 057 rap_decomp PASS +Test 061 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads -Checking test 058 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_2threads +Checking test 062 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2468,15 +2730,15 @@ Checking test 058 rap_2threads 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 = 461.028591 -0:The maximum resident set size (KB) = 894188 +0:The total amount of wall time = 463.922715 +0:The maximum resident set size (KB) = 893980 -Test 058 rap_2threads PASS +Test 062 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart -Checking test 059 rap_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_restart +Checking test 063 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2514,15 +2776,15 @@ Checking test 059 rap_restart 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 = 243.402879 -0:The maximum resident set size (KB) = 571812 +0:The total amount of wall time = 243.470041 +0:The maximum resident set size (KB) = 571800 -Test 059 rap_restart PASS +Test 063 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff -Checking test 060 rap_sfcdiff results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_sfcdiff +Checking test 064 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2568,15 +2830,15 @@ Checking test 060 rap_sfcdiff 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 = 483.628090 -0:The maximum resident set size (KB) = 823752 +0:The total amount of wall time = 486.293220 +0:The maximum resident set size (KB) = 823848 -Test 060 rap_sfcdiff PASS +Test 064 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_decomp -Checking test 061 rap_sfcdiff_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_sfcdiff_decomp +Checking test 065 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2622,15 +2884,15 @@ Checking test 061 rap_sfcdiff_decomp 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 = 504.956544 -0:The maximum resident set size (KB) = 822720 +0:The total amount of wall time = 506.915150 +0:The maximum resident set size (KB) = 822600 -Test 061 rap_sfcdiff_decomp PASS +Test 065 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_restart -Checking test 062 rap_sfcdiff_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_sfcdiff_restart +Checking test 066 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2668,15 +2930,15 @@ Checking test 062 rap_sfcdiff_restart 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 = 355.157372 -0:The maximum resident set size (KB) = 571384 +0:The total amount of wall time = 356.215740 +0:The maximum resident set size (KB) = 571500 -Test 062 rap_sfcdiff_restart PASS +Test 066 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control -Checking test 063 hrrr_control results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control +Checking test 067 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2722,15 +2984,15 @@ Checking test 063 hrrr_control 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 = 445.184360 -0:The maximum resident set size (KB) = 820916 +0:The total amount of wall time = 445.654098 +0:The maximum resident set size (KB) = 821032 -Test 063 hrrr_control PASS +Test 067 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp -Checking test 064 hrrr_control_decomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_decomp +Checking test 068 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2776,15 +3038,15 @@ Checking test 064 hrrr_control_decomp 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 = 469.636942 -0:The maximum resident set size (KB) = 820688 +0:The total amount of wall time = 459.765621 +0:The maximum resident set size (KB) = 820656 -Test 064 hrrr_control_decomp PASS +Test 068 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads -Checking test 065 hrrr_control_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_2threads +Checking test 069 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2830,29 +3092,29 @@ Checking test 065 hrrr_control_2threads 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 = 505.516341 -0:The maximum resident set size (KB) = 890720 +0:The total amount of wall time = 503.486061 +0:The maximum resident set size (KB) = 895252 -Test 065 hrrr_control_2threads PASS +Test 069 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart -Checking test 066 hrrr_control_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_restart +Checking test 070 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 329.995620 -0:The maximum resident set size (KB) = 567936 +0:The total amount of wall time = 326.713131 +0:The maximum resident set size (KB) = 567604 -Test 066 hrrr_control_restart PASS +Test 070 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta -Checking test 067 rrfs_v1beta results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_v1beta +Checking test 071 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2898,15 +3160,15 @@ Checking test 067 rrfs_v1beta 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 = 468.357238 -0:The maximum resident set size (KB) = 819760 +0:The total amount of wall time = 475.870592 +0:The maximum resident set size (KB) = 819792 -Test 067 rrfs_v1beta PASS +Test 071 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl -Checking test 068 rrfs_v1nssl results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_v1nssl +Checking test 072 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2920,15 +3182,15 @@ Checking test 068 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 585.515821 -0:The maximum resident set size (KB) = 508904 +0:The total amount of wall time = 588.103158 +0:The maximum resident set size (KB) = 508712 -Test 068 rrfs_v1nssl PASS +Test 072 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1nssl_nohailnoccn -Checking test 069 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_v1nssl_nohailnoccn +Checking test 073 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2942,15 +3204,15 @@ Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 564.249771 -0:The maximum resident set size (KB) = 503104 +0:The total amount of wall time = 567.607634 +0:The maximum resident set size (KB) = 503028 -Test 069 rrfs_v1nssl_nohailnoccn PASS +Test 073 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm -Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_smoke_conus13km_hrrr_warm +Checking test 074 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2958,15 +3220,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 155.984607 -0:The maximum resident set size (KB) = 671108 +0:The total amount of wall time = 154.810567 +0:The maximum resident set size (KB) = 671084 -Test 070 rrfs_smoke_conus13km_hrrr_warm PASS +Test 074 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 075 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2974,15 +3236,15 @@ Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 96.973312 -0:The maximum resident set size (KB) = 693016 +0:The total amount of wall time = 96.480439 +0:The maximum resident set size (KB) = 693176 -Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 075 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm -Checking test 072 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_conus13km_hrrr_warm +Checking test 076 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2990,15 +3252,15 @@ Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 139.530450 -0:The maximum resident set size (KB) = 667476 +0:The total amount of wall time = 141.811428 +0:The maximum resident set size (KB) = 667400 -Test 072 rrfs_conus13km_hrrr_warm PASS +Test 076 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_radar_tten_warm -Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_smoke_conus13km_radar_tten_warm +Checking test 077 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3006,27 +3268,27 @@ Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 158.134007 -0:The maximum resident set size (KB) = 677612 +0:The total amount of wall time = 160.416520 +0:The maximum resident set size (KB) = 677620 -Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 077 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 078 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 72.897798 -0:The maximum resident set size (KB) = 640308 +0:The total amount of wall time = 73.270814 +0:The maximum resident set size (KB) = 640476 -Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 078 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg -Checking test 075 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_csawmg +Checking test 079 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3036,15 +3298,15 @@ Checking test 075 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.731365 -0:The maximum resident set size (KB) = 528140 +0:The total amount of wall time = 401.714692 +0:The maximum resident set size (KB) = 528032 -Test 075 control_csawmg PASS +Test 079 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt -Checking test 076 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_csawmgt +Checking test 080 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3054,15 +3316,15 @@ Checking test 076 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 395.482771 -0:The maximum resident set size (KB) = 528656 +0:The total amount of wall time = 397.715817 +0:The maximum resident set size (KB) = 528608 -Test 076 control_csawmgt PASS +Test 080 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras -Checking test 077 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_ras +Checking test 081 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3072,27 +3334,27 @@ Checking test 077 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 209.833440 -0:The maximum resident set size (KB) = 491380 +0:The total amount of wall time = 209.329379 +0:The maximum resident set size (KB) = 491352 -Test 077 control_ras PASS +Test 081 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam -Checking test 078 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_wam +Checking test 082 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.995007 -0:The maximum resident set size (KB) = 207020 +0:The total amount of wall time = 131.082647 +0:The maximum resident set size (KB) = 206888 -Test 078 control_wam PASS +Test 082 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_faster -Checking test 079 control_p8_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8_faster +Checking test 083 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3138,15 +3400,15 @@ Checking test 079 control_p8_faster 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 = 174.071888 -0:The maximum resident set size (KB) = 1423728 +0:The total amount of wall time = 172.281952 +0:The maximum resident set size (KB) = 1423828 -Test 079 control_p8_faster PASS +Test 083 control_p8_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_control_faster -Checking test 080 regional_control_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_control_faster +Checking test 084 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3156,57 +3418,57 @@ Checking test 080 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.383787 -0:The maximum resident set size (KB) = 604840 +0:The total amount of wall time = 321.338493 +0:The maximum resident set size (KB) = 605000 -Test 080 regional_control_faster PASS +Test 084 regional_control_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 875.773072 -0:The maximum resident set size (KB) = 704324 +0:The total amount of wall time = 878.378211 +0:The maximum resident set size (KB) = 704148 -Test 081 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 085 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 500.158979 -0:The maximum resident set size (KB) = 723212 +0:The total amount of wall time = 500.557541 +0:The maximum resident set size (KB) = 723920 -Test 082 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 086 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_conus13km_hrrr_warm_debug -Checking test 083 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_conus13km_hrrr_warm_debug +Checking test 087 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 786.866811 -0:The maximum resident set size (KB) = 697580 +0:The total amount of wall time = 783.250416 +0:The maximum resident set size (KB) = 697412 -Test 083 rrfs_conus13km_hrrr_warm_debug PASS +Test 087 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_CubedSphereGrid_debug -Checking test 084 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_CubedSphereGrid_debug +Checking test 088 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3232,349 +3494,349 @@ Checking test 084 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 155.809745 -0:The maximum resident set size (KB) = 617944 +0:The total amount of wall time = 154.942408 +0:The maximum resident set size (KB) = 617908 -Test 084 control_CubedSphereGrid_debug PASS +Test 088 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wrtGauss_netcdf_parallel_debug -Checking test 085 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_wrtGauss_netcdf_parallel_debug +Checking test 089 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.046099 -0:The maximum resident set size (KB) = 615432 +0:The total amount of wall time = 156.059111 +0:The maximum resident set size (KB) = 615508 -Test 085 control_wrtGauss_netcdf_parallel_debug PASS +Test 089 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_stochy_debug -Checking test 086 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_stochy_debug +Checking test 090 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.717880 -0:The maximum resident set size (KB) = 620872 +0:The total amount of wall time = 174.989463 +0:The maximum resident set size (KB) = 621064 -Test 086 control_stochy_debug PASS +Test 090 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_lndp_debug -Checking test 087 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_lndp_debug +Checking test 091 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.344963 -0:The maximum resident set size (KB) = 620424 +0:The total amount of wall time = 156.727508 +0:The maximum resident set size (KB) = 620500 -Test 087 control_lndp_debug PASS +Test 091 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmg_debug -Checking test 088 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_csawmg_debug +Checking test 092 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 248.577603 -0:The maximum resident set size (KB) = 666760 +0:The total amount of wall time = 249.744930 +0:The maximum resident set size (KB) = 666832 -Test 088 control_csawmg_debug PASS +Test 092 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_csawmgt_debug -Checking test 089 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_csawmgt_debug +Checking test 093 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 245.727035 -0:The maximum resident set size (KB) = 667684 +0:The total amount of wall time = 244.472080 +0:The maximum resident set size (KB) = 667764 -Test 089 control_csawmgt_debug PASS +Test 093 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_ras_debug -Checking test 090 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_ras_debug +Checking test 094 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.757762 -0:The maximum resident set size (KB) = 630012 +0:The total amount of wall time = 159.503924 +0:The maximum resident set size (KB) = 630180 -Test 090 control_ras_debug PASS +Test 094 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_diag_debug -Checking test 091 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_diag_debug +Checking test 095 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.915743 -0:The maximum resident set size (KB) = 675352 +0:The total amount of wall time = 160.870680 +0:The maximum resident set size (KB) = 675216 -Test 091 control_diag_debug PASS +Test 095 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_debug_p8 -Checking test 092 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_debug_p8 +Checking test 096 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 174.495032 -0:The maximum resident set size (KB) = 1443264 +0:The total amount of wall time = 177.025886 +0:The maximum resident set size (KB) = 1443340 -Test 092 control_debug_p8 PASS +Test 096 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_debug -Checking test 093 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_debug +Checking test 097 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 1037.010690 -0:The maximum resident set size (KB) = 626404 +0:The total amount of wall time = 1032.660079 +0:The maximum resident set size (KB) = 626288 -Test 093 regional_debug PASS +Test 097 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug -Checking test 094 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control_debug +Checking test 098 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.272780 -0:The maximum resident set size (KB) = 987188 +0:The total amount of wall time = 285.171947 +0:The maximum resident set size (KB) = 986996 -Test 094 rap_control_debug PASS +Test 098 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug -Checking test 095 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_debug +Checking test 099 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 280.144032 -0:The maximum resident set size (KB) = 983132 +0:The total amount of wall time = 279.843193 +0:The maximum resident set size (KB) = 983084 -Test 095 hrrr_control_debug PASS +Test 099 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_drag_suite_debug -Checking test 096 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_unified_drag_suite_debug +Checking test 100 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.819120 -0:The maximum resident set size (KB) = 987260 +0:The total amount of wall time = 286.513451 +0:The maximum resident set size (KB) = 987136 -Test 096 rap_unified_drag_suite_debug PASS +Test 100 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_diag_debug -Checking test 097 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_diag_debug +Checking test 101 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 297.122933 -0:The maximum resident set size (KB) = 1070236 +0:The total amount of wall time = 297.720731 +0:The maximum resident set size (KB) = 1070140 -Test 097 rap_diag_debug PASS +Test 101 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_cires_ugwp_debug -Checking test 098 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_cires_ugwp_debug +Checking test 102 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.036173 -0:The maximum resident set size (KB) = 986272 +0:The total amount of wall time = 291.880471 +0:The maximum resident set size (KB) = 986124 -Test 098 rap_cires_ugwp_debug PASS +Test 102 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_unified_ugwp_debug -Checking test 099 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_unified_ugwp_debug +Checking test 103 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.586870 -0:The maximum resident set size (KB) = 987096 +0:The total amount of wall time = 292.057575 +0:The maximum resident set size (KB) = 987232 -Test 099 rap_unified_ugwp_debug PASS +Test 103 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_lndp_debug -Checking test 100 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_lndp_debug +Checking test 104 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.113313 -0:The maximum resident set size (KB) = 987892 +0:The total amount of wall time = 288.732455 +0:The maximum resident set size (KB) = 987644 -Test 100 rap_lndp_debug PASS +Test 104 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_progcld_thompson_debug -Checking test 101 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_progcld_thompson_debug +Checking test 105 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.257467 -0:The maximum resident set size (KB) = 986992 +0:The total amount of wall time = 285.551102 +0:The maximum resident set size (KB) = 986916 -Test 101 rap_progcld_thompson_debug PASS +Test 105 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_debug -Checking test 102 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_noah_debug +Checking test 106 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.856384 -0:The maximum resident set size (KB) = 984956 +0:The total amount of wall time = 280.607130 +0:The maximum resident set size (KB) = 984944 -Test 102 rap_noah_debug PASS +Test 106 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_sfcdiff_debug -Checking test 103 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_sfcdiff_debug +Checking test 107 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.541229 -0:The maximum resident set size (KB) = 986996 +0:The total amount of wall time = 285.819523 +0:The maximum resident set size (KB) = 986868 -Test 103 rap_sfcdiff_debug PASS +Test 107 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 104 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 108 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.497753 -0:The maximum resident set size (KB) = 985732 +0:The total amount of wall time = 470.713686 +0:The maximum resident set size (KB) = 985756 -Test 104 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 108 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rrfs_v1beta_debug -Checking test 105 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rrfs_v1beta_debug +Checking test 109 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 281.870448 -0:The maximum resident set size (KB) = 982844 +0:The total amount of wall time = 281.564819 +0:The maximum resident set size (KB) = 982912 -Test 105 rrfs_v1beta_debug PASS +Test 109 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_clm_lake_debug -Checking test 106 rap_clm_lake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_clm_lake_debug +Checking test 110 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 350.769501 -0:The maximum resident set size (KB) = 989964 +0:The total amount of wall time = 349.743127 +0:The maximum resident set size (KB) = 989832 -Test 106 rap_clm_lake_debug PASS +Test 110 rap_clm_lake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_flake_debug -Checking test 107 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_flake_debug +Checking test 111 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.142000 -0:The maximum resident set size (KB) = 987216 +0:The total amount of wall time = 287.616541 +0:The maximum resident set size (KB) = 987188 -Test 107 rap_flake_debug PASS +Test 111 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_wam_debug -Checking test 108 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_wam_debug +Checking test 112 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 289.164381 -0:The maximum resident set size (KB) = 235724 +0:The total amount of wall time = 290.579521 +0:The maximum resident set size (KB) = 235744 -Test 108 control_wam_debug PASS +Test 112 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 113 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3584,15 +3846,15 @@ Checking test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 248.765865 -0:The maximum resident set size (KB) = 855404 +0:The total amount of wall time = 246.921383 +0:The maximum resident set size (KB) = 855240 -Test 109 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 113 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn32_phy32 -Checking test 110 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control_dyn32_phy32 +Checking test 114 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3638,15 +3900,15 @@ Checking test 110 rap_control_dyn32_phy32 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 = 400.789003 -0:The maximum resident set size (KB) = 708264 +0:The total amount of wall time = 405.235070 +0:The maximum resident set size (KB) = 708176 -Test 110 rap_control_dyn32_phy32 PASS +Test 114 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_dyn32_phy32 -Checking test 111 hrrr_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_dyn32_phy32 +Checking test 115 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3692,15 +3954,15 @@ Checking test 111 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 202.224699 -0:The maximum resident set size (KB) = 707924 +0:The total amount of wall time = 199.448444 +0:The maximum resident set size (KB) = 707808 -Test 111 hrrr_control_dyn32_phy32 PASS +Test 115 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_2threads_dyn32_phy32 -Checking test 112 rap_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_2threads_dyn32_phy32 +Checking test 116 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3746,15 +4008,15 @@ Checking test 112 rap_2threads_dyn32_phy32 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.970502 -0:The maximum resident set size (KB) = 756588 +0:The total amount of wall time = 386.214578 +0:The maximum resident set size (KB) = 756796 -Test 112 rap_2threads_dyn32_phy32 PASS +Test 116 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_2threads_dyn32_phy32 -Checking test 113 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_2threads_dyn32_phy32 +Checking test 117 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3800,15 +4062,15 @@ Checking test 113 hrrr_control_2threads_dyn32_phy32 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 = 277.308917 -0:The maximum resident set size (KB) = 752108 +0:The total amount of wall time = 274.444613 +0:The maximum resident set size (KB) = 753404 -Test 113 hrrr_control_2threads_dyn32_phy32 PASS +Test 117 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_decomp_dyn32_phy32 -Checking test 114 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_decomp_dyn32_phy32 +Checking test 118 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3854,15 +4116,15 @@ Checking test 114 hrrr_control_decomp_dyn32_phy32 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 = 215.848961 -0:The maximum resident set size (KB) = 705964 +0:The total amount of wall time = 209.817429 +0:The maximum resident set size (KB) = 705916 -Test 114 hrrr_control_decomp_dyn32_phy32 PASS +Test 118 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_restart_dyn32_phy32 -Checking test 115 rap_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_restart_dyn32_phy32 +Checking test 119 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3900,29 +4162,29 @@ Checking test 115 rap_restart_dyn32_phy32 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 = 291.572354 -0:The maximum resident set size (KB) = 545144 +0:The total amount of wall time = 296.146013 +0:The maximum resident set size (KB) = 545288 -Test 115 rap_restart_dyn32_phy32 PASS +Test 119 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_restart_dyn32_phy32 -Checking test 116 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_restart_dyn32_phy32 +Checking test 120 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 105.757994 -0:The maximum resident set size (KB) = 536696 +0:The total amount of wall time = 103.763085 +0:The maximum resident set size (KB) = 536668 -Test 116 hrrr_control_restart_dyn32_phy32 PASS +Test 120 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32 -Checking test 117 rap_control_dyn64_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control_dyn64_phy32 +Checking test 121 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3968,82 +4230,82 @@ Checking test 117 rap_control_dyn64_phy32 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 = 273.595358 -0:The maximum resident set size (KB) = 730656 +0:The total amount of wall time = 271.604115 +0:The maximum resident set size (KB) = 730616 -Test 117 rap_control_dyn64_phy32 PASS +Test 121 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_debug_dyn32_phy32 -Checking test 118 rap_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control_debug_dyn32_phy32 +Checking test 122 rap_control_debug_dyn32_phy32 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.434840 -0:The maximum resident set size (KB) = 872352 +0:The total amount of wall time = 283.535490 +0:The maximum resident set size (KB) = 872264 -Test 118 rap_control_debug_dyn32_phy32 PASS +Test 122 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hrrr_control_debug_dyn32_phy32 -Checking test 119 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hrrr_control_debug_dyn32_phy32 +Checking test 123 hrrr_control_debug_dyn32_phy32 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.619384 -0:The maximum resident set size (KB) = 871072 +0:The total amount of wall time = 275.746867 +0:The maximum resident set size (KB) = 871032 -Test 119 hrrr_control_debug_dyn32_phy32 PASS +Test 123 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/rap_control_dyn64_phy32_debug -Checking test 120 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/rap_control_dyn64_phy32_debug +Checking test 124 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.399337 -0:The maximum resident set size (KB) = 893004 +0:The total amount of wall time = 288.197406 +0:The maximum resident set size (KB) = 892876 -Test 120 rap_control_dyn64_phy32_debug PASS +Test 124 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm -Checking test 121 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_atm +Checking test 125 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 259.521982 -0:The maximum resident set size (KB) = 743088 +0:The total amount of wall time = 260.300411 +0:The maximum resident set size (KB) = 743108 -Test 121 hafs_regional_atm PASS +Test 125 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_thompson_gfdlsf -Checking test 122 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_atm_thompson_gfdlsf +Checking test 126 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 343.523925 -0:The maximum resident set size (KB) = 1101216 +0:The total amount of wall time = 295.663644 +0:The maximum resident set size (KB) = 1099572 -Test 122 hafs_regional_atm_thompson_gfdlsf PASS +Test 126 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn -Checking test 123 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_atm_ocn +Checking test 127 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4051,15 +4313,15 @@ Checking test 123 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 455.199375 -0:The maximum resident set size (KB) = 743224 +0:The total amount of wall time = 483.341847 +0:The maximum resident set size (KB) = 743484 -Test 123 hafs_regional_atm_ocn PASS +Test 127 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_wav -Checking test 124 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_atm_wav +Checking test 128 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4067,15 +4329,15 @@ Checking test 124 hafs_regional_atm_wav 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 = 1074.359986 -0:The maximum resident set size (KB) = 772520 +0:The total amount of wall time = 1072.075737 +0:The maximum resident set size (KB) = 773212 -Test 124 hafs_regional_atm_wav PASS +Test 128 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_atm_ocn_wav -Checking test 125 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_atm_ocn_wav +Checking test 129 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4085,29 +4347,44 @@ Checking test 125 hafs_regional_atm_ocn_wav 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 = 1093.796132 -0:The maximum resident set size (KB) = 793076 +0:The total amount of wall time = 1188.795152 +0:The maximum resident set size (KB) = 792356 -Test 125 hafs_regional_atm_ocn_wav PASS +Test 129 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_1nest_atm -Checking test 126 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_1nest_atm +Checking test 130 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 376.707190 -0:The maximum resident set size (KB) = 301340 - -Test 126 hafs_regional_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_telescopic_2nests_atm -Checking test 127 hafs_regional_telescopic_2nests_atm results .... + 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 + +0:The total amount of wall time = 373.474548 +0:The maximum resident set size (KB) = 300700 + +Test 130 hafs_regional_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_telescopic_2nests_atm +Checking test 131 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4115,29 +4392,69 @@ Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 426.005482 -0:The maximum resident set size (KB) = 320976 +0:The total amount of wall time = 423.967646 +0:The maximum resident set size (KB) = 321080 -Test 127 hafs_regional_telescopic_2nests_atm PASS +Test 131 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_1nest_atm -Checking test 128 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_global_1nest_atm +Checking test 132 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 173.446271 -0:The maximum resident set size (KB) = 214684 - -Test 128 hafs_global_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_multiple_4nests_atm -Checking test 129 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + +0:The total amount of wall time = 171.085319 +0:The maximum resident set size (KB) = 214600 + +Test 132 hafs_global_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_global_multiple_4nests_atm +Checking test 133 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4153,16 +4470,80 @@ Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - -0:The total amount of wall time = 484.860707 -0:The maximum resident set size (KB) = 303488 - -Test 129 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_specified_moving_1nest_atm -Checking test 130 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 = 481.839231 +0:The maximum resident set size (KB) = 302932 + +Test 133 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_specified_moving_1nest_atm +Checking test 134 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4170,29 +4551,44 @@ Checking test 130 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 241.934138 -0:The maximum resident set size (KB) = 318996 +0:The total amount of wall time = 241.089390 +0:The maximum resident set size (KB) = 319068 -Test 130 hafs_regional_specified_moving_1nest_atm PASS +Test 134 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm -Checking test 131 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_storm_following_1nest_atm +Checking test 135 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -0:The total amount of wall time = 230.972152 -0:The maximum resident set size (KB) = 319144 - -Test 131 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... + 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 + +0:The total amount of wall time = 227.141387 +0:The maximum resident set size (KB) = 319240 + +Test 135 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_storm_following_1nest_atm_ocn +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4200,43 +4596,43 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 277.549806 -0:The maximum resident set size (KB) = 375332 +0:The total amount of wall time = 281.268341 +0:The maximum resident set size (KB) = 375612 -Test 132 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_global_storm_following_1nest_atm -Checking test 133 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_global_storm_following_1nest_atm +Checking test 137 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 70.505526 -0:The maximum resident set size (KB) = 233916 +0:The total amount of wall time = 66.963715 +0:The maximum resident set size (KB) = 234056 -Test 133 hafs_global_storm_following_1nest_atm PASS +Test 137 hafs_global_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 134 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.145788 -0:The maximum resident set size (KB) = 402076 +0:The total amount of wall time = 776.372009 +0:The maximum resident set size (KB) = 402400 -Test 134 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 139 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4246,162 +4642,162 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -0:The total amount of wall time = 786.860062 -0:The maximum resident set size (KB) = 427636 +0:The total amount of wall time = 729.729123 +0:The maximum resident set size (KB) = 427292 -Test 135 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 139 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn -Checking test 136 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_docn +Checking test 140 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 390.635766 -0:The maximum resident set size (KB) = 756580 +0:The total amount of wall time = 391.281295 +0:The maximum resident set size (KB) = 756208 -Test 136 hafs_regional_docn PASS +Test 140 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_docn_oisst -Checking test 137 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_docn_oisst +Checking test 141 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 481.252227 -0:The maximum resident set size (KB) = 736616 +0:The total amount of wall time = 392.474941 +0:The maximum resident set size (KB) = 736076 -Test 137 hafs_regional_docn_oisst PASS +Test 141 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/hafs_regional_datm_cdeps -Checking test 138 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/hafs_regional_datm_cdeps +Checking test 142 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1285.869506 -0:The maximum resident set size (KB) = 887928 +0:The total amount of wall time = 1282.394971 +0:The maximum resident set size (KB) = 887824 -Test 138 hafs_regional_datm_cdeps PASS +Test 142 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr -Checking test 139 datm_cdeps_control_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_control_cfsr +Checking test 143 datm_cdeps_control_cfsr 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 = 167.762009 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 168.128981 +0:The maximum resident set size (KB) = 727844 -Test 139 datm_cdeps_control_cfsr PASS +Test 143 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_restart_cfsr -Checking test 140 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_restart_cfsr +Checking test 144 datm_cdeps_restart_cfsr 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 = 100.779304 -0:The maximum resident set size (KB) = 704832 +0:The total amount of wall time = 100.137743 +0:The maximum resident set size (KB) = 715952 -Test 140 datm_cdeps_restart_cfsr PASS +Test 144 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_gefs -Checking test 141 datm_cdeps_control_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_control_gefs +Checking test 145 datm_cdeps_control_gefs 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 = 161.001626 +0:The total amount of wall time = 160.287762 0:The maximum resident set size (KB) = 607504 -Test 141 datm_cdeps_control_gefs PASS +Test 145 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_iau_gefs -Checking test 142 datm_cdeps_iau_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_iau_gefs +Checking test 146 datm_cdeps_iau_gefs 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 = 160.841932 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 164.906305 +0:The maximum resident set size (KB) = 607548 -Test 142 datm_cdeps_iau_gefs PASS +Test 146 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_stochy_gefs -Checking test 143 datm_cdeps_stochy_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_stochy_gefs +Checking test 147 datm_cdeps_stochy_gefs 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 = 160.108923 -0:The maximum resident set size (KB) = 607504 +0:The total amount of wall time = 164.398142 +0:The maximum resident set size (KB) = 607548 -Test 143 datm_cdeps_stochy_gefs PASS +Test 147 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_ciceC_cfsr -Checking test 144 datm_cdeps_ciceC_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_ciceC_cfsr +Checking test 148 datm_cdeps_ciceC_cfsr 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 = 169.530537 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 169.684032 +0:The maximum resident set size (KB) = 727808 -Test 144 datm_cdeps_ciceC_cfsr PASS +Test 148 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_cfsr -Checking test 145 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_bulk_cfsr +Checking test 149 datm_cdeps_bulk_cfsr 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 = 167.823598 -0:The maximum resident set size (KB) = 716676 +0:The total amount of wall time = 168.862475 +0:The maximum resident set size (KB) = 716752 -Test 145 datm_cdeps_bulk_cfsr PASS +Test 149 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_bulk_gefs -Checking test 146 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_bulk_gefs +Checking test 150 datm_cdeps_bulk_gefs 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 = 159.889454 -0:The maximum resident set size (KB) = 607512 +0:The total amount of wall time = 162.151744 +0:The maximum resident set size (KB) = 607548 -Test 146 datm_cdeps_bulk_gefs PASS +Test 150 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_cfsr -Checking test 147 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_mx025_cfsr +Checking test 151 datm_cdeps_mx025_cfsr 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 @@ -4409,15 +4805,15 @@ Checking test 147 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 429.997398 -0:The maximum resident set size (KB) = 514704 +0:The total amount of wall time = 431.789544 +0:The maximum resident set size (KB) = 514432 -Test 147 datm_cdeps_mx025_cfsr PASS +Test 151 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_mx025_gefs -Checking test 148 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_mx025_gefs +Checking test 152 datm_cdeps_mx025_gefs 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 @@ -4425,78 +4821,78 @@ Checking test 148 datm_cdeps_mx025_gefs 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 = 421.745325 -0:The maximum resident set size (KB) = 494900 +0:The total amount of wall time = 431.397427 +0:The maximum resident set size (KB) = 494780 -Test 148 datm_cdeps_mx025_gefs PASS +Test 152 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_multiple_files_cfsr -Checking test 149 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_multiple_files_cfsr +Checking test 153 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.930718 -0:The maximum resident set size (KB) = 716740 +0:The total amount of wall time = 161.917228 +0:The maximum resident set size (KB) = 727872 -Test 149 datm_cdeps_multiple_files_cfsr PASS +Test 153 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_3072x1536_cfsr -Checking test 150 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_3072x1536_cfsr +Checking test 154 datm_cdeps_3072x1536_cfsr 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.648702 -0:The maximum resident set size (KB) = 1941404 +0:The total amount of wall time = 269.555375 +0:The maximum resident set size (KB) = 1941196 -Test 150 datm_cdeps_3072x1536_cfsr PASS +Test 154 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_gfs -Checking test 151 datm_cdeps_gfs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_gfs +Checking test 155 datm_cdeps_gfs 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 = 269.067076 -0:The maximum resident set size (KB) = 1939416 +0:The total amount of wall time = 257.042430 +0:The maximum resident set size (KB) = 1910120 -Test 151 datm_cdeps_gfs PASS +Test 155 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_debug_cfsr -Checking test 152 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_debug_cfsr +Checking test 156 datm_cdeps_debug_cfsr 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 = 368.953988 -0:The maximum resident set size (KB) = 700612 +0:The total amount of wall time = 372.928428 +0:The maximum resident set size (KB) = 700572 -Test 152 datm_cdeps_debug_cfsr PASS +Test 156 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_control_cfsr_faster -Checking test 153 datm_cdeps_control_cfsr_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_control_cfsr_faster +Checking test 157 datm_cdeps_control_cfsr_faster 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.543653 -0:The maximum resident set size (KB) = 716736 +0:The total amount of wall time = 169.093132 +0:The maximum resident set size (KB) = 728208 -Test 153 datm_cdeps_control_cfsr_faster PASS +Test 157 datm_cdeps_control_cfsr_faster PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3 -Checking test 154 datm_cdeps_lnd_gswp3 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_lnd_gswp3 +Checking test 158 datm_cdeps_lnd_gswp3 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 @@ -4504,15 +4900,15 @@ Checking test 154 datm_cdeps_lnd_gswp3 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 = 10.719925 -0:The maximum resident set size (KB) = 208240 +0:The total amount of wall time = 10.820206 +0:The maximum resident set size (KB) = 208252 -Test 154 datm_cdeps_lnd_gswp3 PASS +Test 158 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/datm_cdeps_lnd_gswp3_rst -Checking test 155 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/datm_cdeps_lnd_gswp3_rst +Checking test 159 datm_cdeps_lnd_gswp3_rst 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 @@ -4520,15 +4916,15 @@ Checking test 155 datm_cdeps_lnd_gswp3_rst 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 = 16.301166 -0:The maximum resident set size (KB) = 216368 +0:The total amount of wall time = 15.916630 +0:The maximum resident set size (KB) = 212696 -Test 155 datm_cdeps_lnd_gswp3_rst PASS +Test 159 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_p8_atmlnd_sbs -Checking test 156 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_p8_atmlnd_sbs +Checking test 160 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4612,15 +5008,15 @@ Checking test 156 control_p8_atmlnd_sbs 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 = 234.579635 -0:The maximum resident set size (KB) = 1463216 +0:The total amount of wall time = 238.416036 +0:The maximum resident set size (KB) = 1463224 -Test 156 control_p8_atmlnd_sbs PASS +Test 160 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmwav_control_noaero_p8 -Checking test 157 atmwav_control_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/atmwav_control_noaero_p8 +Checking test 161 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4662,15 +5058,15 @@ Checking test 157 atmwav_control_noaero_p8 results .... Comparing 20210322.180000.out_grd.ww3 .........OK Comparing ufs.atmw.ww3.r.2021-03-22-64800 .........OK -0:The total amount of wall time = 98.686716 -0:The maximum resident set size (KB) = 1434600 +0:The total amount of wall time = 101.346493 +0:The maximum resident set size (KB) = 1434636 -Test 157 atmwav_control_noaero_p8 PASS +Test 161 atmwav_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/control_atmwav -Checking test 158 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/control_atmwav +Checking test 162 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4713,15 +5109,15 @@ Checking test 158 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 101.144680 -0:The maximum resident set size (KB) = 475312 +0:The total amount of wall time = 100.863558 +0:The maximum resident set size (KB) = 475336 -Test 158 control_atmwav PASS +Test 162 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8 -Checking test 159 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/atmaero_control_p8 +Checking test 163 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4764,15 +5160,15 @@ Checking test 159 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0:The total amount of wall time = 249.525744 -0:The maximum resident set size (KB) = 2703984 +0:The total amount of wall time = 250.968346 +0:The maximum resident set size (KB) = 2703964 -Test 159 atmaero_control_p8 PASS +Test 163 atmaero_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad -Checking test 160 atmaero_control_p8_rad results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/atmaero_control_p8_rad +Checking test 164 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4815,15 +5211,15 @@ Checking test 160 atmaero_control_p8_rad 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 = 302.020892 -0:The maximum resident set size (KB) = 2758880 +0:The total amount of wall time = 307.295670 +0:The maximum resident set size (KB) = 2758800 -Test 160 atmaero_control_p8_rad PASS +Test 164 atmaero_control_p8_rad PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/atmaero_control_p8_rad_micro -Checking test 161 atmaero_control_p8_rad_micro results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/atmaero_control_p8_rad_micro +Checking test 165 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4866,15 +5262,15 @@ Checking test 161 atmaero_control_p8_rad_micro 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 = 309.003540 -0:The maximum resident set size (KB) = 2765588 +0:The total amount of wall time = 311.939830 +0:The maximum resident set size (KB) = 2765696 -Test 161 atmaero_control_p8_rad_micro PASS +Test 165 atmaero_control_p8_rad_micro PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq -Checking test 162 regional_atmaq results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_atmaq +Checking test 166 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4889,15 +5285,15 @@ Checking test 162 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 760.029388 -0:The maximum resident set size (KB) = 999616 +0:The total amount of wall time = 1022.077342 +0:The maximum resident set size (KB) = 999708 -Test 162 regional_atmaq PASS +Test 166 regional_atmaq PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /glade/scratch/jongkim/rt-1731-intel/jongkim/FV3_RT/rt_49163/regional_atmaq_faster -Checking test 163 regional_atmaq_faster results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_faster +working dir = /glade/scratch/zshrader/FV3_RT/rt_15423/regional_atmaq_faster +Checking test 167 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4912,12 +5308,12 @@ Checking test 163 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -0:The total amount of wall time = 706.397204 -0:The maximum resident set size (KB) = 999612 +0:The total amount of wall time = 698.810688 +0:The maximum resident set size (KB) = 999560 -Test 163 regional_atmaq_faster PASS +Test 167 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sat May 6 10:06:49 MDT 2023 -Elapsed time: 02h:20m:33s. Have a nice day! +Tue May 23 14:45:30 MDT 2023 +Elapsed time: 01h:23m:24s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8ca9fcee05..89d32e2245 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,43 +1,43 @@ -Sun Apr 9 21:07:10 EDT 2023 +Tue 23 May 2023 03:34:57 PM EDT Start Regression test -Compile 001 elapsed time 937 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 872 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 829 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 350 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 296 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 785 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 746 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1131 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 758 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 738 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 011 elapsed time 656 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 637 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 258 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_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 207 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 650 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 635 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 299 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 697 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 256 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 888 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 728 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 024 elapsed time 281 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 162 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 354 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 98 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 704 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 668 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 698 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 646 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 776 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 258 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 777 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_mixedmode -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_mixedmode +Compile 001 elapsed time 1490 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1515 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1335 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 913 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 784 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1227 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1302 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1708 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 1221 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 932 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 890 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1028 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 388 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 846 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 329 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 279 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 817 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 266 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 987 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 775 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 024 elapsed time 283 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 194 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 300 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 111 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 750 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 809 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 803 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 753 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 725 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 255 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 880 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 387.614474 - 0: The maximum resident set size (KB) = 1534188 + 0: The total amount of wall time = 346.589246 + 0: The maximum resident set size (KB) = 1540632 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_gfsv17 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_gfsv17 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,146 +173,16 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 285.429925 - 0: The maximum resident set size (KB) = 1443460 + 0: The total amount of wall time = 244.952656 + 0: The maximum resident set size (KB) = 1424220 Test 002 cpld_control_gfsv17 PASS +Test 003 cpld_control_p8 FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8 -Checking test 003 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/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 = 407.693495 - 0: The maximum resident set size (KB) = 1566692 - -Test 003 cpld_control_p8 PASS - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_p8 -Checking test 004 cpld_restart_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/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 = 248.002024 - 0: The maximum resident set size (KB) = 1018328 - -Test 004 cpld_restart_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +247,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 406.611085 - 0: The maximum resident set size (KB) = 1577640 + 0: The total amount of wall time = 390.930192 + 0: The maximum resident set size (KB) = 1579812 Test 005 cpld_control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_qr_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +307,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 247.338311 - 0: The maximum resident set size (KB) = 1031440 + 0: The total amount of wall time = 227.819843 + 0: The maximum resident set size (KB) = 1034956 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_2threads_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +367,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.517646 - 0: The maximum resident set size (KB) = 1758916 + 0: The total amount of wall time = 401.891630 + 0: The maximum resident set size (KB) = 1773844 Test 007 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_decomp_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +427,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 404.237894 - 0: The maximum resident set size (KB) = 1561660 + 0: The total amount of wall time = 388.110262 + 0: The maximum resident set size (KB) = 1560904 Test 008 cpld_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_mpi_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +487,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.542338 - 0: The maximum resident set size (KB) = 1527016 + 0: The total amount of wall time = 323.847791 + 0: The maximum resident set size (KB) = 1541088 Test 009 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_bmark_p8 Checking test 010 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -672,14 +542,14 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 893.650557 - 0: The maximum resident set size (KB) = 2503316 + 0: The total amount of wall time = 861.952551 + 0: The maximum resident set size (KB) = 2517664 Test 010 cpld_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_bmark_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_restart_bmark_p8 Checking test 011 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -727,14 +597,14 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 608.551522 - 0: The maximum resident set size (KB) = 2323640 + 0: The total amount of wall time = 464.558106 + 0: The maximum resident set size (KB) = 2329888 Test 011 cpld_restart_bmark_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_noaero_p8 Checking test 012 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -798,14 +668,14 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 310.545752 - 0: The maximum resident set size (KB) = 1441408 + 0: The total amount of wall time = 287.658197 + 0: The maximum resident set size (KB) = 1440384 Test 012 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c96_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_nowave_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_nowave_noaero_p8 Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -867,14 +737,14 @@ Checking test 013 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 313.962676 - 0: The maximum resident set size (KB) = 1474212 + 0: The total amount of wall time = 295.319905 + 0: The maximum resident set size (KB) = 1474632 Test 013 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -927,14 +797,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 582.658867 - 0: The maximum resident set size (KB) = 1592244 + 0: The total amount of wall time = 551.826002 + 0: The maximum resident set size (KB) = 1616648 Test 014 cpld_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_debug_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_debug_noaero_p8 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_debug_noaero_p8 Checking test 015 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +856,14 @@ Checking test 015 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 386.397364 - 0: The maximum resident set size (KB) = 1441572 + 0: The total amount of wall time = 380.595964 + 0: The maximum resident set size (KB) = 1441808 Test 015 cpld_debug_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_noaero_p8_agrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_noaero_p8_agrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_noaero_p8_agrid Checking test 016 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1055,14 +925,14 @@ Checking test 016 cpld_control_noaero_p8_agrid 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 = 324.821043 - 0: The maximum resident set size (KB) = 1478412 + 0: The total amount of wall time = 312.860447 + 0: The maximum resident set size (KB) = 1476936 Test 016 cpld_control_noaero_p8_agrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_control_c48 Checking test 017 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1112,14 +982,14 @@ Checking test 017 cpld_control_c48 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 = 607.115574 - 0: The maximum resident set size (KB) = 2575280 + 0: The total amount of wall time = 605.595241 + 0: The maximum resident set size (KB) = 2563132 Test 017 cpld_control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_warmstart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_warmstart_c48 Checking test 018 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1169,14 +1039,14 @@ Checking test 018 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 186.810125 - 0: The maximum resident set size (KB) = 2588520 + 0: The total amount of wall time = 161.373653 + 0: The maximum resident set size (KB) = 2576268 Test 018 cpld_warmstart_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_warmstart_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_restart_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/cpld_restart_c48 Checking test 019 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1226,87 +1096,35 @@ Checking test 019 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 87.032061 - 0: The maximum resident set size (KB) = 2007496 + 0: The total amount of wall time = 84.917285 + 0: The maximum resident set size (KB) = 1989600 Test 019 cpld_restart_c48 PASS +Test 020 cpld_control_p8_faster FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/cpld_control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/cpld_control_p8_faster -Checking test 020 cpld_control_p8_faster 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 = 397.423684 - 0: The maximum resident set size (KB) = 1567216 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_flake +Checking test 021 control_flake 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 = 215.898782 + 0: The maximum resident set size (KB) = 485516 -Test 020 cpld_control_p8_faster PASS +Test 021 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_CubedSphereGrid +Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1332,29 +1150,29 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 145.769862 - 0: The maximum resident set size (KB) = 437956 + 0: The total amount of wall time = 141.575865 + 0: The maximum resident set size (KB) = 438244 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_CubedSphereGrid_parallel +Checking test 023 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.154244 - 0: The maximum resident set size (KB) = 437772 + 0: The total amount of wall time = 152.434340 + 0: The maximum resident set size (KB) = 438560 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_latlon -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_latlon +Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1182,15 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.943397 - 0: The maximum resident set size (KB) = 437924 + 0: The total amount of wall time = 145.397793 + 0: The maximum resident set size (KB) = 438200 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_wrtGauss_netcdf_parallel +Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1382,15 +1200,15 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 153.901595 - 0: The maximum resident set size (KB) = 437884 + 0: The total amount of wall time = 160.781469 + 0: The maximum resident set size (KB) = 438328 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c48 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_c48 +Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,15 +1246,15 @@ Checking test 025 control_c48 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 = 421.266739 -0: The maximum resident set size (KB) = 636844 +0: The total amount of wall time = 418.539505 +0: The maximum resident set size (KB) = 637536 -Test 025 control_c48 PASS +Test 026 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c192 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c192 -Checking test 026 control_c192 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_c192 +Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1446,15 +1264,15 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 578.004508 - 0: The maximum resident set size (KB) = 544804 + 0: The total amount of wall time = 581.427795 + 0: The maximum resident set size (KB) = 545228 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_c384 +Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1464,15 +1282,15 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1127.701420 - 0: The maximum resident set size (KB) = 822992 + 0: The total amount of wall time = 1105.674546 + 0: The maximum resident set size (KB) = 824356 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1514,15 +1332,15 @@ Checking test 028 control_c384gdas 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 = 939.692781 - 0: The maximum resident set size (KB) = 954808 + 0: The total amount of wall time = 937.735951 + 0: The maximum resident set size (KB) = 955688 -Test 028 control_c384gdas PASS +Test 029 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy -Checking test 029 control_stochy results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_stochy +Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1532,29 +1350,29 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 97.795768 - 0: The maximum resident set size (KB) = 441420 + 0: The total amount of wall time = 97.359500 + 0: The maximum resident set size (KB) = 439748 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_stochy_restart +Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 60.919271 - 0: The maximum resident set size (KB) = 195844 + 0: The total amount of wall time = 52.059240 + 0: The maximum resident set size (KB) = 196228 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_lndp +Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1564,15 +1382,15 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 93.460305 - 0: The maximum resident set size (KB) = 441036 + 0: The total amount of wall time = 95.036666 + 0: The maximum resident set size (KB) = 442860 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_iovr4 +Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1586,15 +1404,15 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 145.754778 - 0: The maximum resident set size (KB) = 437852 + 0: The total amount of wall time = 148.676049 + 0: The maximum resident set size (KB) = 438260 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_iovr5 +Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1608,15 +1426,15 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.373188 - 0: The maximum resident set size (KB) = 437916 + 0: The total amount of wall time = 148.648917 + 0: The maximum resident set size (KB) = 438088 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1662,15 +1480,15 @@ Checking test 034 control_p8 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.959784 - 0: The maximum resident set size (KB) = 1380104 + 0: The total amount of wall time = 187.428957 + 0: The maximum resident set size (KB) = 1380284 -Test 034 control_p8 PASS +Test 035 control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_p8 -Checking test 035 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1708,15 +1526,15 @@ Checking test 035 control_restart_p8 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 = 114.413771 - 0: The maximum resident set size (KB) = 556664 + 0: The total amount of wall time = 100.574535 + 0: The maximum resident set size (KB) = 547956 -Test 035 control_restart_p8 PASS +Test 036 control_restart_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_qr_p8 -Checking test 036 control_qr_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_qr_p8 +Checking test 037 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1762,15 +1580,15 @@ Checking test 036 control_qr_p8 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 = 194.519535 - 0: The maximum resident set size (KB) = 1383264 + 0: The total amount of wall time = 186.294807 + 0: The maximum resident set size (KB) = 1383380 -Test 036 control_qr_p8 PASS +Test 037 control_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_restart_qr_p8 -Checking test 037 control_restart_qr_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_restart_qr_p8 +Checking test 038 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1808,15 +1626,15 @@ Checking test 037 control_restart_qr_p8 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 = 111.143377 - 0: The maximum resident set size (KB) = 581576 + 0: The total amount of wall time = 100.807937 + 0: The maximum resident set size (KB) = 568052 -Test 037 control_restart_qr_p8 PASS +Test 038 control_restart_qr_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_decomp_p8 -Checking test 038 control_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_decomp_p8 +Checking test 039 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1858,15 +1676,15 @@ Checking test 038 control_decomp_p8 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 = 192.806025 - 0: The maximum resident set size (KB) = 1373980 + 0: The total amount of wall time = 191.439446 + 0: The maximum resident set size (KB) = 1374208 -Test 038 control_decomp_p8 PASS +Test 039 control_decomp_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_2threads_p8 -Checking test 039 control_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_2threads_p8 +Checking test 040 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1908,15 +1726,15 @@ Checking test 039 control_2threads_p8 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 = 180.641269 - 0: The maximum resident set size (KB) = 1464120 + 0: The total amount of wall time = 191.987216 + 0: The maximum resident set size (KB) = 1465284 -Test 039 control_2threads_p8 PASS +Test 040 control_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_lndp -Checking test 040 control_p8_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8_lndp +Checking test 041 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1934,15 +1752,15 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 361.347210 - 0: The maximum resident set size (KB) = 1381220 + 0: The total amount of wall time = 338.344876 + 0: The maximum resident set size (KB) = 1381492 -Test 040 control_p8_lndp PASS +Test 041 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_rrtmgp -Checking test 041 control_p8_rrtmgp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8_rrtmgp +Checking test 042 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1988,15 +1806,15 @@ Checking test 041 control_p8_rrtmgp 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 = 265.327983 - 0: The maximum resident set size (KB) = 1437540 + 0: The total amount of wall time = 253.037637 + 0: The maximum resident set size (KB) = 1437516 -Test 041 control_p8_rrtmgp PASS +Test 042 control_p8_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_mynn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_mynn -Checking test 042 control_p8_mynn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8_mynn +Checking test 043 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,15 +1860,15 @@ Checking test 042 control_p8_mynn 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 = 191.877252 - 0: The maximum resident set size (KB) = 1384160 + 0: The total amount of wall time = 187.672088 + 0: The maximum resident set size (KB) = 1384372 -Test 042 control_p8_mynn PASS +Test 043 control_p8_mynn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/merra2_thompson -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/merra2_thompson -Checking test 043 merra2_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/merra2_thompson +Checking test 044 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2096,15 +1914,15 @@ Checking test 043 merra2_thompson 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 = 223.525689 - 0: The maximum resident set size (KB) = 1385616 + 0: The total amount of wall time = 212.968495 + 0: The maximum resident set size (KB) = 1385788 -Test 043 merra2_thompson PASS +Test 044 merra2_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control -Checking test 044 regional_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_control +Checking test 045 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2114,29 +1932,29 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 345.097944 - 0: The maximum resident set size (KB) = 578644 + 0: The total amount of wall time = 335.227297 + 0: The maximum resident set size (KB) = 577016 -Test 044 regional_control PASS +Test 045 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart -Checking test 045 regional_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_restart +Checking test 046 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 194.474843 - 0: The maximum resident set size (KB) = 578788 + 0: The total amount of wall time = 170.516303 + 0: The maximum resident set size (KB) = 578828 -Test 045 regional_restart PASS +Test 046 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_qr -Checking test 046 regional_control_qr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_control_qr +Checking test 047 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2146,29 +1964,29 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 352.734869 - 0: The maximum resident set size (KB) = 578776 + 0: The total amount of wall time = 336.901376 + 0: The maximum resident set size (KB) = 576940 -Test 046 regional_control_qr PASS +Test 047 regional_control_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_restart_qr -Checking test 047 regional_restart_qr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_restart_qr +Checking test 048 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 194.138563 - 0: The maximum resident set size (KB) = 579088 + 0: The total amount of wall time = 172.454382 + 0: The maximum resident set size (KB) = 578680 -Test 047 regional_restart_qr PASS +Test 048 regional_restart_qr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_decomp -Checking test 048 regional_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_decomp +Checking test 049 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2178,15 +1996,15 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 356.501926 - 0: The maximum resident set size (KB) = 580788 + 0: The total amount of wall time = 352.037048 + 0: The maximum resident set size (KB) = 581132 -Test 048 regional_decomp PASS +Test 049 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2threads -Checking test 049 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_2threads +Checking test 050 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2196,44 +2014,44 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 218.054766 - 0: The maximum resident set size (KB) = 586260 + 0: The total amount of wall time = 209.123299 + 0: The maximum resident set size (KB) = 586732 -Test 049 regional_2threads PASS +Test 050 regional_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_noquilt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_noquilt -Checking test 050 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_noquilt +Checking test 051 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 369.810544 - 0: The maximum resident set size (KB) = 573172 + 0: The total amount of wall time = 359.749000 + 0: The maximum resident set size (KB) = 572676 -Test 050 regional_noquilt PASS +Test 051 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_netcdf_parallel -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_netcdf_parallel -Checking test 051 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_netcdf_parallel +Checking test 052 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 337.258126 - 0: The maximum resident set size (KB) = 578320 + 0: The total amount of wall time = 348.879951 + 0: The maximum resident set size (KB) = 578980 -Test 051 regional_netcdf_parallel PASS +Test 052 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_2dwrtdecomp -Checking test 052 regional_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_2dwrtdecomp +Checking test 053 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2243,15 +2061,15 @@ Checking test 052 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 343.319845 - 0: The maximum resident set size (KB) = 578644 + 0: The total amount of wall time = 348.595552 + 0: The maximum resident set size (KB) = 576952 -Test 052 regional_2dwrtdecomp PASS +Test 053 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/fv3_regional_wofs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_wofs -Checking test 053 regional_wofs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_wofs +Checking test 054 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2261,15 +2079,15 @@ Checking test 053 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 430.611504 - 0: The maximum resident set size (KB) = 264000 + 0: The total amount of wall time = 422.826278 + 0: The maximum resident set size (KB) = 264260 -Test 053 regional_wofs PASS +Test 054 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control -Checking test 054 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control +Checking test 055 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2315,15 +2133,15 @@ Checking test 054 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.144041 - 0: The maximum resident set size (KB) = 807820 + 0: The total amount of wall time = 475.247833 + 0: The maximum resident set size (KB) = 806752 -Test 054 rap_control PASS +Test 055 rap_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb -Checking test 055 regional_spp_sppt_shum_skeb results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_spp_sppt_shum_skeb +Checking test 056 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2333,15 +2151,15 @@ Checking test 055 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 281.731456 - 0: The maximum resident set size (KB) = 908032 + 0: The total amount of wall time = 279.796144 + 0: The maximum resident set size (KB) = 904144 -Test 055 regional_spp_sppt_shum_skeb PASS +Test 056 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_decomp -Checking test 056 rap_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_decomp +Checking test 057 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2387,15 +2205,15 @@ Checking test 056 rap_decomp 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 = 499.176020 - 0: The maximum resident set size (KB) = 806368 + 0: The total amount of wall time = 496.047242 + 0: The maximum resident set size (KB) = 806748 -Test 056 rap_decomp PASS +Test 057 rap_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads -Checking test 057 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_2threads +Checking test 058 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2441,15 +2259,15 @@ Checking test 057 rap_2threads 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.572062 - 0: The maximum resident set size (KB) = 878372 + 0: The total amount of wall time = 466.754023 + 0: The maximum resident set size (KB) = 875772 -Test 057 rap_2threads PASS +Test 058 rap_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart -Checking test 058 rap_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_restart +Checking test 059 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2487,15 +2305,15 @@ Checking test 058 rap_restart 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 = 243.646391 - 0: The maximum resident set size (KB) = 553168 + 0: The total amount of wall time = 241.716432 + 0: The maximum resident set size (KB) = 553612 -Test 058 rap_restart PASS +Test 059 rap_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff -Checking test 059 rap_sfcdiff results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_sfcdiff +Checking test 060 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2541,15 +2359,15 @@ Checking test 059 rap_sfcdiff 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 = 483.549268 - 0: The maximum resident set size (KB) = 807900 + 0: The total amount of wall time = 476.412887 + 0: The maximum resident set size (KB) = 806564 -Test 059 rap_sfcdiff PASS +Test 060 rap_sfcdiff PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_decomp -Checking test 060 rap_sfcdiff_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_sfcdiff_decomp +Checking test 061 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2595,15 +2413,15 @@ Checking test 060 rap_sfcdiff_decomp 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 = 510.389983 - 0: The maximum resident set size (KB) = 807364 + 0: The total amount of wall time = 499.477328 + 0: The maximum resident set size (KB) = 806792 -Test 060 rap_sfcdiff_decomp PASS +Test 061 rap_sfcdiff_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_restart -Checking test 061 rap_sfcdiff_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_sfcdiff_restart +Checking test 062 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2641,15 +2459,15 @@ Checking test 061 rap_sfcdiff_restart 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 = 364.698615 - 0: The maximum resident set size (KB) = 552368 + 0: The total amount of wall time = 352.351143 + 0: The maximum resident set size (KB) = 552784 -Test 061 rap_sfcdiff_restart PASS +Test 062 rap_sfcdiff_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control -Checking test 062 hrrr_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control +Checking test 063 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2662,48 +2480,170 @@ Checking test 062 hrrr_control results .... 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 + 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 = 442.692612 + 0: The maximum resident set size (KB) = 804968 + +Test 063 hrrr_control PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_decomp +Checking test 064 hrrr_control_decomp 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 = 465.624122 + 0: The maximum resident set size (KB) = 805568 + +Test 064 hrrr_control_decomp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_2threads +Checking test 065 hrrr_control_2threads 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 = 414.394221 + 0: The maximum resident set size (KB) = 881004 + +Test 065 hrrr_control_2threads PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_restart +Checking test 066 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 467.396448 - 0: The maximum resident set size (KB) = 805796 + 0: The total amount of wall time = 333.333198 + 0: The maximum resident set size (KB) = 550900 -Test 062 hrrr_control PASS +Test 066 hrrr_control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp -Checking test 063 hrrr_control_decomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_v1beta +Checking test 067 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2749,169 +2689,15 @@ Checking test 063 hrrr_control_decomp 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.806783 - 0: The maximum resident set size (KB) = 805200 + 0: The total amount of wall time = 471.736362 + 0: The maximum resident set size (KB) = 805220 -Test 063 hrrr_control_decomp PASS +Test 067 rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads -Checking test 064 hrrr_control_2threads 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 = 441.992143 - 0: The maximum resident set size (KB) = 872952 - -Test 064 hrrr_control_2threads PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart -Checking test 065 hrrr_control_restart 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 = 345.826280 - 0: The maximum resident set size (KB) = 547760 - -Test 065 hrrr_control_restart PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta -Checking test 066 rrfs_v1beta 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 = 482.543272 - 0: The maximum resident set size (KB) = 804876 - -Test 066 rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl -Checking test 067 rrfs_v1nssl results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_v1nssl +Checking test 068 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2925,15 +2711,15 @@ Checking test 067 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 587.783735 - 0: The maximum resident set size (KB) = 493312 + 0: The total amount of wall time = 570.013087 + 0: The maximum resident set size (KB) = 493384 -Test 067 rrfs_v1nssl PASS +Test 068 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1nssl_nohailnoccn -Checking test 068 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_v1nssl_nohailnoccn +Checking test 069 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2947,15 +2733,15 @@ Checking test 068 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 562.901826 - 0: The maximum resident set size (KB) = 486016 + 0: The total amount of wall time = 565.826785 + 0: The maximum resident set size (KB) = 486992 -Test 068 rrfs_v1nssl_nohailnoccn PASS +Test 069 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm -Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_smoke_conus13km_hrrr_warm +Checking test 070 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2963,15 +2749,15 @@ Checking test 069 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 177.631407 - 0: The maximum resident set size (KB) = 658140 + 0: The total amount of wall time = 166.301154 + 0: The maximum resident set size (KB) = 631528 -Test 069 rrfs_smoke_conus13km_hrrr_warm PASS +Test 070 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 071 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2979,15 +2765,15 @@ Checking test 070 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 126.862886 - 0: The maximum resident set size (KB) = 670828 + 0: The total amount of wall time = 103.783490 + 0: The maximum resident set size (KB) = 645192 -Test 070 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 071 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm -Checking test 071 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_conus13km_hrrr_warm +Checking test 072 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2995,15 +2781,15 @@ Checking test 071 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 167.515710 - 0: The maximum resident set size (KB) = 634712 + 0: The total amount of wall time = 149.388294 + 0: The maximum resident set size (KB) = 649816 -Test 071 rrfs_conus13km_hrrr_warm PASS +Test 072 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_radar_tten_warm -Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_smoke_conus13km_radar_tten_warm +Checking test 073 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3011,27 +2797,27 @@ Checking test 072 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.825674 - 0: The maximum resident set size (KB) = 661600 + 0: The total amount of wall time = 165.551582 + 0: The maximum resident set size (KB) = 635924 -Test 072 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 073 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 073 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 074 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 86.631848 - 0: The maximum resident set size (KB) = 615068 + 0: The total amount of wall time = 82.472405 + 0: The maximum resident set size (KB) = 621604 -Test 073 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 074 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt -Checking test 074 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_csawmgt +Checking test 075 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3041,15 +2827,15 @@ Checking test 074 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 392.026117 - 0: The maximum resident set size (KB) = 502580 + 0: The total amount of wall time = 383.350391 + 0: The maximum resident set size (KB) = 502920 -Test 074 control_csawmgt PASS +Test 075 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras -Checking test 075 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_ras +Checking test 076 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3059,27 +2845,27 @@ Checking test 075 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 203.071382 - 0: The maximum resident set size (KB) = 472788 + 0: The total amount of wall time = 201.410795 + 0: The maximum resident set size (KB) = 473208 -Test 075 control_ras PASS +Test 076 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam -Checking test 076 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_wam +Checking test 077 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 128.061276 - 0: The maximum resident set size (KB) = 188880 + 0: The total amount of wall time = 124.986206 + 0: The maximum resident set size (KB) = 189692 -Test 076 control_wam PASS +Test 077 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_faster -Checking test 077 control_p8_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8_faster +Checking test 078 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3125,15 +2911,15 @@ Checking test 077 control_p8_faster 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 = 183.410881 - 0: The maximum resident set size (KB) = 1380108 + 0: The total amount of wall time = 175.421269 + 0: The maximum resident set size (KB) = 1380148 -Test 077 control_p8_faster PASS +Test 078 control_p8_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_control_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_control_faster -Checking test 078 regional_control_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_control_faster +Checking test 079 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3143,57 +2929,57 @@ Checking test 078 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.715892 - 0: The maximum resident set size (KB) = 578428 + 0: The total amount of wall time = 315.913100 + 0: The maximum resident set size (KB) = 579300 -Test 078 regional_control_faster PASS +Test 079 regional_control_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 900.257815 - 0: The maximum resident set size (KB) = 688176 + 0: The total amount of wall time = 890.114116 + 0: The maximum resident set size (KB) = 664176 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 525.871133 - 0: The maximum resident set size (KB) = 703548 + 0: The total amount of wall time = 514.573790 + 0: The maximum resident set size (KB) = 677548 -Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 081 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_conus13km_hrrr_warm_debug -Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_conus13km_hrrr_warm_debug +Checking test 082 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 809.198304 - 0: The maximum resident set size (KB) = 665148 + 0: The total amount of wall time = 799.316981 + 0: The maximum resident set size (KB) = 681040 -Test 081 rrfs_conus13km_hrrr_warm_debug PASS +Test 082 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_CubedSphereGrid_debug -Checking test 082 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_CubedSphereGrid_debug +Checking test 083 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3219,335 +3005,349 @@ Checking test 082 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 158.189057 - 0: The maximum resident set size (KB) = 601904 + 0: The total amount of wall time = 158.917639 + 0: The maximum resident set size (KB) = 602696 -Test 082 control_CubedSphereGrid_debug PASS +Test 083 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wrtGauss_netcdf_parallel_debug -Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_wrtGauss_netcdf_parallel_debug +Checking test 084 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.913482 - 0: The maximum resident set size (KB) = 599556 + 0: The total amount of wall time = 159.921843 + 0: The maximum resident set size (KB) = 602464 -Test 083 control_wrtGauss_netcdf_parallel_debug PASS +Test 084 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_stochy_debug -Checking test 084 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_stochy_debug +Checking test 085 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.252154 - 0: The maximum resident set size (KB) = 604560 + 0: The total amount of wall time = 178.118798 + 0: The maximum resident set size (KB) = 607328 -Test 084 control_stochy_debug PASS +Test 085 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_lndp_debug -Checking test 085 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_lndp_debug +Checking test 086 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.490785 - 0: The maximum resident set size (KB) = 603940 + 0: The total amount of wall time = 162.012922 + 0: The maximum resident set size (KB) = 605256 -Test 085 control_lndp_debug PASS +Test 086 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmg_debug -Checking test 086 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_csawmg_debug +Checking test 087 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.884852 - 0: The maximum resident set size (KB) = 641344 + 0: The total amount of wall time = 253.064133 + 0: The maximum resident set size (KB) = 641852 -Test 086 control_csawmg_debug PASS +Test 087 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_csawmgt_debug -Checking test 087 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_csawmgt_debug +Checking test 088 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 252.845458 - 0: The maximum resident set size (KB) = 640976 + 0: The total amount of wall time = 246.489461 + 0: The maximum resident set size (KB) = 641516 -Test 087 control_csawmgt_debug PASS +Test 088 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_ras_debug -Checking test 088 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_ras_debug +Checking test 089 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.237697 - 0: The maximum resident set size (KB) = 613280 + 0: The total amount of wall time = 164.560880 + 0: The maximum resident set size (KB) = 613828 -Test 088 control_ras_debug PASS +Test 089 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_diag_debug -Checking test 089 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_diag_debug +Checking test 090 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.275507 - 0: The maximum resident set size (KB) = 659044 + 0: The total amount of wall time = 164.948411 + 0: The maximum resident set size (KB) = 658640 -Test 089 control_diag_debug PASS +Test 090 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_debug_p8 -Checking test 090 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_debug_p8 +Checking test 091 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 191.633583 - 0: The maximum resident set size (KB) = 1382788 + 0: The total amount of wall time = 180.535612 + 0: The maximum resident set size (KB) = 1383560 -Test 090 control_debug_p8 PASS +Test 091 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_debug -Checking test 091 regional_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_debug +Checking test 092 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1052.429750 - 0: The maximum resident set size (KB) = 605844 - -Test 091 regional_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug -Checking test 092 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - - 0: The total amount of wall time = 291.246339 - 0: The maximum resident set size (KB) = 970512 + 0: The total amount of wall time = 1037.542733 + 0: The maximum resident set size (KB) = 606160 -Test 092 rap_control_debug PASS +Test 092 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug -Checking test 093 hrrr_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control_debug +Checking test 093 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.678901 - 0: The maximum resident set size (KB) = 968864 + 0: The total amount of wall time = 289.963377 + 0: The maximum resident set size (KB) = 971048 -Test 093 hrrr_control_debug PASS +Test 093 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_drag_suite_debug -Checking test 094 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_debug +Checking test 094 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.667941 - 0: The maximum resident set size (KB) = 970492 + 0: The total amount of wall time = 283.353453 + 0: The maximum resident set size (KB) = 969260 -Test 094 rap_unified_drag_suite_debug PASS +Test 094 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_diag_debug -Checking test 095 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_unified_drag_suite_debug +Checking test 095 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.782781 - 0: The maximum resident set size (KB) = 1054084 + 0: The total amount of wall time = 292.796100 + 0: The maximum resident set size (KB) = 971004 -Test 095 rap_diag_debug PASS +Test 095 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_cires_ugwp_debug -Checking test 096 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_diag_debug +Checking test 096 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 305.788055 - 0: The maximum resident set size (KB) = 969784 + 0: The total amount of wall time = 304.979196 + 0: The maximum resident set size (KB) = 1054700 -Test 096 rap_cires_ugwp_debug PASS +Test 096 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_unified_ugwp_debug -Checking test 097 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_cires_ugwp_debug +Checking test 097 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.520373 - 0: The maximum resident set size (KB) = 971756 + 0: The total amount of wall time = 297.410900 + 0: The maximum resident set size (KB) = 970412 -Test 097 rap_unified_ugwp_debug PASS +Test 097 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_lndp_debug -Checking test 098 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_unified_ugwp_debug +Checking test 098 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.417669 - 0: The maximum resident set size (KB) = 971292 + 0: The total amount of wall time = 298.299743 + 0: The maximum resident set size (KB) = 972284 -Test 098 rap_lndp_debug PASS +Test 098 rap_unified_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_flake_debug -Checking test 099 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_lndp_debug +Checking test 099 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 294.676546 - 0: The maximum resident set size (KB) = 970532 + 0: The total amount of wall time = 292.928299 + 0: The maximum resident set size (KB) = 971668 -Test 099 rap_flake_debug PASS +Test 099 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_progcld_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_progcld_thompson_debug Checking test 100 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.371042 - 0: The maximum resident set size (KB) = 970528 + 0: The total amount of wall time = 290.525289 + 0: The maximum resident set size (KB) = 970844 Test 100 rap_progcld_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_noah_debug Checking test 101 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.503960 - 0: The maximum resident set size (KB) = 969204 + 0: The total amount of wall time = 285.077124 + 0: The maximum resident set size (KB) = 969656 Test 101 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_sfcdiff_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_sfcdiff_debug Checking test 102 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.583836 - 0: The maximum resident set size (KB) = 970436 + 0: The total amount of wall time = 291.051525 + 0: The maximum resident set size (KB) = 970888 Test 102 rap_sfcdiff_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_noah_sfcdiff_cires_ugwp_debug Checking test 103 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 477.969334 - 0: The maximum resident set size (KB) = 968700 + 0: The total amount of wall time = 478.900713 + 0: The maximum resident set size (KB) = 969004 Test 103 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rrfs_v1beta_debug Checking test 104 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.386447 - 0: The maximum resident set size (KB) = 966392 + 0: The total amount of wall time = 286.133588 + 0: The maximum resident set size (KB) = 966908 Test 104 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_wam_debug -Checking test 105 control_wam_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_clm_lake_debug +Checking test 105 rap_clm_lake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 359.711759 + 0: The maximum resident set size (KB) = 973704 + +Test 105 rap_clm_lake_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_flake_debug +Checking test 106 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 291.487595 + 0: The maximum resident set size (KB) = 971112 + +Test 106 rap_flake_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_wam_debug +Checking test 107 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 290.888582 - 0: The maximum resident set size (KB) = 217672 + 0: The total amount of wall time = 290.187330 + 0: The maximum resident set size (KB) = 218036 -Test 105 control_wam_debug PASS +Test 107 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3557,15 +3357,15 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 260.094764 - 0: The maximum resident set size (KB) = 802984 + 0: The total amount of wall time = 256.052481 + 0: The maximum resident set size (KB) = 807756 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 108 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control_dyn32_phy32 +Checking test 109 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3611,15 +3411,15 @@ Checking test 107 rap_control_dyn32_phy32 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 = 401.772542 - 0: The maximum resident set size (KB) = 691480 + 0: The total amount of wall time = 397.987367 + 0: The maximum resident set size (KB) = 692048 -Test 107 rap_control_dyn32_phy32 PASS +Test 109 rap_control_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_dyn32_phy32 +Checking test 110 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3632,48 +3432,48 @@ Checking test 108 hrrr_control_dyn32_phy32 results .... 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 = 215.984121 - 0: The maximum resident set size (KB) = 689892 - -Test 108 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... + 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 = 199.736726 + 0: The maximum resident set size (KB) = 690928 + +Test 110 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_2threads_dyn32_phy32 +Checking test 111 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3719,15 +3519,15 @@ Checking test 109 rap_2threads_dyn32_phy32 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 = 383.942805 - 0: The maximum resident set size (KB) = 743352 + 0: The total amount of wall time = 391.498707 + 0: The maximum resident set size (KB) = 743772 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 111 rap_2threads_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_2threads_dyn32_phy32 +Checking test 112 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3740,48 +3540,48 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... 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 = 204.552813 - 0: The maximum resident set size (KB) = 740800 - -Test 110 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 188.893189 + 0: The maximum resident set size (KB) = 738840 + +Test 112 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_decomp_dyn32_phy32 +Checking test 113 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3794,48 +3594,48 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... 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 = 221.362664 - 0: The maximum resident set size (KB) = 688564 - -Test 111 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... + 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.338296 + 0: The maximum resident set size (KB) = 691416 + +Test 113 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_restart_dyn32_phy32 +Checking test 114 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3873,61 +3673,29 @@ Checking test 112 rap_restart_dyn32_phy32 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 = 309.093015 - 0: The maximum resident set size (KB) = 526372 + 0: The total amount of wall time = 292.761162 + 0: The maximum resident set size (KB) = 526960 -Test 112 rap_restart_dyn32_phy32 PASS +Test 114 rap_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_restart_dyn32_phy32 +Checking test 115 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........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 = 115.675662 - 0: The maximum resident set size (KB) = 518620 + 0: The total amount of wall time = 102.571900 + 0: The maximum resident set size (KB) = 518464 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 115 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control_dyn64_phy32 +Checking test 116 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3973,82 +3741,82 @@ Checking test 114 rap_control_dyn64_phy32 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 = 267.694316 - 0: The maximum resident set size (KB) = 709544 + 0: The total amount of wall time = 268.520051 + 0: The maximum resident set size (KB) = 714344 -Test 114 rap_control_dyn64_phy32 PASS +Test 116 rap_control_dyn64_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control_debug_dyn32_phy32 +Checking test 117 rap_control_debug_dyn32_phy32 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.587501 - 0: The maximum resident set size (KB) = 855412 + 0: The total amount of wall time = 287.691522 + 0: The maximum resident set size (KB) = 856044 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 117 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hrrr_control_debug_dyn32_phy32 +Checking test 118 hrrr_control_debug_dyn32_phy32 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.086337 - 0: The maximum resident set size (KB) = 852924 + 0: The total amount of wall time = 280.733754 + 0: The maximum resident set size (KB) = 854420 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 118 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/rap_control_dyn64_phy32_debug +Checking test 119 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.080028 - 0: The maximum resident set size (KB) = 876388 + 0: The total amount of wall time = 292.199771 + 0: The maximum resident set size (KB) = 876840 -Test 117 rap_control_dyn64_phy32_debug PASS +Test 119 rap_control_dyn64_phy32_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_atm +Checking test 120 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 272.045454 - 0: The maximum resident set size (KB) = 688056 + 0: The total amount of wall time = 266.622219 + 0: The maximum resident set size (KB) = 688060 -Test 118 hafs_regional_atm PASS +Test 120 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_thompson_gfdlsf -Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_atm_thompson_gfdlsf +Checking test 121 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 309.115577 - 0: The maximum resident set size (KB) = 1039940 + 0: The total amount of wall time = 305.225530 + 0: The maximum resident set size (KB) = 1039436 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS +Test 121 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_atm_ocn +Checking test 122 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4056,15 +3824,15 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 454.145969 - 0: The maximum resident set size (KB) = 715512 + 0: The total amount of wall time = 445.515115 + 0: The maximum resident set size (KB) = 717556 -Test 120 hafs_regional_atm_ocn PASS +Test 122 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_atm_wav +Checking test 123 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4072,15 +3840,15 @@ Checking test 121 hafs_regional_atm_wav 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 = 938.320059 - 0: The maximum resident set size (KB) = 749836 + 0: The total amount of wall time = 944.889979 + 0: The maximum resident set size (KB) = 751508 -Test 121 hafs_regional_atm_wav PASS +Test 123 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_atm_ocn_wav -Checking test 122 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_atm_ocn_wav +Checking test 124 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4090,29 +3858,73 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1036.953381 - 0: The maximum resident set size (KB) = 767412 + 0: The total amount of wall time = 1038.667767 + 0: The maximum resident set size (KB) = 767104 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 124 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_1nest_atm -Checking test 123 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_1nest_atm +Checking test 125 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 378.447651 - 0: The maximum resident set size (KB) = 279304 - -Test 123 hafs_regional_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_telescopic_2nests_atm -Checking test 124 hafs_regional_telescopic_2nests_atm results .... + 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 + + 0: The total amount of wall time = 372.404376 + 0: The maximum resident set size (KB) = 279732 + +Test 125 hafs_regional_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_1nest_atm_qr +Checking test 126 hafs_regional_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 479.226764 + 0: The maximum resident set size (KB) = 276660 + +Test 126 hafs_regional_1nest_atm_qr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_telescopic_2nests_atm +Checking test 127 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4120,29 +3932,123 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 436.480617 - 0: The maximum resident set size (KB) = 286812 + 0: The total amount of wall time = 424.921898 + 0: The maximum resident set size (KB) = 289484 -Test 124 hafs_regional_telescopic_2nests_atm PASS +Test 127 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_1nest_atm -Checking test 125 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_global_1nest_atm +Checking test 128 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 170.622801 - 0: The maximum resident set size (KB) = 183944 - -Test 125 hafs_global_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_multiple_4nests_atm -Checking test 126 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + + 0: The total amount of wall time = 171.051369 + 0: The maximum resident set size (KB) = 184828 + +Test 128 hafs_global_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_global_1nest_atm_qr +Checking test 129 hafs_global_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.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 = 258.227195 + 0: The maximum resident set size (KB) = 192332 + +Test 129 hafs_global_1nest_atm_qr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_global_multiple_4nests_atm +Checking test 130 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4158,46 +4064,243 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 493.740556 - 0: The maximum resident set size (KB) = 232972 - -Test 126 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_specified_moving_1nest_atm -Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 = 476.459222 + 0: The maximum resident set size (KB) = 232604 + +Test 130 hafs_global_multiple_4nests_atm PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_global_multiple_4nests_atm_qr +Checking test 131 hafs_global_multiple_4nests_atm_qr 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 - - 0: The total amount of wall time = 246.683176 - 0: The maximum resident set size (KB) = 294296 - -Test 127 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm -Checking test 128 hafs_regional_storm_following_1nest_atm results .... + 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......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 = 716.507691 + 0: The maximum resident set size (KB) = 254984 + +Test 131 hafs_global_multiple_4nests_atm_qr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_specified_moving_1nest_atm +Checking test 132 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 229.671114 - 0: The maximum resident set size (KB) = 294284 + 0: The total amount of wall time = 242.716374 + 0: The maximum resident set size (KB) = 296852 -Test 128 hafs_regional_storm_following_1nest_atm PASS +Test 132 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_storm_following_1nest_atm +Checking test 133 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 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 + + 0: The total amount of wall time = 226.870007 + 0: The maximum resident set size (KB) = 296244 + +Test 133 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_storm_following_1nest_atm_qr +Checking test 134 hafs_regional_storm_following_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 299.075987 + 0: The maximum resident set size (KB) = 304348 + +Test 134 hafs_regional_storm_following_1nest_atm_qr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_storm_following_1nest_atm_ocn +Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4205,43 +4308,43 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 271.960186 - 0: The maximum resident set size (KB) = 323928 + 0: The total amount of wall time = 259.476255 + 0: The maximum resident set size (KB) = 324340 -Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_global_storm_following_1nest_atm -Checking test 130 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_global_storm_following_1nest_atm +Checking test 136 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 70.731540 - 0: The maximum resident set size (KB) = 203012 + 0: The total amount of wall time = 69.133884 + 0: The maximum resident set size (KB) = 203728 -Test 130 hafs_global_storm_following_1nest_atm PASS +Test 136 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 774.454054 - 0: The maximum resident set size (KB) = 347768 + 0: The total amount of wall time = 762.591569 + 0: The maximum resident set size (KB) = 349440 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4251,162 +4354,162 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 716.211982 - 0: The maximum resident set size (KB) = 373860 + 0: The total amount of wall time = 700.043808 + 0: The maximum resident set size (KB) = 374312 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn -Checking test 133 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_docn +Checking test 139 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 401.542411 - 0: The maximum resident set size (KB) = 724724 + 0: The total amount of wall time = 389.307890 + 0: The maximum resident set size (KB) = 724988 -Test 133 hafs_regional_docn PASS +Test 139 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_docn_oisst -Checking test 134 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_docn_oisst +Checking test 140 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 403.339708 - 0: The maximum resident set size (KB) = 713280 + 0: The total amount of wall time = 384.888815 + 0: The maximum resident set size (KB) = 711844 -Test 134 hafs_regional_docn_oisst PASS +Test 140 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/hafs_regional_datm_cdeps -Checking test 135 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/hafs_regional_datm_cdeps +Checking test 141 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1174.179061 - 0: The maximum resident set size (KB) = 809256 + 0: The total amount of wall time = 1167.733730 + 0: The maximum resident set size (KB) = 809084 -Test 135 hafs_regional_datm_cdeps PASS +Test 141 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr -Checking test 136 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_control_cfsr +Checking test 142 datm_cdeps_control_cfsr 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 = 169.248102 - 0: The maximum resident set size (KB) = 715860 + 0: The total amount of wall time = 167.010911 + 0: The maximum resident set size (KB) = 707464 -Test 136 datm_cdeps_control_cfsr PASS +Test 142 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_restart_cfsr -Checking test 137 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_restart_cfsr +Checking test 143 datm_cdeps_restart_cfsr 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.726801 - 0: The maximum resident set size (KB) = 716028 + 0: The total amount of wall time = 97.557685 + 0: The maximum resident set size (KB) = 700284 -Test 137 datm_cdeps_restart_cfsr PASS +Test 143 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_gefs -Checking test 138 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_control_gefs +Checking test 144 datm_cdeps_control_gefs 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 = 168.063096 - 0: The maximum resident set size (KB) = 597904 + 0: The total amount of wall time = 162.434493 + 0: The maximum resident set size (KB) = 589324 -Test 138 datm_cdeps_control_gefs PASS +Test 144 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_iau_gefs -Checking test 139 datm_cdeps_iau_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_iau_gefs +Checking test 145 datm_cdeps_iau_gefs 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 = 163.835880 - 0: The maximum resident set size (KB) = 598116 + 0: The total amount of wall time = 159.906266 + 0: The maximum resident set size (KB) = 587496 -Test 139 datm_cdeps_iau_gefs PASS +Test 145 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_stochy_gefs -Checking test 140 datm_cdeps_stochy_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_stochy_gefs +Checking test 146 datm_cdeps_stochy_gefs 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 = 172.525836 - 0: The maximum resident set size (KB) = 599988 + 0: The total amount of wall time = 159.796641 + 0: The maximum resident set size (KB) = 588280 -Test 140 datm_cdeps_stochy_gefs PASS +Test 146 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_ciceC_cfsr -Checking test 141 datm_cdeps_ciceC_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_ciceC_cfsr +Checking test 147 datm_cdeps_ciceC_cfsr 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 = 170.027301 - 0: The maximum resident set size (KB) = 715924 + 0: The total amount of wall time = 163.596616 + 0: The maximum resident set size (KB) = 707636 -Test 141 datm_cdeps_ciceC_cfsr PASS +Test 147 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_cfsr -Checking test 142 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_bulk_cfsr +Checking test 148 datm_cdeps_bulk_cfsr 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.533744 - 0: The maximum resident set size (KB) = 715944 + 0: The total amount of wall time = 163.672662 + 0: The maximum resident set size (KB) = 707520 -Test 142 datm_cdeps_bulk_cfsr PASS +Test 148 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_bulk_gefs -Checking test 143 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_bulk_gefs +Checking test 149 datm_cdeps_bulk_gefs 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 = 161.838474 - 0: The maximum resident set size (KB) = 602136 + 0: The total amount of wall time = 155.925055 + 0: The maximum resident set size (KB) = 587324 -Test 143 datm_cdeps_bulk_gefs PASS +Test 149 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_cfsr -Checking test 144 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_mx025_cfsr +Checking test 150 datm_cdeps_mx025_cfsr 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 @@ -4414,15 +4517,15 @@ Checking test 144 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 438.805417 - 0: The maximum resident set size (KB) = 494400 + 0: The total amount of wall time = 412.322724 + 0: The maximum resident set size (KB) = 494716 -Test 144 datm_cdeps_mx025_cfsr PASS +Test 150 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_mx025_gefs -Checking test 145 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_mx025_gefs +Checking test 151 datm_cdeps_mx025_gefs 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 @@ -4430,78 +4533,78 @@ Checking test 145 datm_cdeps_mx025_gefs 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 = 461.449192 - 0: The maximum resident set size (KB) = 476416 + 0: The total amount of wall time = 404.349620 + 0: The maximum resident set size (KB) = 476504 -Test 145 datm_cdeps_mx025_gefs PASS +Test 151 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_multiple_files_cfsr -Checking test 146 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_multiple_files_cfsr +Checking test 152 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 167.688870 - 0: The maximum resident set size (KB) = 715728 + 0: The total amount of wall time = 165.956584 + 0: The maximum resident set size (KB) = 707648 -Test 146 datm_cdeps_multiple_files_cfsr PASS +Test 152 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_3072x1536_cfsr -Checking test 147 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_3072x1536_cfsr +Checking test 153 datm_cdeps_3072x1536_cfsr 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 = 253.573878 - 0: The maximum resident set size (KB) = 1947992 + 0: The total amount of wall time = 255.908132 + 0: The maximum resident set size (KB) = 1945464 -Test 147 datm_cdeps_3072x1536_cfsr PASS +Test 153 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_gfs -Checking test 148 datm_cdeps_gfs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_gfs +Checking test 154 datm_cdeps_gfs 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 = 256.506773 - 0: The maximum resident set size (KB) = 1947100 + 0: The total amount of wall time = 260.291551 + 0: The maximum resident set size (KB) = 1949908 -Test 148 datm_cdeps_gfs PASS +Test 154 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_debug_cfsr -Checking test 149 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_debug_cfsr +Checking test 155 datm_cdeps_debug_cfsr 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 = 370.276170 - 0: The maximum resident set size (KB) = 693024 + 0: The total amount of wall time = 369.537413 + 0: The maximum resident set size (KB) = 693876 -Test 149 datm_cdeps_debug_cfsr PASS +Test 155 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_control_cfsr_faster -Checking test 150 datm_cdeps_control_cfsr_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_control_cfsr_faster +Checking test 156 datm_cdeps_control_cfsr_faster 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.247244 - 0: The maximum resident set size (KB) = 715692 + 0: The total amount of wall time = 163.279701 + 0: The maximum resident set size (KB) = 707660 -Test 150 datm_cdeps_control_cfsr_faster PASS +Test 156 datm_cdeps_control_cfsr_faster PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3 -Checking test 151 datm_cdeps_lnd_gswp3 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_lnd_gswp3 +Checking test 157 datm_cdeps_lnd_gswp3 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 @@ -4509,15 +4612,15 @@ Checking test 151 datm_cdeps_lnd_gswp3 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 = 14.754692 - 0: The maximum resident set size (KB) = 153860 + 0: The total amount of wall time = 8.372504 + 0: The maximum resident set size (KB) = 150232 -Test 151 datm_cdeps_lnd_gswp3 PASS +Test 157 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/datm_cdeps_lnd_gswp3_rst -Checking test 152 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/datm_cdeps_lnd_gswp3_rst +Checking test 158 datm_cdeps_lnd_gswp3_rst 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 @@ -4525,15 +4628,15 @@ Checking test 152 datm_cdeps_lnd_gswp3_rst 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 = 26.352968 - 0: The maximum resident set size (KB) = 153920 + 0: The total amount of wall time = 13.668689 + 0: The maximum resident set size (KB) = 154340 -Test 152 datm_cdeps_lnd_gswp3_rst PASS +Test 158 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_p8_atmlnd_sbs -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_p8_atmlnd_sbs -Checking test 153 control_p8_atmlnd_sbs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_p8_atmlnd_sbs +Checking test 159 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4617,15 +4720,15 @@ Checking test 153 control_p8_atmlnd_sbs 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 = 240.033312 - 0: The maximum resident set size (KB) = 1413364 + 0: The total amount of wall time = 222.439809 + 0: The maximum resident set size (KB) = 1413772 -Test 153 control_p8_atmlnd_sbs PASS +Test 159 control_p8_atmlnd_sbs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmwav_control_noaero_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmwav_control_noaero_p8 -Checking test 154 atmwav_control_noaero_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/atmwav_control_noaero_p8 +Checking test 160 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4667,15 +4770,15 @@ Checking test 154 atmwav_control_noaero_p8 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 = 106.754442 - 0: The maximum resident set size (KB) = 1392024 + 0: The total amount of wall time = 98.323763 + 0: The maximum resident set size (KB) = 1392732 -Test 154 atmwav_control_noaero_p8 PASS +Test 160 atmwav_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/control_atmwav -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/control_atmwav -Checking test 155 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/control_atmwav +Checking test 161 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4718,15 +4821,15 @@ Checking test 155 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 99.714327 - 0: The maximum resident set size (KB) = 451636 + 0: The total amount of wall time = 93.913584 + 0: The maximum resident set size (KB) = 452320 -Test 155 control_atmwav PASS +Test 161 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8 -Checking test 156 atmaero_control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/atmaero_control_p8 +Checking test 162 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4769,15 +4872,15 @@ Checking test 156 atmaero_control_p8 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 = 265.135700 - 0: The maximum resident set size (KB) = 1448264 + 0: The total amount of wall time = 243.314276 + 0: The maximum resident set size (KB) = 1461456 -Test 156 atmaero_control_p8 PASS +Test 162 atmaero_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad -Checking test 157 atmaero_control_p8_rad results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/atmaero_control_p8_rad +Checking test 163 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4820,15 +4923,15 @@ Checking test 157 atmaero_control_p8_rad 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 = 306.513684 - 0: The maximum resident set size (KB) = 1469848 + 0: The total amount of wall time = 299.802578 + 0: The maximum resident set size (KB) = 1468368 -Test 157 atmaero_control_p8_rad PASS +Test 163 atmaero_control_p8_rad PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/atmaero_control_p8_rad_micro -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/atmaero_control_p8_rad_micro -Checking test 158 atmaero_control_p8_rad_micro results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/atmaero_control_p8_rad_micro +Checking test 164 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4871,15 +4974,15 @@ Checking test 158 atmaero_control_p8_rad_micro 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 = 307.804775 - 0: The maximum resident set size (KB) = 1473604 + 0: The total amount of wall time = 303.410243 + 0: The maximum resident set size (KB) = 1474044 -Test 158 atmaero_control_p8_rad_micro PASS +Test 164 atmaero_control_p8_rad_micro PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq -Checking test 159 regional_atmaq results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_atmaq +Checking test 165 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4894,15 +4997,15 @@ Checking test 159 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 673.819586 - 0: The maximum resident set size (KB) = 971720 + 0: The total amount of wall time = 669.892096 + 0: The maximum resident set size (KB) = 953436 -Test 159 regional_atmaq PASS +Test 165 regional_atmaq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230407/INTEL/regional_atmaq_faster -working dir = /lustre/f2/scratch/Jong.Kim/FV3_RT/rt_9941/regional_atmaq_faster -Checking test 160 regional_atmaq_faster results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_18421/regional_atmaq_faster +Checking test 166 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4917,12 +5020,175 @@ Checking test 160 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 630.376389 - 0: The maximum resident set size (KB) = 962880 + 0: The total amount of wall time = 593.619291 + 0: The maximum resident set size (KB) = 951280 + +Test 166 regional_atmaq_faster PASS + +FAILED TESTS: +Test cpld_control_p8 003 failed in run_test failed +Test cpld_control_p8_faster 020 failed in run_test failed + +REGRESSION TEST FAILED +Tue 23 May 2023 08:25:10 PM EDT +Elapsed time: 04h:50m:22s. Have a nice day! +Wed 24 May 2023 12:02:18 PM EDT +Start Regression test + +Compile 001 elapsed time 983 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_3909/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/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 = 389.252775 + 0: The maximum resident set size (KB) = 1582044 + +Test 001 cpld_control_p8 PASS + + +REGRESSION TEST WAS SUCCESSFUL +Wed 24 May 2023 01:18:20 PM EDT +Elapsed time: 01h:16m:09s. Have a nice day! +Wed 24 May 2023 01:23:38 PM EDT +Start Regression test + +Compile 001 elapsed time 1244 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_27070/cpld_control_p8_faster +Checking test 001 cpld_control_p8_faster 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 = 373.476136 + 0: The maximum resident set size (KB) = 1567672 -Test 160 regional_atmaq_faster PASS +Test 001 cpld_control_p8_faster PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 10 04:15:46 EDT 2023 -Elapsed time: 07h:08m:57s. Have a nice day! +Wed 24 May 2023 01:57:06 PM EDT +Elapsed time: 00h:33m:47s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 38b4fa0a0d..a5d85565d2 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,23 @@ -Sun May 7 00:16:40 UTC 2023 +Tue May 23 21:23:52 UTC 2023 Start Regression test -Compile 001 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 350 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 104 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 422 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 342 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 343 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 269 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 149 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 119 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_c48 +Compile 001 elapsed time 191 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 199 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 355 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 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 005 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 431 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 361 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 358 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 275 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 242 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 151 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 135 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 116 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_c48 Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,14 +56,14 @@ Checking test 001 control_c48 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 = 691.612942 -0: The maximum resident set size (KB) = 703168 +0: The total amount of wall time = 686.923757 +0: The maximum resident set size (KB) = 709356 Test 001 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +74,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 649.314735 - 0: The maximum resident set size (KB) = 479776 + 0: The total amount of wall time = 647.801203 + 0: The maximum resident set size (KB) = 476728 Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +92,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 838.810404 - 0: The maximum resident set size (KB) = 490264 + 0: The total amount of wall time = 832.006174 + 0: The maximum resident set size (KB) = 484700 Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_p8 Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -144,14 +146,14 @@ Checking test 004 control_p8 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 = 887.666838 - 0: The maximum resident set size (KB) = 1235744 + 0: The total amount of wall time = 897.282258 + 0: The maximum resident set size (KB) = 1236532 Test 004 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -162,14 +164,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1504.008840 - 0: The maximum resident set size (KB) = 526192 + 0: The total amount of wall time = 1553.529218 + 0: The maximum resident set size (KB) = 520208 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control Checking test 006 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -216,14 +218,14 @@ Checking test 006 rap_control 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 = 1476.299944 - 0: The maximum resident set size (KB) = 824916 + 0: The total amount of wall time = 1482.995438 + 0: The maximum resident set size (KB) = 824148 Test 006 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_decomp Checking test 007 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -270,14 +272,14 @@ Checking test 007 rap_decomp 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 = 1418.991380 - 0: The maximum resident set size (KB) = 827144 + 0: The total amount of wall time = 1433.240265 + 0: The maximum resident set size (KB) = 828532 Test 007 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_2threads Checking test 008 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -324,14 +326,14 @@ Checking test 008 rap_2threads 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 = 1324.485925 - 0: The maximum resident set size (KB) = 900040 + 0: The total amount of wall time = 1376.475874 + 0: The maximum resident set size (KB) = 894756 Test 008 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_restart Checking test 009 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -370,14 +372,14 @@ Checking test 009 rap_restart 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 = 738.060577 - 0: The maximum resident set size (KB) = 546344 + 0: The total amount of wall time = 727.305744 + 0: The maximum resident set size (KB) = 547192 Test 009 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_sfcdiff Checking test 010 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -424,14 +426,14 @@ Checking test 010 rap_sfcdiff 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 = 1470.399186 - 0: The maximum resident set size (KB) = 828900 + 0: The total amount of wall time = 1469.299922 + 0: The maximum resident set size (KB) = 834328 Test 010 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_sfcdiff_decomp Checking test 011 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -478,14 +480,14 @@ Checking test 011 rap_sfcdiff_decomp 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 = 1446.364734 - 0: The maximum resident set size (KB) = 829240 + 0: The total amount of wall time = 1476.490470 + 0: The maximum resident set size (KB) = 830952 Test 011 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_sfcdiff_restart Checking test 012 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -524,14 +526,14 @@ Checking test 012 rap_sfcdiff_restart 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 = 1088.572288 - 0: The maximum resident set size (KB) = 550756 + 0: The total amount of wall time = 1060.786482 + 0: The maximum resident set size (KB) = 550376 Test 012 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control Checking test 013 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -578,14 +580,14 @@ Checking test 013 hrrr_control 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 = 1439.758372 - 0: The maximum resident set size (KB) = 828828 + 0: The total amount of wall time = 1433.299698 + 0: The maximum resident set size (KB) = 821936 Test 013 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_2threads Checking test 014 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -632,14 +634,14 @@ Checking test 014 hrrr_control_2threads 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 = 1479.540867 - 0: The maximum resident set size (KB) = 889064 + 0: The total amount of wall time = 1479.861511 + 0: The maximum resident set size (KB) = 889488 Test 014 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_decomp Checking test 015 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -686,28 +688,28 @@ Checking test 015 hrrr_control_decomp 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 = 1403.091147 - 0: The maximum resident set size (KB) = 827968 + 0: The total amount of wall time = 1385.827359 + 0: The maximum resident set size (KB) = 824544 Test 015 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_restart Checking test 016 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 1051.038281 - 0: The maximum resident set size (KB) = 546284 + 0: The total amount of wall time = 1025.594848 + 0: The maximum resident set size (KB) = 539616 Test 016 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -754,14 +756,14 @@ Checking test 017 rrfs_v1beta 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 = 1457.722590 - 0: The maximum resident set size (KB) = 822156 + 0: The total amount of wall time = 1453.619436 + 0: The maximum resident set size (KB) = 825976 Test 017 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_smoke_conus13km_hrrr_warm Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -770,14 +772,14 @@ Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 812.446337 - 0: The maximum resident set size (KB) = 671196 + 0: The total amount of wall time = 829.128850 + 0: The maximum resident set size (KB) = 671964 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -786,14 +788,14 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1043.920675 - 0: The maximum resident set size (KB) = 670984 + 0: The total amount of wall time = 1068.879382 + 0: The maximum resident set size (KB) = 670732 Test 019 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_conus13km_hrrr_warm Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -802,14 +804,14 @@ Checking test 020 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 794.784429 - 0: The maximum resident set size (KB) = 647152 + 0: The total amount of wall time = 773.167477 + 0: The maximum resident set size (KB) = 648332 Test 020 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_smoke_conus13km_radar_tten_warm Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -818,262 +820,262 @@ Checking test 021 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 803.436551 - 0: The maximum resident set size (KB) = 668200 + 0: The total amount of wall time = 789.072447 + 0: The maximum resident set size (KB) = 675480 Test 021 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 022 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 403.273780 - 0: The maximum resident set size (KB) = 635728 + 0: The total amount of wall time = 406.053379 + 0: The maximum resident set size (KB) = 635292 Test 022 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_diag_debug Checking test 023 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 123.723268 - 0: The maximum resident set size (KB) = 533840 + 0: The total amount of wall time = 122.701783 + 0: The maximum resident set size (KB) = 535580 Test 023 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/regional_debug Checking test 024 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 677.735811 - 0: The maximum resident set size (KB) = 594692 + 0: The total amount of wall time = 585.796549 + 0: The maximum resident set size (KB) = 594704 Test 024 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control_debug Checking test 025 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.069544 - 0: The maximum resident set size (KB) = 848212 + 0: The total amount of wall time = 175.707826 + 0: The maximum resident set size (KB) = 839108 Test 025 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_debug Checking test 026 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.229655 - 0: The maximum resident set size (KB) = 836172 + 0: The total amount of wall time = 170.270903 + 0: The maximum resident set size (KB) = 835652 Test 026 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_diag_debug Checking test 027 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.267207 - 0: The maximum resident set size (KB) = 922652 + 0: The total amount of wall time = 207.658189 + 0: The maximum resident set size (KB) = 924312 Test 027 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_noah_sfcdiff_cires_ugwp_debug Checking test 028 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.617750 - 0: The maximum resident set size (KB) = 841744 + 0: The total amount of wall time = 273.436292 + 0: The maximum resident set size (KB) = 841888 Test 028 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_progcld_thompson_debug Checking test 029 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.951614 - 0: The maximum resident set size (KB) = 844796 + 0: The total amount of wall time = 173.273853 + 0: The maximum resident set size (KB) = 845556 Test 029 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_v1beta_debug Checking test 030 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.182619 - 0: The maximum resident set size (KB) = 847468 + 0: The total amount of wall time = 171.067970 + 0: The maximum resident set size (KB) = 841412 Test 030 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_ras_debug Checking test 031 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 102.098352 - 0: The maximum resident set size (KB) = 485576 + 0: The total amount of wall time = 103.706961 + 0: The maximum resident set size (KB) = 490036 Test 031 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_stochy_debug Checking test 032 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.409955 - 0: The maximum resident set size (KB) = 478296 + 0: The total amount of wall time = 116.020647 + 0: The maximum resident set size (KB) = 481820 Test 032 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_debug_p8 Checking test 033 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.384765 - 0: The maximum resident set size (KB) = 1229456 + 0: The total amount of wall time = 115.982713 + 0: The maximum resident set size (KB) = 1230336 Test 033 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 034 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 630.934137 - 0: The maximum resident set size (KB) = 688544 + 0: The total amount of wall time = 633.915034 + 0: The maximum resident set size (KB) = 685940 Test 034 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 738.145071 - 0: The maximum resident set size (KB) = 684368 + 0: The total amount of wall time = 747.794407 + 0: The maximum resident set size (KB) = 688080 Test 035 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rrfs_conus13km_hrrr_warm_debug Checking test 036 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 585.768557 - 0: The maximum resident set size (KB) = 657144 + 0: The total amount of wall time = 581.361113 + 0: The maximum resident set size (KB) = 664728 Test 036 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_flake_debug Checking test 037 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.401634 - 0: The maximum resident set size (KB) = 852008 + 0: The total amount of wall time = 168.574163 + 0: The maximum resident set size (KB) = 843208 Test 037 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_clm_lake_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_clm_lake_debug Checking test 038 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.179758 - 0: The maximum resident set size (KB) = 844748 + 0: The total amount of wall time = 190.715587 + 0: The maximum resident set size (KB) = 842728 Test 038 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/control_wam_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/control_wam_debug Checking test 039 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 181.538708 - 0: The maximum resident set size (KB) = 193268 + 0: The total amount of wall time = 184.808565 + 0: The maximum resident set size (KB) = 194384 Test 039 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control_dyn32_phy32 Checking test 040 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1120,14 +1122,14 @@ Checking test 040 rap_control_dyn32_phy32 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 = 1483.985617 - 0: The maximum resident set size (KB) = 680048 + 0: The total amount of wall time = 1441.392147 + 0: The maximum resident set size (KB) = 679556 Test 040 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_dyn32_phy32 Checking test 041 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1174,14 +1176,14 @@ Checking test 041 hrrr_control_dyn32_phy32 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 = 733.203645 - 0: The maximum resident set size (KB) = 677748 + 0: The total amount of wall time = 737.341923 + 0: The maximum resident set size (KB) = 682784 Test 041 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_2threads_dyn32_phy32 Checking test 042 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1228,14 +1230,14 @@ Checking test 042 rap_2threads_dyn32_phy32 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 = 1348.846945 - 0: The maximum resident set size (KB) = 733752 + 0: The total amount of wall time = 1353.230861 + 0: The maximum resident set size (KB) = 726152 Test 042 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_2threads_dyn32_phy32 Checking test 043 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1282,14 +1284,14 @@ Checking test 043 hrrr_control_2threads_dyn32_phy32 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 = 766.729496 - 0: The maximum resident set size (KB) = 722460 + 0: The total amount of wall time = 750.585927 + 0: The maximum resident set size (KB) = 723516 Test 043 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_decomp_dyn32_phy32 Checking test 044 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1336,14 +1338,14 @@ Checking test 044 hrrr_control_decomp_dyn32_phy32 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 = 723.153026 - 0: The maximum resident set size (KB) = 687240 + 0: The total amount of wall time = 723.933827 + 0: The maximum resident set size (KB) = 677576 Test 044 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_restart_dyn32_phy32 Checking test 045 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -1382,28 +1384,28 @@ Checking test 045 rap_restart_dyn32_phy32 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 = 1090.360071 - 0: The maximum resident set size (KB) = 511740 + 0: The total amount of wall time = 1053.334590 + 0: The maximum resident set size (KB) = 510472 Test 045 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_restart_dyn32_phy32 Checking test 046 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 359.523102 - 0: The maximum resident set size (KB) = 506808 + 0: The total amount of wall time = 361.841569 + 0: The maximum resident set size (KB) = 507572 Test 046 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control_dyn64_phy32 Checking test 047 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -1450,58 +1452,128 @@ Checking test 047 rap_control_dyn64_phy32 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 = 1071.730803 - 0: The maximum resident set size (KB) = 707532 + 0: The total amount of wall time = 1100.567474 + 0: The maximum resident set size (KB) = 704332 Test 047 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control_debug_dyn32_phy32 Checking test 048 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.504776 - 0: The maximum resident set size (KB) = 698472 + 0: The total amount of wall time = 172.397451 + 0: The maximum resident set size (KB) = 699140 Test 048 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/hrrr_control_debug_dyn32_phy32 Checking test 049 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.336581 - 0: The maximum resident set size (KB) = 692736 + 0: The total amount of wall time = 170.538195 + 0: The maximum resident set size (KB) = 692168 Test 049 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/rap_control_dyn64_phy32_debug Checking test 050 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.567054 - 0: The maximum resident set size (KB) = 714436 + 0: The total amount of wall time = 203.911208 + 0: The maximum resident set size (KB) = 713488 Test 050 rap_control_dyn64_phy32_debug PASS -Test 051 cpld_control_p8 FAIL +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/cpld_control_p8 +Checking test 051 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/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 = 1687.148486 + 0: The maximum resident set size (KB) = 1427388 + +Test 051 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_control_nowave_noaero_p8 + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/cpld_control_nowave_noaero_p8 Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1563,14 +1635,14 @@ Checking test 052 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1225.420847 - 0: The maximum resident set size (KB) = 1334116 + 0: The total amount of wall time = 1238.410556 + 0: The maximum resident set size (KB) = 1331452 Test 052 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/cpld_debug_p8 Checking test 053 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1623,38 +1695,15 @@ Checking test 053 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 945.235437 - 0: The maximum resident set size (KB) = 1437376 + 0: The total amount of wall time = 823.131161 + 0: The maximum resident set size (KB) = 1433264 Test 053 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_4097/datm_cdeps_control_cfsr -Checking test 054 datm_cdeps_control_cfsr 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 = 176.318780 - 0: The maximum resident set size (KB) = 662900 - -Test 054 datm_cdeps_control_cfsr PASS - -FAILED TESTS: -Test cpld_control_p8 051 failed in run_test failed - -REGRESSION TEST FAILED -Sun May 7 07:16:26 UTC 2023 -Elapsed time: 06h:59m:47s. Have a nice day! -Sun May 7 12:08:26 UTC 2023 -Start Regression test - -Compile 001 elapsed time 271 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_12317/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/cpld_control_pdlib_p8 +Checking test 054 cpld_control_pdlib_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1679,7 +1728,6 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/20210323.060000.coupler.res .........OK Comparing RESTART/20210323.060000.fv_core.res.nc .........OK Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK @@ -1718,12 +1766,84 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1759.336840 - 0: The maximum resident set size (KB) = 1429516 + 0: The total amount of wall time = 1689.726892 + 0: The maximum resident set size (KB) = 1287244 + +Test 054 cpld_control_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/cpld_debug_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/cpld_debug_pdlib_p8 +Checking test 055 cpld_debug_pdlib_p8 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 = 913.128235 + 0: The maximum resident set size (KB) = 1295460 + +Test 055 cpld_debug_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_296961/datm_cdeps_control_cfsr +Checking test 056 datm_cdeps_control_cfsr 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 = 180.837227 + 0: The maximum resident set size (KB) = 663980 -Test 001 cpld_control_p8 PASS Tries: 2 +Test 056 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sun May 7 14:31:34 UTC 2023 -Elapsed time: 02h:23m:08s. Have a nice day! +Tue May 23 22:41:15 UTC 2023 +Elapsed time: 01h:17m:24s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 90fb6d61e3..aab2c5314a 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,43 +1,45 @@ -Sat May 6 22:27:18 UTC 2023 +Tue May 23 19:12:44 UTC 2023 Start Regression test -Compile 001 elapsed time 645 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 645 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 600 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 231 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 654 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 652 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 609 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 229 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 005 elapsed time 206 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 562 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 557 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 724 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 578 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 532 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 513 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 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 016 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 172 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 602 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 247 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 178 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 106 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 184 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 64 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 524 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 568 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 533 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 505 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 500 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 176 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 575 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_mixedmode +Compile 006 elapsed time 550 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 559 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 738 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 892 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 204 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 577 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 473 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 640 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 218 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 168 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 165 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 564 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 206 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 024 elapsed time 675 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 568 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 026 elapsed time 229 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 102 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 028 elapsed time 183 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 029 elapsed time 55 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 527 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 549 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 599 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 524 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 525 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 035 elapsed time 173 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 036 elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 316.030188 - 0: The maximum resident set size (KB) = 3134584 + 0: The total amount of wall time = 315.823467 + 0: The maximum resident set size (KB) = 3069636 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 229.299897 - 0: The maximum resident set size (KB) = 1710748 + 0: The total amount of wall time = 221.989264 + 0: The maximum resident set size (KB) = 1644628 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 344.720942 - 0: The maximum resident set size (KB) = 3160168 + 0: The total amount of wall time = 343.346699 + 0: The maximum resident set size (KB) = 3152900 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 196.781868 - 0: The maximum resident set size (KB) = 3036612 + 0: The total amount of wall time = 197.356722 + 0: The maximum resident set size (KB) = 3042156 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 363.796427 - 0: The maximum resident set size (KB) = 3173820 + 0: The total amount of wall time = 344.388329 + 0: The maximum resident set size (KB) = 3147928 Test 005 cpld_control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_qr_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 204.261175 - 0: The maximum resident set size (KB) = 3066668 + 0: The total amount of wall time = 200.887283 + 0: The maximum resident set size (KB) = 3057712 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 359.033644 - 0: The maximum resident set size (KB) = 3504096 + 0: The total amount of wall time = 351.578877 + 0: The maximum resident set size (KB) = 3503420 Test 007 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 347.600009 - 0: The maximum resident set size (KB) = 3151644 + 0: The total amount of wall time = 349.136718 + 0: The maximum resident set size (KB) = 3105216 Test 008 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 282.874009 - 0: The maximum resident set size (KB) = 3006024 + 0: The total amount of wall time = 286.286380 + 0: The maximum resident set size (KB) = 2997760 Test 009 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +691,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 350.433740 - 0: The maximum resident set size (KB) = 3146124 + 0: The total amount of wall time = 341.574135 + 0: The maximum resident set size (KB) = 3163964 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +751,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 583.959711 - 0: The maximum resident set size (KB) = 3239904 + 0: The total amount of wall time = 598.125247 + 0: The maximum resident set size (KB) = 3246540 Test 011 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +811,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 387.630995 - 0: The maximum resident set size (KB) = 3163220 + 0: The total amount of wall time = 400.175415 + 0: The maximum resident set size (KB) = 3100824 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +866,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 736.936664 - 0: The maximum resident set size (KB) = 3975864 + 0: The total amount of wall time = 718.811038 + 0: The maximum resident set size (KB) = 4019480 Test 013 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +921,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 464.445764 - 0: The maximum resident set size (KB) = 3957864 + 0: The total amount of wall time = 460.713880 + 0: The maximum resident set size (KB) = 3961716 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +992,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 266.714782 - 0: The maximum resident set size (KB) = 1702236 + 0: The total amount of wall time = 265.267549 + 0: The maximum resident set size (KB) = 1716480 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1061,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 263.451496 - 0: The maximum resident set size (KB) = 1751580 + 0: The total amount of wall time = 260.531031 + 0: The maximum resident set size (KB) = 1748420 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1121,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 524.506699 - 0: The maximum resident set size (KB) = 3210916 + 0: The total amount of wall time = 524.401435 + 0: The maximum resident set size (KB) = 3206536 Test 017 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1180,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.523239 - 0: The maximum resident set size (KB) = 1714572 + 0: The total amount of wall time = 362.761881 + 0: The maximum resident set size (KB) = 1712384 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 019 cpld_control_noaero_p8_agrid 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 = 274.078376 - 0: The maximum resident set size (KB) = 1745448 + 0: The total amount of wall time = 276.284770 + 0: The maximum resident set size (KB) = 1747936 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1306,14 @@ Checking test 020 cpld_control_c48 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 = 588.326597 - 0: The maximum resident set size (KB) = 2806248 + 0: The total amount of wall time = 592.134937 + 0: The maximum resident set size (KB) = 2808828 Test 020 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1363,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 156.844167 - 0: The maximum resident set size (KB) = 2788828 + 0: The total amount of wall time = 157.390458 + 0: The maximum resident set size (KB) = 2801968 Test 021 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1420,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.168910 - 0: The maximum resident set size (KB) = 2231568 + 0: The total amount of wall time = 83.190089 + 0: The maximum resident set size (KB) = 2228220 Test 022 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1492,275 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 321.571268 - 0: The maximum resident set size (KB) = 3153472 + 0: The total amount of wall time = 326.373646 + 0: The maximum resident set size (KB) = 3162836 Test 023 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_flake -Checking test 024 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_control_pdlib_p8 +Checking test 024 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1196.584980 + 0: The maximum resident set size (KB) = 1708260 + +Test 024 cpld_control_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_restart_pdlib_p8 +Checking test 025 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 565.183635 + 0: The maximum resident set size (KB) = 1020608 + +Test 025 cpld_restart_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_mpi_pdlib_p8 +Checking test 026 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1083.153495 + 0: The maximum resident set size (KB) = 1641276 + +Test 026 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_pdlib_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/cpld_debug_pdlib_p8 +Checking test 027 cpld_debug_pdlib_p8 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 = 1390.831571 + 0: The maximum resident set size (KB) = 1688532 + +Test 027 cpld_debug_pdlib_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_flake +Checking test 028 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1508,15 +1770,15 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.114373 - 0: The maximum resident set size (KB) = 675364 + 0: The total amount of wall time = 188.603741 + 0: The maximum resident set size (KB) = 674488 -Test 024 control_flake PASS +Test 028 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid -Checking test 025 control_CubedSphereGrid results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_CubedSphereGrid +Checking test 029 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1542,29 +1804,29 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.918610 - 0: The maximum resident set size (KB) = 628388 + 0: The total amount of wall time = 130.146868 + 0: The maximum resident set size (KB) = 624440 -Test 025 control_CubedSphereGrid PASS +Test 029 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_parallel -Checking test 026 control_CubedSphereGrid_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_CubedSphereGrid_parallel +Checking test 030 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 128.380662 - 0: The maximum resident set size (KB) = 632556 + 0: The total amount of wall time = 129.519575 + 0: The maximum resident set size (KB) = 628664 -Test 026 control_CubedSphereGrid_parallel PASS +Test 030 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_latlon -Checking test 027 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_latlon +Checking test 031 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,15 +1836,15 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.376694 - 0: The maximum resident set size (KB) = 621536 + 0: The total amount of wall time = 135.347767 + 0: The maximum resident set size (KB) = 603912 -Test 027 control_latlon PASS +Test 031 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel -Checking test 028 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_wrtGauss_netcdf_parallel +Checking test 032 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1592,15 +1854,15 @@ Checking test 028 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 139.499111 - 0: The maximum resident set size (KB) = 607696 + 0: The total amount of wall time = 136.426208 + 0: The maximum resident set size (KB) = 619220 -Test 028 control_wrtGauss_netcdf_parallel PASS +Test 032 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c48 -Checking test 029 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_c48 +Checking test 033 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1900,15 @@ Checking test 029 control_c48 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 = 366.514430 -0: The maximum resident set size (KB) = 822892 +0: The total amount of wall time = 368.855674 +0: The maximum resident set size (KB) = 823696 -Test 029 control_c48 PASS +Test 033 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c192 -Checking test 030 control_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_c192 +Checking test 034 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1918,15 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.992750 - 0: The maximum resident set size (KB) = 766924 + 0: The total amount of wall time = 527.038673 + 0: The maximum resident set size (KB) = 765368 -Test 030 control_c192 PASS +Test 034 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384 -Checking test 031 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_c384 +Checking test 035 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1674,15 +1936,15 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 519.102356 - 0: The maximum resident set size (KB) = 1257568 + 0: The total amount of wall time = 522.730913 + 0: The maximum resident set size (KB) = 1267952 -Test 031 control_c384 PASS +Test 035 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_c384gdas -Checking test 032 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_c384gdas +Checking test 036 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1724,15 +1986,15 @@ Checking test 032 control_c384gdas 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 = 457.274603 - 0: The maximum resident set size (KB) = 1376056 + 0: The total amount of wall time = 464.072066 + 0: The maximum resident set size (KB) = 1367920 -Test 032 control_c384gdas PASS +Test 036 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy -Checking test 033 control_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_stochy +Checking test 037 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1742,29 +2004,29 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.619846 - 0: The maximum resident set size (KB) = 630748 + 0: The total amount of wall time = 87.347386 + 0: The maximum resident set size (KB) = 629148 -Test 033 control_stochy PASS +Test 037 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_restart -Checking test 034 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_stochy_restart +Checking test 038 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.757237 - 0: The maximum resident set size (KB) = 491044 + 0: The total amount of wall time = 48.030574 + 0: The maximum resident set size (KB) = 480676 -Test 034 control_stochy_restart PASS +Test 038 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp -Checking test 035 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_lndp +Checking test 039 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1774,15 +2036,15 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.436482 - 0: The maximum resident set size (KB) = 619440 + 0: The total amount of wall time = 81.461024 + 0: The maximum resident set size (KB) = 632560 -Test 035 control_lndp PASS +Test 039 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr4 -Checking test 036 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_iovr4 +Checking test 040 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1796,15 +2058,15 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.366704 - 0: The maximum resident set size (KB) = 627192 + 0: The total amount of wall time = 134.856745 + 0: The maximum resident set size (KB) = 622684 -Test 036 control_iovr4 PASS +Test 040 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_iovr5 -Checking test 037 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_iovr5 +Checking test 041 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,15 +2080,15 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.807453 - 0: The maximum resident set size (KB) = 630608 + 0: The total amount of wall time = 135.568609 + 0: The maximum resident set size (KB) = 630512 -Test 037 control_iovr5 PASS +Test 041 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8 -Checking test 038 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8 +Checking test 042 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1872,15 +2134,15 @@ Checking test 038 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.861049 - 0: The maximum resident set size (KB) = 1589680 + 0: The total amount of wall time = 170.700009 + 0: The maximum resident set size (KB) = 1604880 -Test 038 control_p8 PASS +Test 042 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_p8 -Checking test 039 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_restart_p8 +Checking test 043 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1918,15 +2180,15 @@ Checking test 039 control_restart_p8 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 = 87.227506 - 0: The maximum resident set size (KB) = 862372 + 0: The total amount of wall time = 88.577782 + 0: The maximum resident set size (KB) = 871048 -Test 039 control_restart_p8 PASS +Test 043 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_qr_p8 -Checking test 040 control_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_qr_p8 +Checking test 044 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1972,15 +2234,15 @@ Checking test 040 control_qr_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......OK - 0: The total amount of wall time = 171.376711 - 0: The maximum resident set size (KB) = 1593612 + 0: The total amount of wall time = 170.110533 + 0: The maximum resident set size (KB) = 1601212 -Test 040 control_qr_p8 PASS +Test 044 control_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_restart_qr_p8 -Checking test 041 control_restart_qr_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_restart_qr_p8 +Checking test 045 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2018,15 +2280,15 @@ Checking test 041 control_restart_qr_p8 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 = 90.472501 - 0: The maximum resident set size (KB) = 859124 + 0: The total amount of wall time = 91.358605 + 0: The maximum resident set size (KB) = 864216 -Test 041 control_restart_qr_p8 PASS +Test 045 control_restart_qr_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_decomp_p8 -Checking test 042 control_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_decomp_p8 +Checking test 046 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2068,15 +2330,15 @@ Checking test 042 control_decomp_p8 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 = 177.751023 - 0: The maximum resident set size (KB) = 1569164 + 0: The total amount of wall time = 177.941724 + 0: The maximum resident set size (KB) = 1576156 -Test 042 control_decomp_p8 PASS +Test 046 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_2threads_p8 -Checking test 043 control_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_2threads_p8 +Checking test 047 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2118,15 +2380,15 @@ Checking test 043 control_2threads_p8 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 = 161.494115 - 0: The maximum resident set size (KB) = 1658144 + 0: The total amount of wall time = 157.745302 + 0: The maximum resident set size (KB) = 1696584 -Test 043 control_2threads_p8 PASS +Test 047 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_lndp -Checking test 044 control_p8_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8_lndp +Checking test 048 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,15 +2406,15 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.334324 - 0: The maximum resident set size (KB) = 1592908 + 0: The total amount of wall time = 314.429116 + 0: The maximum resident set size (KB) = 1608968 -Test 044 control_p8_lndp PASS +Test 048 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_rrtmgp -Checking test 045 control_p8_rrtmgp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8_rrtmgp +Checking test 049 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,15 +2460,15 @@ Checking test 045 control_p8_rrtmgp 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.549991 - 0: The maximum resident set size (KB) = 1658784 + 0: The total amount of wall time = 231.471035 + 0: The maximum resident set size (KB) = 1659632 -Test 045 control_p8_rrtmgp PASS +Test 049 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_mynn -Checking test 046 control_p8_mynn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8_mynn +Checking test 050 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2252,15 +2514,15 @@ Checking test 046 control_p8_mynn 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 = 172.591899 - 0: The maximum resident set size (KB) = 1597172 + 0: The total amount of wall time = 173.902971 + 0: The maximum resident set size (KB) = 1609684 -Test 046 control_p8_mynn PASS +Test 050 control_p8_mynn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/merra2_thompson -Checking test 047 merra2_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/merra2_thompson +Checking test 051 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2568,15 @@ Checking test 047 merra2_thompson 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 = 193.997270 - 0: The maximum resident set size (KB) = 1601328 + 0: The total amount of wall time = 192.237100 + 0: The maximum resident set size (KB) = 1609308 -Test 047 merra2_thompson PASS +Test 051 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control -Checking test 048 regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_control +Checking test 052 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2324,29 +2586,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.298418 - 0: The maximum resident set size (KB) = 864704 + 0: The total amount of wall time = 302.437738 + 0: The maximum resident set size (KB) = 868100 -Test 048 regional_control PASS +Test 052 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart -Checking test 049 regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_restart +Checking test 053 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 150.673233 - 0: The maximum resident set size (KB) = 859896 + 0: The total amount of wall time = 156.420937 + 0: The maximum resident set size (KB) = 857456 -Test 049 regional_restart PASS +Test 053 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_qr -Checking test 050 regional_control_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_control_qr +Checking test 054 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2356,29 +2618,29 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.548434 - 0: The maximum resident set size (KB) = 868092 + 0: The total amount of wall time = 303.044978 + 0: The maximum resident set size (KB) = 866196 -Test 050 regional_control_qr PASS +Test 054 regional_control_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_restart_qr -Checking test 051 regional_restart_qr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_restart_qr +Checking test 055 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.565996 - 0: The maximum resident set size (KB) = 857592 + 0: The total amount of wall time = 154.153147 + 0: The maximum resident set size (KB) = 860400 -Test 051 regional_restart_qr PASS +Test 055 regional_restart_qr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_decomp -Checking test 052 regional_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_decomp +Checking test 056 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,15 +2650,15 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 312.842080 - 0: The maximum resident set size (KB) = 856248 + 0: The total amount of wall time = 315.254495 + 0: The maximum resident set size (KB) = 859960 -Test 052 regional_decomp PASS +Test 056 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2threads -Checking test 053 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_2threads +Checking test 057 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2406,44 +2668,44 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 178.871543 - 0: The maximum resident set size (KB) = 846636 + 0: The total amount of wall time = 182.422076 + 0: The maximum resident set size (KB) = 844308 -Test 053 regional_2threads PASS +Test 057 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_noquilt -Checking test 054 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_noquilt +Checking test 058 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.013248 - 0: The maximum resident set size (KB) = 852916 + 0: The total amount of wall time = 320.038608 + 0: The maximum resident set size (KB) = 853404 -Test 054 regional_noquilt PASS +Test 058 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_netcdf_parallel -Checking test 055 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_netcdf_parallel +Checking test 059 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 294.682215 - 0: The maximum resident set size (KB) = 865484 + 0: The total amount of wall time = 293.944104 + 0: The maximum resident set size (KB) = 858852 -Test 055 regional_netcdf_parallel PASS +Test 059 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_2dwrtdecomp -Checking test 056 regional_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_2dwrtdecomp +Checking test 060 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2715,15 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.267721 - 0: The maximum resident set size (KB) = 863724 + 0: The total amount of wall time = 301.420377 + 0: The maximum resident set size (KB) = 862620 -Test 056 regional_2dwrtdecomp PASS +Test 060 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_wofs -Checking test 057 regional_wofs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_wofs +Checking test 061 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2471,15 +2733,15 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 375.204879 - 0: The maximum resident set size (KB) = 628896 + 0: The total amount of wall time = 377.251264 + 0: The maximum resident set size (KB) = 599384 -Test 057 regional_wofs PASS +Test 061 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control -Checking test 058 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control +Checking test 062 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2525,15 +2787,15 @@ Checking test 058 rap_control 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 = 459.901336 - 0: The maximum resident set size (KB) = 1058020 + 0: The total amount of wall time = 460.144179 + 0: The maximum resident set size (KB) = 1046900 -Test 058 rap_control PASS +Test 062 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb -Checking test 059 regional_spp_sppt_shum_skeb results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_spp_sppt_shum_skeb +Checking test 063 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2543,15 +2805,15 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 236.409291 - 0: The maximum resident set size (KB) = 1176844 + 0: The total amount of wall time = 235.538326 + 0: The maximum resident set size (KB) = 1181076 -Test 059 regional_spp_sppt_shum_skeb PASS +Test 063 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_decomp -Checking test 060 rap_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_decomp +Checking test 064 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2597,15 +2859,15 @@ Checking test 060 rap_decomp 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 = 480.693671 - 0: The maximum resident set size (KB) = 997864 + 0: The total amount of wall time = 479.119670 + 0: The maximum resident set size (KB) = 962928 -Test 060 rap_decomp PASS +Test 064 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads -Checking test 061 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_2threads +Checking test 065 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2651,15 +2913,15 @@ Checking test 061 rap_2threads 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 = 434.737426 - 0: The maximum resident set size (KB) = 1138280 + 0: The total amount of wall time = 435.777293 + 0: The maximum resident set size (KB) = 1128720 -Test 061 rap_2threads PASS +Test 065 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart -Checking test 062 rap_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_restart +Checking test 066 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2697,15 +2959,15 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.553469 - 0: The maximum resident set size (KB) = 963572 + 0: The total amount of wall time = 235.197971 + 0: The maximum resident set size (KB) = 936520 -Test 062 rap_restart PASS +Test 066 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff -Checking test 063 rap_sfcdiff results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_sfcdiff +Checking test 067 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2751,15 +3013,15 @@ Checking test 063 rap_sfcdiff 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 = 459.365325 - 0: The maximum resident set size (KB) = 1059128 + 0: The total amount of wall time = 461.253078 + 0: The maximum resident set size (KB) = 1052740 -Test 063 rap_sfcdiff PASS +Test 067 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_decomp -Checking test 064 rap_sfcdiff_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_sfcdiff_decomp +Checking test 068 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2805,15 +3067,15 @@ Checking test 064 rap_sfcdiff_decomp 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.636585 - 0: The maximum resident set size (KB) = 967740 + 0: The total amount of wall time = 485.181324 + 0: The maximum resident set size (KB) = 994016 -Test 064 rap_sfcdiff_decomp PASS +Test 068 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_restart -Checking test 065 rap_sfcdiff_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_sfcdiff_restart +Checking test 069 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2851,15 +3113,15 @@ Checking test 065 rap_sfcdiff_restart 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 = 344.468160 - 0: The maximum resident set size (KB) = 984276 + 0: The total amount of wall time = 340.721863 + 0: The maximum resident set size (KB) = 978372 -Test 065 rap_sfcdiff_restart PASS +Test 069 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control -Checking test 066 hrrr_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control +Checking test 070 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2905,15 +3167,15 @@ Checking test 066 hrrr_control 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 = 430.284503 - 0: The maximum resident set size (KB) = 1048308 + 0: The total amount of wall time = 431.190263 + 0: The maximum resident set size (KB) = 1042568 -Test 066 hrrr_control PASS +Test 070 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp -Checking test 067 hrrr_control_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_decomp +Checking test 071 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2959,15 +3221,15 @@ Checking test 067 hrrr_control_decomp 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 = 446.816368 - 0: The maximum resident set size (KB) = 994000 + 0: The total amount of wall time = 450.760140 + 0: The maximum resident set size (KB) = 963900 -Test 067 hrrr_control_decomp PASS +Test 071 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads -Checking test 068 hrrr_control_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_2threads +Checking test 072 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3013,29 +3275,29 @@ Checking test 068 hrrr_control_2threads 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 = 396.814767 - 0: The maximum resident set size (KB) = 1069532 + 0: The total amount of wall time = 398.489005 + 0: The maximum resident set size (KB) = 1061940 -Test 068 hrrr_control_2threads PASS +Test 072 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart -Checking test 069 hrrr_control_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_restart +Checking test 073 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 318.785043 - 0: The maximum resident set size (KB) = 972980 + 0: The total amount of wall time = 318.445302 + 0: The maximum resident set size (KB) = 979616 -Test 069 hrrr_control_restart PASS +Test 073 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta -Checking test 070 rrfs_v1beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_v1beta +Checking test 074 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3081,15 +3343,15 @@ Checking test 070 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 460.236135 - 0: The maximum resident set size (KB) = 1051204 + 0: The total amount of wall time = 458.333698 + 0: The maximum resident set size (KB) = 1020848 -Test 070 rrfs_v1beta PASS +Test 074 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl -Checking test 071 rrfs_v1nssl results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_v1nssl +Checking test 075 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3103,15 +3365,15 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 541.354527 - 0: The maximum resident set size (KB) = 687248 + 0: The total amount of wall time = 536.647684 + 0: The maximum resident set size (KB) = 693572 -Test 071 rrfs_v1nssl PASS +Test 075 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1nssl_nohailnoccn -Checking test 072 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_v1nssl_nohailnoccn +Checking test 076 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3125,15 +3387,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 525.662132 - 0: The maximum resident set size (KB) = 749976 + 0: The total amount of wall time = 525.995935 + 0: The maximum resident set size (KB) = 727708 -Test 072 rrfs_v1nssl_nohailnoccn PASS +Test 076 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_smoke_conus13km_hrrr_warm +Checking test 077 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3141,15 +3403,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 151.071250 - 0: The maximum resident set size (KB) = 1023100 + 0: The total amount of wall time = 154.173617 + 0: The maximum resident set size (KB) = 998320 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3157,15 +3419,15 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 90.746776 - 0: The maximum resident set size (KB) = 940984 + 0: The total amount of wall time = 99.016480 + 0: The maximum resident set size (KB) = 934048 -Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm -Checking test 075 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_conus13km_hrrr_warm +Checking test 079 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3173,15 +3435,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.099306 - 0: The maximum resident set size (KB) = 984424 + 0: The total amount of wall time = 144.900718 + 0: The maximum resident set size (KB) = 958976 -Test 075 rrfs_conus13km_hrrr_warm PASS +Test 079 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_radar_tten_warm -Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_smoke_conus13km_radar_tten_warm +Checking test 080 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3189,27 +3451,27 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 150.957414 - 0: The maximum resident set size (KB) = 1029524 + 0: The total amount of wall time = 156.273488 + 0: The maximum resident set size (KB) = 1037100 -Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 080 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 081 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 73.418916 - 0: The maximum resident set size (KB) = 977244 + 0: The total amount of wall time = 72.370550 + 0: The maximum resident set size (KB) = 957936 -Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 081 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg -Checking test 078 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_csawmg +Checking test 082 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3219,15 +3481,15 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.002165 - 0: The maximum resident set size (KB) = 723644 + 0: The total amount of wall time = 344.682135 + 0: The maximum resident set size (KB) = 719880 -Test 078 control_csawmg PASS +Test 082 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt -Checking test 079 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_csawmgt +Checking test 083 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3237,15 +3499,15 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 343.072232 - 0: The maximum resident set size (KB) = 720404 + 0: The total amount of wall time = 344.233014 + 0: The maximum resident set size (KB) = 687248 -Test 079 control_csawmgt PASS +Test 083 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras -Checking test 080 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_ras +Checking test 084 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3255,27 +3517,27 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.356188 - 0: The maximum resident set size (KB) = 720228 + 0: The total amount of wall time = 182.046232 + 0: The maximum resident set size (KB) = 715692 -Test 080 control_ras PASS +Test 084 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam -Checking test 081 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_wam +Checking test 085 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 114.212275 - 0: The maximum resident set size (KB) = 642732 + 0: The total amount of wall time = 111.761320 + 0: The maximum resident set size (KB) = 613956 -Test 081 control_wam PASS +Test 085 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_faster -Checking test 082 control_p8_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8_faster +Checking test 086 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3321,15 +3583,15 @@ Checking test 082 control_p8_faster 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 = 156.236405 - 0: The maximum resident set size (KB) = 1597528 + 0: The total amount of wall time = 156.429578 + 0: The maximum resident set size (KB) = 1597032 -Test 082 control_p8_faster PASS +Test 086 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_control_faster -Checking test 083 regional_control_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_control_faster +Checking test 087 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3339,57 +3601,57 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 273.206661 - 0: The maximum resident set size (KB) = 866544 + 0: The total amount of wall time = 274.298033 + 0: The maximum resident set size (KB) = 866960 -Test 083 regional_control_faster PASS +Test 087 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 088 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 843.816497 - 0: The maximum resident set size (KB) = 1028356 + 0: The total amount of wall time = 842.572199 + 0: The maximum resident set size (KB) = 1026856 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 088 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 459.206651 - 0: The maximum resident set size (KB) = 973068 + 0: The total amount of wall time = 476.910530 + 0: The maximum resident set size (KB) = 976720 -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_conus13km_hrrr_warm_debug -Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_conus13km_hrrr_warm_debug +Checking test 090 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 743.716435 - 0: The maximum resident set size (KB) = 1009980 + 0: The total amount of wall time = 762.232681 + 0: The maximum resident set size (KB) = 1013876 -Test 086 rrfs_conus13km_hrrr_warm_debug PASS +Test 090 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_CubedSphereGrid_debug -Checking test 087 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_CubedSphereGrid_debug +Checking test 091 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3415,349 +3677,349 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 145.501912 - 0: The maximum resident set size (KB) = 786020 + 0: The total amount of wall time = 145.578447 + 0: The maximum resident set size (KB) = 790544 -Test 087 control_CubedSphereGrid_debug PASS +Test 091 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wrtGauss_netcdf_parallel_debug -Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_wrtGauss_netcdf_parallel_debug +Checking test 092 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.861774 - 0: The maximum resident set size (KB) = 789404 + 0: The total amount of wall time = 145.744926 + 0: The maximum resident set size (KB) = 786988 -Test 088 control_wrtGauss_netcdf_parallel_debug PASS +Test 092 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_stochy_debug -Checking test 089 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_stochy_debug +Checking test 093 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.279633 - 0: The maximum resident set size (KB) = 795728 + 0: The total amount of wall time = 167.437988 + 0: The maximum resident set size (KB) = 793696 -Test 089 control_stochy_debug PASS +Test 093 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_lndp_debug -Checking test 090 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_lndp_debug +Checking test 094 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.255077 - 0: The maximum resident set size (KB) = 795936 + 0: The total amount of wall time = 148.009416 + 0: The maximum resident set size (KB) = 791328 -Test 090 control_lndp_debug PASS +Test 094 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmg_debug -Checking test 091 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_csawmg_debug +Checking test 095 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.334740 - 0: The maximum resident set size (KB) = 842656 + 0: The total amount of wall time = 231.288855 + 0: The maximum resident set size (KB) = 836296 -Test 091 control_csawmg_debug PASS +Test 095 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_csawmgt_debug -Checking test 092 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_csawmgt_debug +Checking test 096 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.065102 - 0: The maximum resident set size (KB) = 836344 + 0: The total amount of wall time = 225.991298 + 0: The maximum resident set size (KB) = 833128 -Test 092 control_csawmgt_debug PASS +Test 096 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_ras_debug -Checking test 093 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_ras_debug +Checking test 097 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.592536 - 0: The maximum resident set size (KB) = 801956 + 0: The total amount of wall time = 156.878720 + 0: The maximum resident set size (KB) = 777472 -Test 093 control_ras_debug PASS +Test 097 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_diag_debug -Checking test 094 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_diag_debug +Checking test 098 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.143316 - 0: The maximum resident set size (KB) = 847492 + 0: The total amount of wall time = 151.406775 + 0: The maximum resident set size (KB) = 846444 -Test 094 control_diag_debug PASS +Test 098 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_debug_p8 -Checking test 095 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_debug_p8 +Checking test 099 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.215539 - 0: The maximum resident set size (KB) = 1616336 + 0: The total amount of wall time = 166.548790 + 0: The maximum resident set size (KB) = 1585980 -Test 095 control_debug_p8 PASS +Test 099 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_debug -Checking test 096 regional_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_debug +Checking test 100 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 971.646024 - 0: The maximum resident set size (KB) = 882352 + 0: The total amount of wall time = 967.364940 + 0: The maximum resident set size (KB) = 880192 -Test 096 regional_debug PASS +Test 100 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug -Checking test 097 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control_debug +Checking test 101 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.233461 - 0: The maximum resident set size (KB) = 1161664 + 0: The total amount of wall time = 273.644260 + 0: The maximum resident set size (KB) = 1162928 -Test 097 rap_control_debug PASS +Test 101 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug -Checking test 098 hrrr_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_debug +Checking test 102 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.735726 - 0: The maximum resident set size (KB) = 1169020 + 0: The total amount of wall time = 264.599298 + 0: The maximum resident set size (KB) = 1159964 -Test 098 hrrr_control_debug PASS +Test 102 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_drag_suite_debug -Checking test 099 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_unified_drag_suite_debug +Checking test 103 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.190457 - 0: The maximum resident set size (KB) = 1166172 + 0: The total amount of wall time = 276.805451 + 0: The maximum resident set size (KB) = 1166108 -Test 099 rap_unified_drag_suite_debug PASS +Test 103 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_diag_debug -Checking test 100 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_diag_debug +Checking test 104 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.684578 - 0: The maximum resident set size (KB) = 1254856 + 0: The total amount of wall time = 285.918942 + 0: The maximum resident set size (KB) = 1220528 -Test 100 rap_diag_debug PASS +Test 104 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_cires_ugwp_debug -Checking test 101 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_cires_ugwp_debug +Checking test 105 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.340341 - 0: The maximum resident set size (KB) = 1170132 + 0: The total amount of wall time = 278.979956 + 0: The maximum resident set size (KB) = 1160348 -Test 101 rap_cires_ugwp_debug PASS +Test 105 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_unified_ugwp_debug -Checking test 102 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_unified_ugwp_debug +Checking test 106 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.609439 - 0: The maximum resident set size (KB) = 1166984 + 0: The total amount of wall time = 282.437125 + 0: The maximum resident set size (KB) = 1169292 -Test 102 rap_unified_ugwp_debug PASS +Test 106 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_lndp_debug -Checking test 103 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_lndp_debug +Checking test 107 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.418390 - 0: The maximum resident set size (KB) = 1171932 + 0: The total amount of wall time = 269.506935 + 0: The maximum resident set size (KB) = 1136756 -Test 103 rap_lndp_debug PASS +Test 107 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_progcld_thompson_debug -Checking test 104 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_progcld_thompson_debug +Checking test 108 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.486419 - 0: The maximum resident set size (KB) = 1170236 + 0: The total amount of wall time = 269.212680 + 0: The maximum resident set size (KB) = 1165228 -Test 104 rap_progcld_thompson_debug PASS +Test 108 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_debug -Checking test 105 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_noah_debug +Checking test 109 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.806004 - 0: The maximum resident set size (KB) = 1163896 + 0: The total amount of wall time = 266.604556 + 0: The maximum resident set size (KB) = 1171304 -Test 105 rap_noah_debug PASS +Test 109 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_sfcdiff_debug +Checking test 110 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.152949 - 0: The maximum resident set size (KB) = 1167752 + 0: The total amount of wall time = 276.234586 + 0: The maximum resident set size (KB) = 1162068 -Test 106 rap_sfcdiff_debug PASS +Test 110 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 111 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 446.801909 - 0: The maximum resident set size (KB) = 1164384 + 0: The total amount of wall time = 441.373724 + 0: The maximum resident set size (KB) = 1171752 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 111 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rrfs_v1beta_debug +Checking test 112 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.700757 - 0: The maximum resident set size (KB) = 1157240 + 0: The total amount of wall time = 269.551415 + 0: The maximum resident set size (KB) = 1159744 -Test 108 rrfs_v1beta_debug PASS +Test 112 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_clm_lake_debug -Checking test 109 rap_clm_lake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_clm_lake_debug +Checking test 113 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 329.099858 - 0: The maximum resident set size (KB) = 1168656 + 0: The total amount of wall time = 334.849912 + 0: The maximum resident set size (KB) = 1160716 -Test 109 rap_clm_lake_debug PASS +Test 113 rap_clm_lake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_flake_debug -Checking test 110 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_flake_debug +Checking test 114 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.349411 - 0: The maximum resident set size (KB) = 1165956 + 0: The total amount of wall time = 270.917551 + 0: The maximum resident set size (KB) = 1167284 -Test 110 rap_flake_debug PASS +Test 114 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_wam_debug -Checking test 111 control_wam_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_wam_debug +Checking test 115 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.652738 - 0: The maximum resident set size (KB) = 517376 + 0: The total amount of wall time = 269.793905 + 0: The maximum resident set size (KB) = 522592 -Test 111 control_wam_debug PASS +Test 115 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +4029,15 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 218.819864 - 0: The maximum resident set size (KB) = 1067320 + 0: The total amount of wall time = 224.449141 + 0: The maximum resident set size (KB) = 1080136 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn32_phy32 -Checking test 113 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control_dyn32_phy32 +Checking test 117 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +4083,15 @@ Checking test 113 rap_control_dyn32_phy32 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 = 383.398944 - 0: The maximum resident set size (KB) = 1000548 + 0: The total amount of wall time = 380.977336 + 0: The maximum resident set size (KB) = 999712 -Test 113 rap_control_dyn32_phy32 PASS +Test 117 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_dyn32_phy32 -Checking test 114 hrrr_control_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_dyn32_phy32 +Checking test 118 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3875,15 +4137,15 @@ Checking test 114 hrrr_control_dyn32_phy32 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 = 190.729947 - 0: The maximum resident set size (KB) = 954360 + 0: The total amount of wall time = 191.494321 + 0: The maximum resident set size (KB) = 943812 -Test 114 hrrr_control_dyn32_phy32 PASS +Test 118 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_2threads_dyn32_phy32 -Checking test 115 rap_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_2threads_dyn32_phy32 +Checking test 119 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +4191,15 @@ Checking test 115 rap_2threads_dyn32_phy32 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 = 364.805529 - 0: The maximum resident set size (KB) = 1017212 + 0: The total amount of wall time = 369.535354 + 0: The maximum resident set size (KB) = 1014708 -Test 115 rap_2threads_dyn32_phy32 PASS +Test 119 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_2threads_dyn32_phy32 -Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_2threads_dyn32_phy32 +Checking test 120 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3983,15 +4245,15 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 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 = 178.711789 - 0: The maximum resident set size (KB) = 924708 + 0: The total amount of wall time = 175.585851 + 0: The maximum resident set size (KB) = 917428 -Test 116 hrrr_control_2threads_dyn32_phy32 PASS +Test 120 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_decomp_dyn32_phy32 -Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_decomp_dyn32_phy32 +Checking test 121 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4037,15 +4299,15 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 202.546427 - 0: The maximum resident set size (KB) = 890920 + 0: The total amount of wall time = 199.587031 + 0: The maximum resident set size (KB) = 894072 -Test 117 hrrr_control_decomp_dyn32_phy32 PASS +Test 121 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_restart_dyn32_phy32 -Checking test 118 rap_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_restart_dyn32_phy32 +Checking test 122 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,29 +4345,29 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 285.105642 - 0: The maximum resident set size (KB) = 945252 + 0: The total amount of wall time = 283.984684 + 0: The maximum resident set size (KB) = 907392 -Test 118 rap_restart_dyn32_phy32 PASS +Test 122 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_restart_dyn32_phy32 -Checking test 119 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_restart_dyn32_phy32 +Checking test 123 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.984244 - 0: The maximum resident set size (KB) = 859356 + 0: The total amount of wall time = 98.953788 + 0: The maximum resident set size (KB) = 857212 -Test 119 hrrr_control_restart_dyn32_phy32 PASS +Test 123 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32 -Checking test 120 rap_control_dyn64_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control_dyn64_phy32 +Checking test 124 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4151,82 +4413,82 @@ Checking test 120 rap_control_dyn64_phy32 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 = 247.280544 - 0: The maximum resident set size (KB) = 956992 + 0: The total amount of wall time = 244.274755 + 0: The maximum resident set size (KB) = 957008 -Test 120 rap_control_dyn64_phy32 PASS +Test 124 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_debug_dyn32_phy32 -Checking test 121 rap_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control_debug_dyn32_phy32 +Checking test 125 rap_control_debug_dyn32_phy32 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.225733 - 0: The maximum resident set size (KB) = 1057100 + 0: The total amount of wall time = 270.064615 + 0: The maximum resident set size (KB) = 1028364 -Test 121 rap_control_debug_dyn32_phy32 PASS +Test 125 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hrrr_control_debug_dyn32_phy32 -Checking test 122 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hrrr_control_debug_dyn32_phy32 +Checking test 126 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.838533 - 0: The maximum resident set size (KB) = 1051200 + 0: The total amount of wall time = 268.228241 + 0: The maximum resident set size (KB) = 1050392 -Test 122 hrrr_control_debug_dyn32_phy32 PASS +Test 126 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/rap_control_dyn64_phy32_debug -Checking test 123 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/rap_control_dyn64_phy32_debug +Checking test 127 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.172790 - 0: The maximum resident set size (KB) = 1062104 + 0: The total amount of wall time = 276.032742 + 0: The maximum resident set size (KB) = 1095672 -Test 123 rap_control_dyn64_phy32_debug PASS +Test 127 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm -Checking test 124 hafs_regional_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_atm +Checking test 128 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 234.895265 - 0: The maximum resident set size (KB) = 1051256 + 0: The total amount of wall time = 240.041217 + 0: The maximum resident set size (KB) = 1048596 -Test 124 hafs_regional_atm PASS +Test 128 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_thompson_gfdlsf -Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_atm_thompson_gfdlsf +Checking test 129 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 320.191891 - 0: The maximum resident set size (KB) = 1415096 + 0: The total amount of wall time = 334.852207 + 0: The maximum resident set size (KB) = 1373224 -Test 125 hafs_regional_atm_thompson_gfdlsf PASS +Test 129 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn -Checking test 126 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_atm_ocn +Checking test 130 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4234,15 +4496,15 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 377.785986 - 0: The maximum resident set size (KB) = 1227920 + 0: The total amount of wall time = 396.570527 + 0: The maximum resident set size (KB) = 1223968 -Test 126 hafs_regional_atm_ocn PASS +Test 130 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_wav -Checking test 127 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_atm_wav +Checking test 131 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4250,15 +4512,15 @@ Checking test 127 hafs_regional_atm_wav 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 = 746.663158 - 0: The maximum resident set size (KB) = 1221788 + 0: The total amount of wall time = 744.833453 + 0: The maximum resident set size (KB) = 1244440 -Test 127 hafs_regional_atm_wav PASS +Test 131 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_atm_ocn_wav -Checking test 128 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_atm_ocn_wav +Checking test 132 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4268,29 +4530,73 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 845.179442 - 0: The maximum resident set size (KB) = 1273348 + 0: The total amount of wall time = 836.232233 + 0: The maximum resident set size (KB) = 1268536 -Test 128 hafs_regional_atm_ocn_wav PASS +Test 132 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_1nest_atm -Checking test 129 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_1nest_atm +Checking test 133 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 318.391777 - 0: The maximum resident set size (KB) = 502604 - -Test 129 hafs_regional_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_telescopic_2nests_atm -Checking test 130 hafs_regional_telescopic_2nests_atm results .... + 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 + + 0: The total amount of wall time = 319.542890 + 0: The maximum resident set size (KB) = 504432 + +Test 133 hafs_regional_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_1nest_atm_qr +Checking test 134 hafs_regional_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 326.815764 + 0: The maximum resident set size (KB) = 464972 + +Test 134 hafs_regional_1nest_atm_qr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_telescopic_2nests_atm +Checking test 135 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4298,29 +4604,123 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 365.642637 - 0: The maximum resident set size (KB) = 509916 + 0: The total amount of wall time = 365.303966 + 0: The maximum resident set size (KB) = 505480 -Test 130 hafs_regional_telescopic_2nests_atm PASS +Test 135 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_1nest_atm -Checking test 131 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_global_1nest_atm +Checking test 136 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 145.568114 - 0: The maximum resident set size (KB) = 348880 - -Test 131 hafs_global_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_multiple_4nests_atm -Checking test 132 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + + 0: The total amount of wall time = 146.560962 + 0: The maximum resident set size (KB) = 351024 + +Test 136 hafs_global_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_global_1nest_atm_qr +Checking test 137 hafs_global_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.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 = 151.630171 + 0: The maximum resident set size (KB) = 323220 + +Test 137 hafs_global_1nest_atm_qr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_global_multiple_4nests_atm +Checking test 138 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4336,46 +4736,243 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 415.228383 - 0: The maximum resident set size (KB) = 450384 - -Test 132 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_specified_moving_1nest_atm -Checking test 133 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 = 410.396304 + 0: The maximum resident set size (KB) = 450668 + +Test 138 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_global_multiple_4nests_atm_qr +Checking test 139 hafs_global_multiple_4nests_atm_qr 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 - - 0: The total amount of wall time = 202.100103 - 0: The maximum resident set size (KB) = 520872 - -Test 133 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm -Checking test 134 hafs_regional_storm_following_1nest_atm results .... + 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......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 = 437.851648 + 0: The maximum resident set size (KB) = 466372 + +Test 139 hafs_global_multiple_4nests_atm_qr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_specified_moving_1nest_atm +Checking test 140 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 192.933637 - 0: The maximum resident set size (KB) = 518288 + 0: The total amount of wall time = 201.161068 + 0: The maximum resident set size (KB) = 519644 -Test 134 hafs_regional_storm_following_1nest_atm PASS +Test 140 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_storm_following_1nest_atm +Checking test 141 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 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 + + 0: The total amount of wall time = 191.395055 + 0: The maximum resident set size (KB) = 520948 + +Test 141 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_storm_following_1nest_atm_qr +Checking test 142 hafs_regional_storm_following_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 204.670791 + 0: The maximum resident set size (KB) = 496584 + +Test 142 hafs_regional_storm_following_1nest_atm_qr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_storm_following_1nest_atm_ocn +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4383,43 +4980,43 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 224.171361 - 0: The maximum resident set size (KB) = 561276 + 0: The total amount of wall time = 221.853308 + 0: The maximum resident set size (KB) = 566432 -Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_global_storm_following_1nest_atm -Checking test 136 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_global_storm_following_1nest_atm +Checking test 144 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.088904 - 0: The maximum resident set size (KB) = 370812 + 0: The total amount of wall time = 58.510761 + 0: The maximum resident set size (KB) = 341496 -Test 136 hafs_global_storm_following_1nest_atm PASS +Test 144 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 710.846789 - 0: The maximum resident set size (KB) = 581456 + 0: The total amount of wall time = 701.967553 + 0: The maximum resident set size (KB) = 585524 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4429,162 +5026,162 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 480.993614 - 0: The maximum resident set size (KB) = 617900 + 0: The total amount of wall time = 480.448231 + 0: The maximum resident set size (KB) = 635868 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn -Checking test 139 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_docn +Checking test 147 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 357.807955 - 0: The maximum resident set size (KB) = 1235016 + 0: The total amount of wall time = 359.309676 + 0: The maximum resident set size (KB) = 1227148 -Test 139 hafs_regional_docn PASS +Test 147 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_docn_oisst -Checking test 140 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_docn_oisst +Checking test 148 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 358.568212 - 0: The maximum resident set size (KB) = 1217064 + 0: The total amount of wall time = 360.210882 + 0: The maximum resident set size (KB) = 1213240 -Test 140 hafs_regional_docn_oisst PASS +Test 148 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/hafs_regional_datm_cdeps -Checking test 141 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/hafs_regional_datm_cdeps +Checking test 149 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.852748 - 0: The maximum resident set size (KB) = 1036716 + 0: The total amount of wall time = 957.116565 + 0: The maximum resident set size (KB) = 1041304 -Test 141 hafs_regional_datm_cdeps PASS +Test 149 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr -Checking test 142 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_control_cfsr +Checking test 150 datm_cdeps_control_cfsr 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 = 157.197818 - 0: The maximum resident set size (KB) = 1059736 + 0: The total amount of wall time = 159.981612 + 0: The maximum resident set size (KB) = 1060796 -Test 142 datm_cdeps_control_cfsr PASS +Test 150 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_restart_cfsr -Checking test 143 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_restart_cfsr +Checking test 151 datm_cdeps_restart_cfsr 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 = 95.211874 - 0: The maximum resident set size (KB) = 1007512 + 0: The total amount of wall time = 90.270896 + 0: The maximum resident set size (KB) = 1009536 -Test 143 datm_cdeps_restart_cfsr PASS +Test 151 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_gefs -Checking test 144 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_control_gefs +Checking test 152 datm_cdeps_control_gefs 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 = 153.008663 - 0: The maximum resident set size (KB) = 964348 + 0: The total amount of wall time = 154.133992 + 0: The maximum resident set size (KB) = 954632 -Test 144 datm_cdeps_control_gefs PASS +Test 152 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_iau_gefs -Checking test 145 datm_cdeps_iau_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_iau_gefs +Checking test 153 datm_cdeps_iau_gefs 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 = 153.685467 - 0: The maximum resident set size (KB) = 961332 + 0: The total amount of wall time = 153.739834 + 0: The maximum resident set size (KB) = 955508 -Test 145 datm_cdeps_iau_gefs PASS +Test 153 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_stochy_gefs -Checking test 146 datm_cdeps_stochy_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_stochy_gefs +Checking test 154 datm_cdeps_stochy_gefs 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.669300 - 0: The maximum resident set size (KB) = 964044 + 0: The total amount of wall time = 151.782198 + 0: The maximum resident set size (KB) = 950100 -Test 146 datm_cdeps_stochy_gefs PASS +Test 154 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_ciceC_cfsr -Checking test 147 datm_cdeps_ciceC_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_ciceC_cfsr +Checking test 155 datm_cdeps_ciceC_cfsr 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 = 158.258610 - 0: The maximum resident set size (KB) = 1055764 + 0: The total amount of wall time = 153.735388 + 0: The maximum resident set size (KB) = 1061448 -Test 147 datm_cdeps_ciceC_cfsr PASS +Test 155 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_cfsr -Checking test 148 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_bulk_cfsr +Checking test 156 datm_cdeps_bulk_cfsr 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 = 157.883028 - 0: The maximum resident set size (KB) = 1056736 + 0: The total amount of wall time = 157.345811 + 0: The maximum resident set size (KB) = 1050272 -Test 148 datm_cdeps_bulk_cfsr PASS +Test 156 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_bulk_gefs -Checking test 149 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_bulk_gefs +Checking test 157 datm_cdeps_bulk_gefs 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 = 151.564626 - 0: The maximum resident set size (KB) = 965012 + 0: The total amount of wall time = 148.116207 + 0: The maximum resident set size (KB) = 950900 -Test 149 datm_cdeps_bulk_gefs PASS +Test 157 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_cfsr -Checking test 150 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_mx025_cfsr +Checking test 158 datm_cdeps_mx025_cfsr 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 @@ -4592,15 +5189,15 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 416.095646 - 0: The maximum resident set size (KB) = 871376 + 0: The total amount of wall time = 415.063693 + 0: The maximum resident set size (KB) = 879744 -Test 150 datm_cdeps_mx025_cfsr PASS +Test 158 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_mx025_gefs -Checking test 151 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_mx025_gefs +Checking test 159 datm_cdeps_mx025_gefs 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 @@ -4608,78 +5205,78 @@ Checking test 151 datm_cdeps_mx025_gefs 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 = 411.162821 - 0: The maximum resident set size (KB) = 933668 + 0: The total amount of wall time = 430.544727 + 0: The maximum resident set size (KB) = 935716 -Test 151 datm_cdeps_mx025_gefs PASS +Test 159 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_multiple_files_cfsr -Checking test 152 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_multiple_files_cfsr +Checking test 160 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.334330 - 0: The maximum resident set size (KB) = 1059956 + 0: The total amount of wall time = 158.516032 + 0: The maximum resident set size (KB) = 1055108 -Test 152 datm_cdeps_multiple_files_cfsr PASS +Test 160 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_3072x1536_cfsr -Checking test 153 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_3072x1536_cfsr +Checking test 161 datm_cdeps_3072x1536_cfsr 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 = 217.989566 - 0: The maximum resident set size (KB) = 2370168 + 0: The total amount of wall time = 224.672728 + 0: The maximum resident set size (KB) = 2346252 -Test 153 datm_cdeps_3072x1536_cfsr PASS +Test 161 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_gfs -Checking test 154 datm_cdeps_gfs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_gfs +Checking test 162 datm_cdeps_gfs 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 = 229.116823 - 0: The maximum resident set size (KB) = 2355920 + 0: The total amount of wall time = 224.044853 + 0: The maximum resident set size (KB) = 2356120 -Test 154 datm_cdeps_gfs PASS +Test 162 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_debug_cfsr -Checking test 155 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_debug_cfsr +Checking test 163 datm_cdeps_debug_cfsr 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 = 357.368363 - 0: The maximum resident set size (KB) = 977352 + 0: The total amount of wall time = 359.662337 + 0: The maximum resident set size (KB) = 991848 -Test 155 datm_cdeps_debug_cfsr PASS +Test 163 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_control_cfsr_faster -Checking test 156 datm_cdeps_control_cfsr_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_control_cfsr_faster +Checking test 164 datm_cdeps_control_cfsr_faster 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 = 157.696734 - 0: The maximum resident set size (KB) = 1057400 + 0: The total amount of wall time = 157.428069 + 0: The maximum resident set size (KB) = 1050180 -Test 156 datm_cdeps_control_cfsr_faster PASS +Test 164 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3 -Checking test 157 datm_cdeps_lnd_gswp3 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_lnd_gswp3 +Checking test 165 datm_cdeps_lnd_gswp3 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 @@ -4687,15 +5284,15 @@ Checking test 157 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 7.660018 - 0: The maximum resident set size (KB) = 260412 + 0: The total amount of wall time = 6.922906 + 0: The maximum resident set size (KB) = 257528 -Test 157 datm_cdeps_lnd_gswp3 PASS +Test 165 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/datm_cdeps_lnd_gswp3_rst -Checking test 158 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/datm_cdeps_lnd_gswp3_rst +Checking test 166 datm_cdeps_lnd_gswp3_rst 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 @@ -4703,15 +5300,15 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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 = 13.128830 - 0: The maximum resident set size (KB) = 258232 + 0: The total amount of wall time = 12.144795 + 0: The maximum resident set size (KB) = 262940 -Test 158 datm_cdeps_lnd_gswp3_rst PASS +Test 166 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_p8_atmlnd_sbs -Checking test 159 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_p8_atmlnd_sbs +Checking test 167 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4795,15 +5392,15 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 203.707979 - 0: The maximum resident set size (KB) = 1595292 + 0: The total amount of wall time = 208.002801 + 0: The maximum resident set size (KB) = 1595816 -Test 159 control_p8_atmlnd_sbs PASS +Test 167 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmwav_control_noaero_p8 -Checking test 160 atmwav_control_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/atmwav_control_noaero_p8 +Checking test 168 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4845,15 +5442,15 @@ Checking test 160 atmwav_control_noaero_p8 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 = 94.450471 - 0: The maximum resident set size (KB) = 1628312 + 0: The total amount of wall time = 93.799312 + 0: The maximum resident set size (KB) = 1636536 -Test 160 atmwav_control_noaero_p8 PASS +Test 168 atmwav_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/control_atmwav -Checking test 161 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/control_atmwav +Checking test 169 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4896,15 +5493,15 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 89.053826 - 0: The maximum resident set size (KB) = 658392 + 0: The total amount of wall time = 88.663720 + 0: The maximum resident set size (KB) = 638156 -Test 161 control_atmwav PASS +Test 169 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8 -Checking test 162 atmaero_control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/atmaero_control_p8 +Checking test 170 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4947,15 +5544,15 @@ Checking test 162 atmaero_control_p8 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 = 229.922653 - 0: The maximum resident set size (KB) = 2977600 + 0: The total amount of wall time = 233.445262 + 0: The maximum resident set size (KB) = 2970772 -Test 162 atmaero_control_p8 PASS +Test 170 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad -Checking test 163 atmaero_control_p8_rad results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/atmaero_control_p8_rad +Checking test 171 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4998,15 +5595,15 @@ Checking test 163 atmaero_control_p8_rad 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.423564 - 0: The maximum resident set size (KB) = 3035352 + 0: The total amount of wall time = 283.057558 + 0: The maximum resident set size (KB) = 3020184 -Test 163 atmaero_control_p8_rad PASS +Test 171 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/atmaero_control_p8_rad_micro -Checking test 164 atmaero_control_p8_rad_micro results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/atmaero_control_p8_rad_micro +Checking test 172 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5049,15 +5646,15 @@ Checking test 164 atmaero_control_p8_rad_micro 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 = 291.242830 - 0: The maximum resident set size (KB) = 3046684 + 0: The total amount of wall time = 285.556935 + 0: The maximum resident set size (KB) = 3051092 -Test 164 atmaero_control_p8_rad_micro PASS +Test 172 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq -Checking test 165 regional_atmaq results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_atmaq +Checking test 173 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,15 +5669,15 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 649.171066 - 0: The maximum resident set size (KB) = 1451496 + 0: The total amount of wall time = 636.016852 + 0: The maximum resident set size (KB) = 1416608 -Test 165 regional_atmaq PASS +Test 173 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_debug -Checking test 166 regional_atmaq_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_atmaq_debug +Checking test 174 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5093,15 +5690,15 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1201.947439 - 0: The maximum resident set size (KB) = 1374860 + 0: The total amount of wall time = 1203.105884 + 0: The maximum resident set size (KB) = 1265760 -Test 166 regional_atmaq_debug PASS +Test 174 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_27609/regional_atmaq_faster -Checking test 167 regional_atmaq_faster results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_85428/regional_atmaq_faster +Checking test 175 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5116,12 +5713,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 567.633953 - 0: The maximum resident set size (KB) = 1456756 + 0: The total amount of wall time = 562.078983 + 0: The maximum resident set size (KB) = 1342020 -Test 167 regional_atmaq_faster PASS +Test 175 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Sun May 7 07:18:09 UTC 2023 -Elapsed time: 08h:50m:51s. Have a nice day! +Tue May 23 20:48:14 UTC 2023 +Elapsed time: 01h:35m:31s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 867e84b606..f4a185836a 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,43 +1,43 @@ -Fri May 5 19:03:44 UTC 2023 +Tue May 23 19:06:36 UTC 2023 Start Regression test -Compile 001 elapsed time 1942 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2049 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 1877 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 004 elapsed time 313 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 288 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1707 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 007 elapsed time 1758 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 008 elapsed time 3352 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 009 elapsed time 1840 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 010 elapsed time 1751 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1701 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 2150 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 014 elapsed time 306 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 203 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 1582 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 017 elapsed time 1615 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 018 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 1713 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 021 elapsed time 248 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 2238 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 023 elapsed time 1702 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 024 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 025 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 267 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 027 elapsed time 81 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 028 elapsed time 1681 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 029 elapsed time 1673 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 030 elapsed time 1644 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 031 elapsed time 1593 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 032 elapsed time 1553 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 033 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 2034 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_mixedmode +Compile 001 elapsed time 1959 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1651 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1839 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 311 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 273 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1693 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 007 elapsed time 1668 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 3357 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 009 elapsed time 1817 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1666 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 1545 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 2142 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 312 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 1571 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 018 elapsed time 235 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1723 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 276 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 2232 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 023 elapsed time 1688 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 024 elapsed time 297 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 025 elapsed time 156 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 297 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 027 elapsed time 112 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1690 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 1635 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 030 elapsed time 1630 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 031 elapsed time 1572 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 032 elapsed time 1537 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 033 elapsed time 241 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 034 elapsed time 1987 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +102,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 456.506094 - 0: The maximum resident set size (KB) = 1741260 + 0: The total amount of wall time = 418.210506 + 0: The maximum resident set size (KB) = 1750640 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_gfsv17 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +173,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 313.957534 - 0: The maximum resident set size (KB) = 1641600 + 0: The total amount of wall time = 294.431054 + 0: The maximum resident set size (KB) = 1596900 Test 002 cpld_control_gfsv17 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +245,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 460.913635 - 0: The maximum resident set size (KB) = 1802564 + 0: The total amount of wall time = 463.857727 + 0: The maximum resident set size (KB) = 1776968 Test 003 cpld_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +305,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 274.416982 - 0: The maximum resident set size (KB) = 1482348 + 0: The total amount of wall time = 290.224461 + 0: The maximum resident set size (KB) = 1493984 Test 004 cpld_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +377,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 472.350530 - 0: The maximum resident set size (KB) = 1788456 + 0: The total amount of wall time = 480.681010 + 0: The maximum resident set size (KB) = 1787028 Test 005 cpld_control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +437,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 283.341672 - 0: The maximum resident set size (KB) = 1505968 + 0: The total amount of wall time = 287.429043 + 0: The maximum resident set size (KB) = 1507944 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +497,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 482.317559 - 0: The maximum resident set size (KB) = 1991852 + 0: The total amount of wall time = 513.106737 + 0: The maximum resident set size (KB) = 1973148 Test 007 cpld_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +557,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 463.551854 - 0: The maximum resident set size (KB) = 1759360 + 0: The total amount of wall time = 484.770509 + 0: The maximum resident set size (KB) = 1777996 Test 008 cpld_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_mpi_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +617,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 393.221188 - 0: The maximum resident set size (KB) = 1721512 + 0: The total amount of wall time = 392.141656 + 0: The maximum resident set size (KB) = 1728952 Test 009 cpld_mpi_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_ciceC_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +689,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 462.649180 - 0: The maximum resident set size (KB) = 1766824 + 0: The total amount of wall time = 470.608893 + 0: The maximum resident set size (KB) = 1773020 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -760,14 +760,14 @@ Checking test 011 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 382.759394 - 0: The maximum resident set size (KB) = 1618992 + 0: The total amount of wall time = 355.752800 + 0: The maximum resident set size (KB) = 1643140 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_nowave_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_nowave_noaero_p8 Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -829,14 +829,14 @@ Checking test 012 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 393.506939 - 0: The maximum resident set size (KB) = 1672668 + 0: The total amount of wall time = 356.913209 + 0: The maximum resident set size (KB) = 1667424 Test 012 cpld_control_nowave_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -889,14 +889,14 @@ Checking test 013 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 678.276501 - 0: The maximum resident set size (KB) = 1834784 + 0: The total amount of wall time = 699.206523 + 0: The maximum resident set size (KB) = 1812760 Test 013 cpld_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_debug_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -948,14 +948,14 @@ Checking test 014 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 471.936474 - 0: The maximum resident set size (KB) = 1651300 + 0: The total amount of wall time = 491.778525 + 0: The maximum resident set size (KB) = 1630024 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_noaero_p8_agrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_noaero_p8_agrid Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1017,14 +1017,14 @@ Checking test 015 cpld_control_noaero_p8_agrid 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 = 372.090163 - 0: The maximum resident set size (KB) = 1676432 + 0: The total amount of wall time = 370.762127 + 0: The maximum resident set size (KB) = 1673320 Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1074,14 +1074,14 @@ Checking test 016 cpld_control_c48 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 = 809.775799 - 0: The maximum resident set size (KB) = 2768872 + 0: The total amount of wall time = 812.586942 + 0: The maximum resident set size (KB) = 2771336 Test 016 cpld_control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_warmstart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1131,14 +1131,14 @@ Checking test 017 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 214.065719 - 0: The maximum resident set size (KB) = 2772904 + 0: The total amount of wall time = 214.866942 + 0: The maximum resident set size (KB) = 2771560 Test 017 cpld_warmstart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_restart_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 018 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 111.850337 - 0: The maximum resident set size (KB) = 2212920 + 0: The total amount of wall time = 114.100180 + 0: The maximum resident set size (KB) = 2203368 Test 018 cpld_restart_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/cpld_control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/cpld_control_p8_faster Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 019 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 435.936189 - 0: The maximum resident set size (KB) = 1771464 + 0: The total amount of wall time = 454.945819 + 0: The maximum resident set size (KB) = 1764256 Test 019 cpld_control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_flake +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_flake Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 020 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 262.794645 - 0: The maximum resident set size (KB) = 621368 + 0: The total amount of wall time = 260.220425 + 0: The maximum resident set size (KB) = 617600 Test 020 control_flake PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1312,28 +1312,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 183.325936 - 0: The maximum resident set size (KB) = 572088 + 0: The total amount of wall time = 182.642907 + 0: The maximum resident set size (KB) = 570568 Test 021 control_CubedSphereGrid PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK - 0: The total amount of wall time = 181.001583 - 0: The maximum resident set size (KB) = 569440 + 0: The total amount of wall time = 185.460098 + 0: The maximum resident set size (KB) = 572564 Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_latlon +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,14 +1344,14 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.445730 - 0: The maximum resident set size (KB) = 569700 + 0: The total amount of wall time = 185.390113 + 0: The maximum resident set size (KB) = 572108 Test 023 control_latlon PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,14 +1362,14 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.067737 - 0: The maximum resident set size (KB) = 574104 + 0: The total amount of wall time = 191.686348 + 0: The maximum resident set size (KB) = 570872 Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c48 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_c48 Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1408,14 +1408,14 @@ Checking test 025 control_c48 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 = 600.300134 -0: The maximum resident set size (KB) = 797164 +0: The total amount of wall time = 592.492309 +0: The maximum resident set size (KB) = 801648 Test 025 control_c48 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c192 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1426,14 +1426,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 729.495494 - 0: The maximum resident set size (KB) = 689280 + 0: The total amount of wall time = 728.927867 + 0: The maximum resident set size (KB) = 686696 Test 026 control_c192 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1444,14 +1444,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 953.364552 - 0: The maximum resident set size (KB) = 1056632 + 0: The total amount of wall time = 943.135415 + 0: The maximum resident set size (KB) = 1063372 Test 027 control_c384 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_c384gdas +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_c384gdas Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1494,14 +1494,14 @@ Checking test 028 control_c384gdas 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 = 806.882990 - 0: The maximum resident set size (KB) = 1195812 + 0: The total amount of wall time = 827.723138 + 0: The maximum resident set size (KB) = 1186700 Test 028 control_c384gdas PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1512,28 +1512,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 124.996708 - 0: The maximum resident set size (KB) = 577528 + 0: The total amount of wall time = 125.566249 + 0: The maximum resident set size (KB) = 577296 Test 029 control_stochy PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_stochy_restart Checking test 030 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.167234 - 0: The maximum resident set size (KB) = 395624 + 0: The total amount of wall time = 72.623555 + 0: The maximum resident set size (KB) = 396100 Test 030 control_stochy_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1544,14 +1544,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.783949 - 0: The maximum resident set size (KB) = 576644 + 0: The total amount of wall time = 119.143028 + 0: The maximum resident set size (KB) = 575420 Test 031 control_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr4 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_iovr4 Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1566,14 +1566,14 @@ Checking test 032 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 191.858341 - 0: The maximum resident set size (KB) = 574056 + 0: The total amount of wall time = 194.110761 + 0: The maximum resident set size (KB) = 571432 Test 032 control_iovr4 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_iovr5 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_iovr5 Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1588,14 +1588,14 @@ Checking test 033 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.486048 - 0: The maximum resident set size (KB) = 568776 + 0: The total amount of wall time = 193.038533 + 0: The maximum resident set size (KB) = 574556 Test 033 control_iovr5 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8 Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1642,14 +1642,14 @@ Checking test 034 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.333284 - 0: The maximum resident set size (KB) = 1535172 + 0: The total amount of wall time = 241.266261 + 0: The maximum resident set size (KB) = 1546156 Test 034 control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_restart_p8 Checking test 035 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1688,14 +1688,14 @@ Checking test 035 control_restart_p8 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 = 125.936812 - 0: The maximum resident set size (KB) = 775480 + 0: The total amount of wall time = 125.831367 + 0: The maximum resident set size (KB) = 773552 Test 035 control_restart_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_qr_p8 Checking test 036 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1742,14 +1742,14 @@ Checking test 036 control_qr_p8 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 = 227.698323 - 0: The maximum resident set size (KB) = 1553428 + 0: The total amount of wall time = 232.427355 + 0: The maximum resident set size (KB) = 1548588 Test 036 control_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_restart_qr_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_restart_qr_p8 Checking test 037 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1788,14 +1788,14 @@ Checking test 037 control_restart_qr_p8 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 = 128.248671 - 0: The maximum resident set size (KB) = 786000 + 0: The total amount of wall time = 126.364313 + 0: The maximum resident set size (KB) = 789412 Test 037 control_restart_qr_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_decomp_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1838,14 +1838,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 242.843766 - 0: The maximum resident set size (KB) = 1520276 + 0: The total amount of wall time = 239.706444 + 0: The maximum resident set size (KB) = 1529324 Test 038 control_decomp_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_2threads_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1888,14 +1888,14 @@ Checking test 039 control_2threads_p8 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 = 220.709903 - 0: The maximum resident set size (KB) = 1618580 + 0: The total amount of wall time = 225.545779 + 0: The maximum resident set size (KB) = 1624768 Test 039 control_2threads_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_lndp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8_lndp Checking test 040 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1914,14 +1914,14 @@ Checking test 040 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 433.201606 - 0: The maximum resident set size (KB) = 1538092 + 0: The total amount of wall time = 439.868523 + 0: The maximum resident set size (KB) = 1546476 Test 040 control_p8_lndp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_rrtmgp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8_rrtmgp Checking test 041 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1968,14 +1968,14 @@ Checking test 041 control_p8_rrtmgp 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 = 312.953683 - 0: The maximum resident set size (KB) = 1603052 + 0: The total amount of wall time = 315.774040 + 0: The maximum resident set size (KB) = 1601736 Test 041 control_p8_rrtmgp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_mynn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8_mynn Checking test 042 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2022,14 +2022,14 @@ Checking test 042 control_p8_mynn 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 = 239.441628 - 0: The maximum resident set size (KB) = 1547556 + 0: The total amount of wall time = 237.195622 + 0: The maximum resident set size (KB) = 1553020 Test 042 control_p8_mynn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/merra2_thompson +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/merra2_thompson Checking test 043 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2076,14 +2076,14 @@ Checking test 043 merra2_thompson 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.249363 - 0: The maximum resident set size (KB) = 1553672 + 0: The total amount of wall time = 266.489173 + 0: The maximum resident set size (KB) = 1545236 Test 043 merra2_thompson PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_control Checking test 044 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2094,28 +2094,28 @@ Checking test 044 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 413.360810 - 0: The maximum resident set size (KB) = 788412 + 0: The total amount of wall time = 414.461992 + 0: The maximum resident set size (KB) = 786208 Test 044 regional_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_restart Checking test 045 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 209.555979 - 0: The maximum resident set size (KB) = 779272 + 0: The total amount of wall time = 211.451316 + 0: The maximum resident set size (KB) = 783216 Test 045 regional_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_control_qr Checking test 046 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2126,28 +2126,28 @@ Checking test 046 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 416.605911 - 0: The maximum resident set size (KB) = 785212 + 0: The total amount of wall time = 416.164684 + 0: The maximum resident set size (KB) = 784188 Test 046 regional_control_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_restart_qr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_restart_qr Checking test 047 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 208.411704 - 0: The maximum resident set size (KB) = 777100 + 0: The total amount of wall time = 208.949937 + 0: The maximum resident set size (KB) = 780732 Test 047 regional_restart_qr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_decomp Checking test 048 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2158,14 +2158,14 @@ Checking test 048 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 427.909093 - 0: The maximum resident set size (KB) = 785824 + 0: The total amount of wall time = 426.568851 + 0: The maximum resident set size (KB) = 781412 Test 048 regional_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_2threads Checking test 049 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2176,28 +2176,28 @@ Checking test 049 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 249.469019 - 0: The maximum resident set size (KB) = 772600 + 0: The total amount of wall time = 252.343529 + 0: The maximum resident set size (KB) = 769800 Test 049 regional_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_netcdf_parallel +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_netcdf_parallel Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 404.865096 - 0: The maximum resident set size (KB) = 782088 + 0: The total amount of wall time = 400.030959 + 0: The maximum resident set size (KB) = 783376 Test 050 regional_netcdf_parallel PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_2dwrtdecomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_2dwrtdecomp Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2208,14 +2208,14 @@ Checking test 051 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 414.605749 - 0: The maximum resident set size (KB) = 787940 + 0: The total amount of wall time = 410.777049 + 0: The maximum resident set size (KB) = 786744 Test 051 regional_2dwrtdecomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control Checking test 052 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2262,14 +2262,14 @@ Checking test 052 rap_control 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 = 610.288167 - 0: The maximum resident set size (KB) = 942148 + 0: The total amount of wall time = 614.187330 + 0: The maximum resident set size (KB) = 957268 Test 052 rap_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_spp_sppt_shum_skeb Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2280,14 +2280,14 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 324.336886 - 0: The maximum resident set size (KB) = 1091312 + 0: The total amount of wall time = 325.562964 + 0: The maximum resident set size (KB) = 1091024 Test 053 regional_spp_sppt_shum_skeb PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_decomp Checking test 054 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2334,14 +2334,14 @@ Checking test 054 rap_decomp 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 = 644.454018 - 0: The maximum resident set size (KB) = 951332 + 0: The total amount of wall time = 646.506000 + 0: The maximum resident set size (KB) = 935972 Test 054 rap_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_2threads Checking test 055 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2388,14 +2388,14 @@ Checking test 055 rap_2threads 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 = 586.540054 - 0: The maximum resident set size (KB) = 1019756 + 0: The total amount of wall time = 583.910066 + 0: The maximum resident set size (KB) = 1020068 Test 055 rap_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_restart Checking test 056 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2434,14 +2434,14 @@ Checking test 056 rap_restart 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 = 306.966396 - 0: The maximum resident set size (KB) = 837916 + 0: The total amount of wall time = 308.962949 + 0: The maximum resident set size (KB) = 830348 Test 056 rap_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_sfcdiff Checking test 057 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2488,14 +2488,14 @@ Checking test 057 rap_sfcdiff 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 = 629.828883 - 0: The maximum resident set size (KB) = 952908 + 0: The total amount of wall time = 619.769318 + 0: The maximum resident set size (KB) = 944000 Test 057 rap_sfcdiff PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_sfcdiff_decomp Checking test 058 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2542,14 +2542,14 @@ Checking test 058 rap_sfcdiff_decomp 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 = 663.902491 - 0: The maximum resident set size (KB) = 935340 + 0: The total amount of wall time = 649.844206 + 0: The maximum resident set size (KB) = 942912 Test 058 rap_sfcdiff_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_sfcdiff_restart Checking test 059 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2588,14 +2588,14 @@ Checking test 059 rap_sfcdiff_restart 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.380583 - 0: The maximum resident set size (KB) = 840504 + 0: The total amount of wall time = 454.412976 + 0: The maximum resident set size (KB) = 832760 Test 059 rap_sfcdiff_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control Checking test 060 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2642,14 +2642,14 @@ Checking test 060 hrrr_control 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 = 575.856688 - 0: The maximum resident set size (KB) = 948880 + 0: The total amount of wall time = 573.125914 + 0: The maximum resident set size (KB) = 953308 Test 060 hrrr_control PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_decomp Checking test 061 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2696,14 +2696,14 @@ Checking test 061 hrrr_control_decomp 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 = 597.698194 - 0: The maximum resident set size (KB) = 947104 + 0: The total amount of wall time = 595.519678 + 0: The maximum resident set size (KB) = 932660 Test 061 hrrr_control_decomp PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_2threads Checking test 062 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2750,28 +2750,28 @@ Checking test 062 hrrr_control_2threads 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 = 529.676992 - 0: The maximum resident set size (KB) = 1014204 + 0: The total amount of wall time = 527.716304 + 0: The maximum resident set size (KB) = 1013768 Test 062 hrrr_control_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_restart Checking test 063 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 419.873279 - 0: The maximum resident set size (KB) = 835348 + 0: The total amount of wall time = 417.659937 + 0: The maximum resident set size (KB) = 841328 Test 063 hrrr_control_restart PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_v1beta Checking test 064 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2818,14 +2818,14 @@ Checking test 064 rrfs_v1beta 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 = 616.627808 - 0: The maximum resident set size (KB) = 941236 + 0: The total amount of wall time = 611.650144 + 0: The maximum resident set size (KB) = 949912 Test 064 rrfs_v1beta PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_v1nssl Checking test 065 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2840,14 +2840,14 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 731.701665 - 0: The maximum resident set size (KB) = 640248 + 0: The total amount of wall time = 729.395538 + 0: The maximum resident set size (KB) = 632168 Test 065 rrfs_v1nssl PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1nssl_nohailnoccn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_v1nssl_nohailnoccn Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2862,14 +2862,14 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 724.724002 - 0: The maximum resident set size (KB) = 625836 + 0: The total amount of wall time = 722.283853 + 0: The maximum resident set size (KB) = 634528 Test 066 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_smoke_conus13km_hrrr_warm Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2878,14 +2878,14 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 213.398197 - 0: The maximum resident set size (KB) = 899744 + 0: The total amount of wall time = 206.966494 + 0: The maximum resident set size (KB) = 907012 Test 067 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_smoke_conus13km_hrrr_warm_2threads Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2894,14 +2894,14 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.430038 - 0: The maximum resident set size (KB) = 855772 + 0: The total amount of wall time = 134.911774 + 0: The maximum resident set size (KB) = 864488 Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_conus13km_hrrr_warm Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2910,14 +2910,14 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 181.042822 - 0: The maximum resident set size (KB) = 870856 + 0: The total amount of wall time = 180.861582 + 0: The maximum resident set size (KB) = 873024 Test 069 rrfs_conus13km_hrrr_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_radar_tten_warm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_smoke_conus13km_radar_tten_warm Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2926,26 +2926,26 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 215.534797 - 0: The maximum resident set size (KB) = 908076 + 0: The total amount of wall time = 208.095276 + 0: The maximum resident set size (KB) = 896200 Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_restart_mismatch +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_conus13km_hrrr_warm_restart_mismatch Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 104.518373 - 0: The maximum resident set size (KB) = 858292 + 0: The total amount of wall time = 100.983079 + 0: The maximum resident set size (KB) = 860536 Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_csawmg Checking test 072 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2956,14 +2956,14 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.070903 - 0: The maximum resident set size (KB) = 668676 + 0: The total amount of wall time = 467.879234 + 0: The maximum resident set size (KB) = 667256 Test 072 control_csawmg PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_csawmgt Checking test 073 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2974,14 +2974,14 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 460.767667 - 0: The maximum resident set size (KB) = 662396 + 0: The total amount of wall time = 459.974318 + 0: The maximum resident set size (KB) = 661136 Test 073 control_csawmgt PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_ras Checking test 074 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2992,26 +2992,26 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.575558 - 0: The maximum resident set size (KB) = 636076 + 0: The total amount of wall time = 253.682447 + 0: The maximum resident set size (KB) = 631660 Test 074 control_ras PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_wam Checking test 075 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 151.348297 - 0: The maximum resident set size (KB) = 485644 + 0: The total amount of wall time = 151.691828 + 0: The maximum resident set size (KB) = 480508 Test 075 control_wam PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8_faster Checking test 076 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3058,14 +3058,14 @@ Checking test 076 control_p8_faster 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.848508 - 0: The maximum resident set size (KB) = 1533292 + 0: The total amount of wall time = 219.723698 + 0: The maximum resident set size (KB) = 1546088 Test 076 control_p8_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_control_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_control_faster Checking test 077 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3076,56 +3076,56 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 376.500598 - 0: The maximum resident set size (KB) = 782416 + 0: The total amount of wall time = 381.803140 + 0: The maximum resident set size (KB) = 781704 Test 077 regional_control_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_smoke_conus13km_hrrr_warm_debug Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 1094.435311 - 0: The maximum resident set size (KB) = 926044 + 0: The total amount of wall time = 1090.521840 + 0: The maximum resident set size (KB) = 934168 Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_smoke_conus13km_hrrr_warm_debug_2threads Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 646.322837 - 0: The maximum resident set size (KB) = 901468 + 0: The total amount of wall time = 635.421743 + 0: The maximum resident set size (KB) = 885720 Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_conus13km_hrrr_warm_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_conus13km_hrrr_warm_debug Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 970.520617 - 0: The maximum resident set size (KB) = 911488 + 0: The total amount of wall time = 976.242409 + 0: The maximum resident set size (KB) = 912040 Test 080 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_CubedSphereGrid_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_CubedSphereGrid_debug Checking test 081 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3152,348 +3152,348 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 188.845445 - 0: The maximum resident set size (KB) = 740128 + 0: The total amount of wall time = 190.085202 + 0: The maximum resident set size (KB) = 734060 Test 081 control_CubedSphereGrid_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wrtGauss_netcdf_parallel_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_wrtGauss_netcdf_parallel_debug Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.609655 - 0: The maximum resident set size (KB) = 734212 + 0: The total amount of wall time = 192.891121 + 0: The maximum resident set size (KB) = 733692 Test 082 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_stochy_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_stochy_debug Checking test 083 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.909971 - 0: The maximum resident set size (KB) = 737848 + 0: The total amount of wall time = 216.083717 + 0: The maximum resident set size (KB) = 736820 Test 083 control_stochy_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_lndp_debug Checking test 084 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.280409 - 0: The maximum resident set size (KB) = 738424 + 0: The total amount of wall time = 195.942040 + 0: The maximum resident set size (KB) = 733668 Test 084 control_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmg_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_csawmg_debug Checking test 085 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 298.656157 - 0: The maximum resident set size (KB) = 784196 + 0: The total amount of wall time = 307.039814 + 0: The maximum resident set size (KB) = 779980 Test 085 control_csawmg_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_csawmgt_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_csawmgt_debug Checking test 086 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.448162 - 0: The maximum resident set size (KB) = 784136 + 0: The total amount of wall time = 304.741494 + 0: The maximum resident set size (KB) = 781972 Test 086 control_csawmgt_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_ras_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_ras_debug Checking test 087 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.307540 - 0: The maximum resident set size (KB) = 747840 + 0: The total amount of wall time = 193.205108 + 0: The maximum resident set size (KB) = 748804 Test 087 control_ras_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_diag_debug Checking test 088 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.662418 - 0: The maximum resident set size (KB) = 796572 + 0: The total amount of wall time = 198.260277 + 0: The maximum resident set size (KB) = 794008 Test 088 control_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_debug_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_debug_p8 Checking test 089 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 216.242562 - 0: The maximum resident set size (KB) = 1563108 + 0: The total amount of wall time = 223.446978 + 0: The maximum resident set size (KB) = 1556848 Test 089 control_debug_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_debug Checking test 090 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1283.124413 - 0: The maximum resident set size (KB) = 803428 + 0: The total amount of wall time = 1289.647169 + 0: The maximum resident set size (KB) = 804356 Test 090 regional_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control_debug Checking test 091 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.688578 - 0: The maximum resident set size (KB) = 1107312 + 0: The total amount of wall time = 351.470490 + 0: The maximum resident set size (KB) = 1113280 Test 091 rap_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_debug Checking test 092 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 337.048780 - 0: The maximum resident set size (KB) = 1115648 + 0: The total amount of wall time = 340.890901 + 0: The maximum resident set size (KB) = 1106632 Test 092 hrrr_control_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_drag_suite_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_unified_drag_suite_debug Checking test 093 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.034688 - 0: The maximum resident set size (KB) = 1118700 + 0: The total amount of wall time = 349.928184 + 0: The maximum resident set size (KB) = 1111420 Test 093 rap_unified_drag_suite_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_diag_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_diag_debug Checking test 094 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 367.564277 - 0: The maximum resident set size (KB) = 1188504 + 0: The total amount of wall time = 366.422863 + 0: The maximum resident set size (KB) = 1194672 Test 094 rap_diag_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_cires_ugwp_debug Checking test 095 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 358.310261 - 0: The maximum resident set size (KB) = 1108016 + 0: The total amount of wall time = 359.817521 + 0: The maximum resident set size (KB) = 1107404 Test 095 rap_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_unified_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_unified_ugwp_debug Checking test 096 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.508233 - 0: The maximum resident set size (KB) = 1118208 + 0: The total amount of wall time = 356.242063 + 0: The maximum resident set size (KB) = 1114376 Test 096 rap_unified_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_lndp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_lndp_debug Checking test 097 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.643465 - 0: The maximum resident set size (KB) = 1118112 + 0: The total amount of wall time = 358.001025 + 0: The maximum resident set size (KB) = 1113936 Test 097 rap_lndp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_progcld_thompson_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_progcld_thompson_debug Checking test 098 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.535793 - 0: The maximum resident set size (KB) = 1112304 + 0: The total amount of wall time = 351.990519 + 0: The maximum resident set size (KB) = 1106984 Test 098 rap_progcld_thompson_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_noah_debug Checking test 099 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.075932 - 0: The maximum resident set size (KB) = 1107892 + 0: The total amount of wall time = 353.528155 + 0: The maximum resident set size (KB) = 1110360 Test 099 rap_noah_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_sfcdiff_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_sfcdiff_debug Checking test 100 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.787850 - 0: The maximum resident set size (KB) = 1112908 + 0: The total amount of wall time = 366.006344 + 0: The maximum resident set size (KB) = 1107596 Test 100 rap_sfcdiff_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_noah_sfcdiff_cires_ugwp_debug Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 574.978417 - 0: The maximum resident set size (KB) = 1110800 + 0: The total amount of wall time = 582.626178 + 0: The maximum resident set size (KB) = 1105308 Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rrfs_v1beta_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rrfs_v1beta_debug Checking test 102 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.180218 - 0: The maximum resident set size (KB) = 1112588 + 0: The total amount of wall time = 346.767622 + 0: The maximum resident set size (KB) = 1108240 Test 102 rrfs_v1beta_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_clm_lake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_clm_lake_debug Checking test 103 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 430.576959 - 0: The maximum resident set size (KB) = 1108728 + 0: The total amount of wall time = 433.756123 + 0: The maximum resident set size (KB) = 1114928 Test 103 rap_clm_lake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_flake_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_flake_debug Checking test 104 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.949057 - 0: The maximum resident set size (KB) = 1114896 + 0: The total amount of wall time = 356.711308 + 0: The maximum resident set size (KB) = 1107628 Test 104 rap_flake_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_wam_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_wam_debug Checking test 105 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 357.278859 - 0: The maximum resident set size (KB) = 431760 + 0: The total amount of wall time = 356.209533 + 0: The maximum resident set size (KB) = 430788 Test 105 control_wam_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3504,14 +3504,14 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 303.593187 - 0: The maximum resident set size (KB) = 982856 + 0: The total amount of wall time = 306.270946 + 0: The maximum resident set size (KB) = 990600 Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control_dyn32_phy32 Checking test 107 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3558,14 +3558,14 @@ Checking test 107 rap_control_dyn32_phy32 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 = 521.934805 - 0: The maximum resident set size (KB) = 842400 + 0: The total amount of wall time = 510.325740 + 0: The maximum resident set size (KB) = 848504 Test 107 rap_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_dyn32_phy32 Checking test 108 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3612,14 +3612,14 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 253.376551 - 0: The maximum resident set size (KB) = 837404 + 0: The total amount of wall time = 255.551101 + 0: The maximum resident set size (KB) = 838356 Test 108 hrrr_control_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_2threads_dyn32_phy32 Checking test 109 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3666,14 +3666,14 @@ Checking test 109 rap_2threads_dyn32_phy32 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 = 507.916355 - 0: The maximum resident set size (KB) = 887188 + 0: The total amount of wall time = 508.613201 + 0: The maximum resident set size (KB) = 885192 Test 109 rap_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_2threads_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_2threads_dyn32_phy32 Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3720,14 +3720,14 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 235.524657 - 0: The maximum resident set size (KB) = 875692 + 0: The total amount of wall time = 242.229054 + 0: The maximum resident set size (KB) = 873900 Test 110 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_decomp_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_decomp_dyn32_phy32 Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3774,14 +3774,14 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 266.245197 - 0: The maximum resident set size (KB) = 830620 + 0: The total amount of wall time = 266.004700 + 0: The maximum resident set size (KB) = 827732 Test 111 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_restart_dyn32_phy32 Checking test 112 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3820,28 +3820,28 @@ Checking test 112 rap_restart_dyn32_phy32 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 = 369.406964 - 0: The maximum resident set size (KB) = 802484 + 0: The total amount of wall time = 370.538492 + 0: The maximum resident set size (KB) = 815420 Test 112 rap_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_restart_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_restart_dyn32_phy32 Checking test 113 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 131.231682 - 0: The maximum resident set size (KB) = 765968 + 0: The total amount of wall time = 134.022151 + 0: The maximum resident set size (KB) = 765164 Test 113 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control_dyn64_phy32 Checking test 114 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3888,81 +3888,81 @@ Checking test 114 rap_control_dyn64_phy32 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 = 326.945626 - 0: The maximum resident set size (KB) = 860840 + 0: The total amount of wall time = 320.737877 + 0: The maximum resident set size (KB) = 862804 Test 114 rap_control_dyn64_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control_debug_dyn32_phy32 Checking test 115 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 343.497872 - 0: The maximum resident set size (KB) = 1002776 + 0: The total amount of wall time = 355.066923 + 0: The maximum resident set size (KB) = 996188 Test 115 rap_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hrrr_control_debug_dyn32_phy32 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hrrr_control_debug_dyn32_phy32 Checking test 116 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 336.339484 - 0: The maximum resident set size (KB) = 996172 + 0: The total amount of wall time = 342.181992 + 0: The maximum resident set size (KB) = 1000320 Test 116 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/rap_control_dyn64_phy32_debug +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/rap_control_dyn64_phy32_debug Checking test 117 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.995564 - 0: The maximum resident set size (KB) = 1033404 + 0: The total amount of wall time = 353.296767 + 0: The maximum resident set size (KB) = 1028800 Test 117 rap_control_dyn64_phy32_debug PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_atm Checking test 118 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 347.296756 - 0: The maximum resident set size (KB) = 1215948 + 0: The total amount of wall time = 354.359203 + 0: The maximum resident set size (KB) = 1222804 Test 118 hafs_regional_atm PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_thompson_gfdlsf +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_atm_thompson_gfdlsf Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 421.390908 - 0: The maximum resident set size (KB) = 1501860 + 0: The total amount of wall time = 434.609364 + 0: The maximum resident set size (KB) = 1512628 Test 119 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_atm_ocn Checking test 120 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,14 +3971,14 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 520.581187 - 0: The maximum resident set size (KB) = 1295728 + 0: The total amount of wall time = 531.900565 + 0: The maximum resident set size (KB) = 1295724 Test 120 hafs_regional_atm_ocn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_atm_wav Checking test 121 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3987,14 +3987,14 @@ Checking test 121 hafs_regional_atm_wav 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 = 938.823522 - 0: The maximum resident set size (KB) = 1329032 + 0: The total amount of wall time = 941.698887 + 0: The maximum resident set size (KB) = 1292964 Test 121 hafs_regional_atm_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_atm_ocn_wav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_atm_ocn_wav Checking test 122 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4005,14 +4005,14 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 1051.824401 - 0: The maximum resident set size (KB) = 1344376 + 0: The total amount of wall time = 1027.575219 + 0: The maximum resident set size (KB) = 1300600 Test 122 hafs_regional_atm_ocn_wav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_docn Checking test 123 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4020,14 +4020,14 @@ Checking test 123 hafs_regional_docn 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 = 495.646533 - 0: The maximum resident set size (KB) = 1304332 + 0: The total amount of wall time = 496.536156 + 0: The maximum resident set size (KB) = 1305404 Test 123 hafs_regional_docn PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/hafs_regional_docn_oisst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/hafs_regional_docn_oisst Checking test 124 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4035,118 +4035,118 @@ Checking test 124 hafs_regional_docn_oisst 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.988962 - 0: The maximum resident set size (KB) = 1294684 + 0: The total amount of wall time = 499.930528 + 0: The maximum resident set size (KB) = 1296780 Test 124 hafs_regional_docn_oisst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_control_cfsr Checking test 125 datm_cdeps_control_cfsr 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 = 212.663901 - 0: The maximum resident set size (KB) = 958292 + 0: The total amount of wall time = 213.825232 + 0: The maximum resident set size (KB) = 956360 Test 125 datm_cdeps_control_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_restart_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_restart_cfsr Checking test 126 datm_cdeps_restart_cfsr 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 = 127.258548 - 0: The maximum resident set size (KB) = 934296 + 0: The total amount of wall time = 127.381933 + 0: The maximum resident set size (KB) = 957952 Test 126 datm_cdeps_restart_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_control_gefs Checking test 127 datm_cdeps_control_gefs 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 = 206.392628 - 0: The maximum resident set size (KB) = 858296 + 0: The total amount of wall time = 205.536497 + 0: The maximum resident set size (KB) = 856568 Test 127 datm_cdeps_control_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_iau_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_iau_gefs Checking test 128 datm_cdeps_iau_gefs 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 = 208.407964 - 0: The maximum resident set size (KB) = 858852 + 0: The total amount of wall time = 210.435871 + 0: The maximum resident set size (KB) = 856320 Test 128 datm_cdeps_iau_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_stochy_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_stochy_gefs Checking test 129 datm_cdeps_stochy_gefs 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.977541 - 0: The maximum resident set size (KB) = 857884 + 0: The total amount of wall time = 210.612402 + 0: The maximum resident set size (KB) = 864264 Test 129 datm_cdeps_stochy_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_ciceC_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_ciceC_cfsr Checking test 130 datm_cdeps_ciceC_cfsr 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 = 212.994436 - 0: The maximum resident set size (KB) = 966324 + 0: The total amount of wall time = 210.925030 + 0: The maximum resident set size (KB) = 963916 Test 130 datm_cdeps_ciceC_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_bulk_cfsr Checking test 131 datm_cdeps_bulk_cfsr 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 = 212.812762 - 0: The maximum resident set size (KB) = 972908 + 0: The total amount of wall time = 210.753468 + 0: The maximum resident set size (KB) = 971304 Test 131 datm_cdeps_bulk_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_bulk_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_bulk_gefs Checking test 132 datm_cdeps_bulk_gefs 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 = 206.959867 - 0: The maximum resident set size (KB) = 863416 + 0: The total amount of wall time = 203.065061 + 0: The maximum resident set size (KB) = 855824 Test 132 datm_cdeps_bulk_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_mx025_cfsr Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4155,14 +4155,14 @@ Checking test 133 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 565.061457 - 0: The maximum resident set size (KB) = 759928 + 0: The total amount of wall time = 564.821632 + 0: The maximum resident set size (KB) = 766284 Test 133 datm_cdeps_mx025_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_mx025_gefs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_mx025_gefs Checking test 134 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4171,77 +4171,77 @@ Checking test 134 datm_cdeps_mx025_gefs 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 = 560.479713 - 0: The maximum resident set size (KB) = 733920 + 0: The total amount of wall time = 550.587352 + 0: The maximum resident set size (KB) = 734336 Test 134 datm_cdeps_mx025_gefs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_multiple_files_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_multiple_files_cfsr Checking test 135 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 210.775143 - 0: The maximum resident set size (KB) = 975596 + 0: The total amount of wall time = 209.155843 + 0: The maximum resident set size (KB) = 974248 Test 135 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_3072x1536_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_3072x1536_cfsr Checking test 136 datm_cdeps_3072x1536_cfsr 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 = 285.275057 - 0: The maximum resident set size (KB) = 2257540 + 0: The total amount of wall time = 317.382483 + 0: The maximum resident set size (KB) = 2258652 Test 136 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_gfs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_gfs Checking test 137 datm_cdeps_gfs 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 = 286.896573 - 0: The maximum resident set size (KB) = 2251288 + 0: The total amount of wall time = 315.314685 + 0: The maximum resident set size (KB) = 2254216 Test 137 datm_cdeps_gfs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_debug_cfsr +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_debug_cfsr Checking test 138 datm_cdeps_debug_cfsr 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 = 465.978073 - 0: The maximum resident set size (KB) = 910692 + 0: The total amount of wall time = 470.124209 + 0: The maximum resident set size (KB) = 910456 Test 138 datm_cdeps_debug_cfsr PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_control_cfsr_faster +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_control_cfsr_faster Checking test 139 datm_cdeps_control_cfsr_faster 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 = 215.326588 - 0: The maximum resident set size (KB) = 964060 + 0: The total amount of wall time = 208.795770 + 0: The maximum resident set size (KB) = 974728 Test 139 datm_cdeps_control_cfsr_faster PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_lnd_gswp3 Checking test 140 datm_cdeps_lnd_gswp3 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 @@ -4250,14 +4250,14 @@ Checking test 140 datm_cdeps_lnd_gswp3 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 = 13.941528 - 0: The maximum resident set size (KB) = 246064 + 0: The total amount of wall time = 13.051224 + 0: The maximum resident set size (KB) = 248908 Test 140 datm_cdeps_lnd_gswp3 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/datm_cdeps_lnd_gswp3_rst +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/datm_cdeps_lnd_gswp3_rst Checking test 141 datm_cdeps_lnd_gswp3_rst 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 @@ -4266,14 +4266,14 @@ Checking test 141 datm_cdeps_lnd_gswp3_rst 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 = 19.761578 - 0: The maximum resident set size (KB) = 243624 + 0: The total amount of wall time = 19.206015 + 0: The maximum resident set size (KB) = 239492 Test 141 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_p8_atmlnd_sbs +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_p8_atmlnd_sbs Checking test 142 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4358,14 +4358,14 @@ Checking test 142 control_p8_atmlnd_sbs 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 = 290.219215 - 0: The maximum resident set size (KB) = 1584776 + 0: The total amount of wall time = 284.573139 + 0: The maximum resident set size (KB) = 1597624 Test 142 control_p8_atmlnd_sbs PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmwav_control_noaero_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/atmwav_control_noaero_p8 Checking test 143 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4408,14 +4408,14 @@ Checking test 143 atmwav_control_noaero_p8 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 = 130.869141 - 0: The maximum resident set size (KB) = 1556860 + 0: The total amount of wall time = 133.127931 + 0: The maximum resident set size (KB) = 1567724 Test 143 atmwav_control_noaero_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/control_atmwav +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/control_atmwav Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4459,14 +4459,14 @@ Checking test 144 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 120.965962 - 0: The maximum resident set size (KB) = 598244 + 0: The total amount of wall time = 125.220955 + 0: The maximum resident set size (KB) = 594404 Test 144 control_atmwav PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/atmaero_control_p8 Checking test 145 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4510,14 +4510,14 @@ Checking test 145 atmaero_control_p8 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 = 310.451822 - 0: The maximum resident set size (KB) = 1636900 + 0: The total amount of wall time = 308.832526 + 0: The maximum resident set size (KB) = 1651632 Test 145 atmaero_control_p8 PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/atmaero_control_p8_rad Checking test 146 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4561,14 +4561,14 @@ Checking test 146 atmaero_control_p8_rad 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.059363 - 0: The maximum resident set size (KB) = 1682180 + 0: The total amount of wall time = 378.185576 + 0: The maximum resident set size (KB) = 1680776 Test 146 atmaero_control_p8_rad PASS -baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs4/HFIP/h-nems/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_254165/atmaero_control_p8_rad_micro +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_107766/atmaero_control_p8_rad_micro Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4612,12 +4612,12 @@ Checking test 147 atmaero_control_p8_rad_micro 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.022397 - 0: The maximum resident set size (KB) = 1684424 + 0: The total amount of wall time = 383.168379 + 0: The maximum resident set size (KB) = 1665308 Test 147 atmaero_control_p8_rad_micro PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 22:02:09 UTC 2023 -Elapsed time: 02h:58m:26s. Have a nice day! +Tue May 23 21:33:55 UTC 2023 +Elapsed time: 02h:27m:20s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log old mode 100755 new mode 100644 index eb808b3917..0c0be37c40 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,43 +1,45 @@ -Fri May 5 07:52:08 CDT 2023 +Tue May 23 14:55:28 CDT 2023 Start Regression test -Compile 001 elapsed time 727 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 784 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 737 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 252 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 231 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 672 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 678 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 848 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 697 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 659 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 744 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 234 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 610 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 228 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 655 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 213 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 022 elapsed time 768 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 642 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 024 elapsed time 202 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 124 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 207 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 615 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 644 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 620 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 552 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 582 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 033 elapsed time 224 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 034 elapsed time 673 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_mixedmode +Compile 001 elapsed time 833 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 833 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 786 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 269 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 257 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 726 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 797 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 878 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 958 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 243 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 687 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 653 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 652 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 535 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 722 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 231 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 211 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 586 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 551 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 170 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 021 elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 022 elapsed time 645 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 232 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 024 elapsed time 791 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 660 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 026 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 135 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 028 elapsed time 193 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 029 elapsed time 51 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 615 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 596 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 619 seconds. -DAPP=ATMWM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 033 elapsed time 581 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 034 elapsed time 542 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 035 elapsed time 175 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 036 elapsed time 630 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -102,14 +104,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.548649 - 0: The maximum resident set size (KB) = 3139896 + 0: The total amount of wall time = 307.029266 + 0: The maximum resident set size (KB) = 3147528 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_gfsv17 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_gfsv17 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -173,14 +175,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 232.241227 - 0: The maximum resident set size (KB) = 1720856 + 0: The total amount of wall time = 217.051644 + 0: The maximum resident set size (KB) = 1697044 Test 002 cpld_control_gfsv17 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -245,14 +247,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 357.914099 - 0: The maximum resident set size (KB) = 3177288 + 0: The total amount of wall time = 342.875426 + 0: The maximum resident set size (KB) = 3181476 -Test 003 cpld_control_p8 PASS +Test 003 cpld_control_p8 PASS Tries: 2 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -305,14 +307,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 202.296976 - 0: The maximum resident set size (KB) = 3047632 + 0: The total amount of wall time = 201.081005 + 0: The maximum resident set size (KB) = 3054744 Test 004 cpld_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_qr_p8 Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -377,14 +379,14 @@ Checking test 005 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.179599 - 0: The maximum resident set size (KB) = 3188064 + 0: The total amount of wall time = 346.085407 + 0: The maximum resident set size (KB) = 3195844 Test 005 cpld_control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_qr_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_qr_p8 Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -437,14 +439,14 @@ Checking test 006 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 208.385827 - 0: The maximum resident set size (KB) = 3058176 + 0: The total amount of wall time = 272.617289 + 0: The maximum resident set size (KB) = 3065844 Test 006 cpld_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_2threads_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_2threads_p8 Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -497,14 +499,14 @@ Checking test 007 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.268482 - 0: The maximum resident set size (KB) = 3520716 + 0: The total amount of wall time = 401.700607 + 0: The maximum resident set size (KB) = 3514168 Test 007 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_decomp_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_decomp_p8 Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -557,14 +559,14 @@ Checking test 008 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 355.210028 - 0: The maximum resident set size (KB) = 3173276 + 0: The total amount of wall time = 345.069811 + 0: The maximum resident set size (KB) = 3173976 Test 008 cpld_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_mpi_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_mpi_p8 Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -617,14 +619,14 @@ Checking test 009 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 300.078595 - 0: The maximum resident set size (KB) = 3014876 + 0: The total amount of wall time = 287.339883 + 0: The maximum resident set size (KB) = 3021768 Test 009 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_ciceC_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_ciceC_p8 Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -689,14 +691,14 @@ Checking test 010 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 356.780353 - 0: The maximum resident set size (KB) = 3188632 + 0: The total amount of wall time = 343.117999 + 0: The maximum resident set size (KB) = 3180540 Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -749,14 +751,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 647.009273 - 0: The maximum resident set size (KB) = 3263292 + 0: The total amount of wall time = 637.802730 + 0: The maximum resident set size (KB) = 3230524 Test 011 cpld_control_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c192_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -809,14 +811,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 468.804715 - 0: The maximum resident set size (KB) = 3158964 + 0: The total amount of wall time = 438.939870 + 0: The maximum resident set size (KB) = 3171340 Test 012 cpld_restart_c192_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_bmark_p8 Checking test 013 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -864,14 +866,14 @@ Checking test 013 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 873.910371 - 0: The maximum resident set size (KB) = 4028124 + 0: The total amount of wall time = 885.493540 + 0: The maximum resident set size (KB) = 4045172 Test 013 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_bmark_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_bmark_p8 Checking test 014 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -919,14 +921,14 @@ Checking test 014 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 558.280717 - 0: The maximum resident set size (KB) = 3977876 + 0: The total amount of wall time = 563.052083 + 0: The maximum resident set size (KB) = 3990100 Test 014 cpld_restart_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_noaero_p8 Checking test 015 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -990,14 +992,14 @@ Checking test 015 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 257.305183 - 0: The maximum resident set size (KB) = 1720788 + 0: The total amount of wall time = 256.129602 + 0: The maximum resident set size (KB) = 1718876 Test 015 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_nowave_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_nowave_noaero_p8 Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1059,14 +1061,14 @@ Checking test 016 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 260.432685 - 0: The maximum resident set size (KB) = 1760224 + 0: The total amount of wall time = 256.811889 + 0: The maximum resident set size (KB) = 1769608 Test 016 cpld_control_nowave_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_debug_p8 Checking test 017 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1119,14 +1121,14 @@ Checking test 017 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 555.601098 - 0: The maximum resident set size (KB) = 3240692 + 0: The total amount of wall time = 549.891444 + 0: The maximum resident set size (KB) = 3241024 Test 017 cpld_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_debug_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_debug_noaero_p8 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_debug_noaero_p8 Checking test 018 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1178,14 +1180,14 @@ Checking test 018 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 377.061931 - 0: The maximum resident set size (KB) = 1744384 + 0: The total amount of wall time = 379.836535 + 0: The maximum resident set size (KB) = 1734884 Test 018 cpld_debug_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_noaero_p8_agrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_noaero_p8_agrid Checking test 019 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1247,14 +1249,14 @@ Checking test 019 cpld_control_noaero_p8_agrid 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 = 270.702443 - 0: The maximum resident set size (KB) = 1759696 + 0: The total amount of wall time = 266.689500 + 0: The maximum resident set size (KB) = 1761140 Test 019 cpld_control_noaero_p8_agrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_c48 Checking test 020 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1304,14 +1306,14 @@ Checking test 020 cpld_control_c48 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 = 506.490802 - 0: The maximum resident set size (KB) = 2812488 + 0: The total amount of wall time = 502.073693 + 0: The maximum resident set size (KB) = 2810936 Test 020 cpld_control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_warmstart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_warmstart_c48 Checking test 021 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1361,14 +1363,14 @@ Checking test 021 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 139.360241 - 0: The maximum resident set size (KB) = 2809168 + 0: The total amount of wall time = 138.039030 + 0: The maximum resident set size (KB) = 2806032 Test 021 cpld_warmstart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_restart_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_c48 Checking test 022 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1418,14 +1420,14 @@ Checking test 022 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 76.010560 - 0: The maximum resident set size (KB) = 2250096 + 0: The total amount of wall time = 76.477667 + 0: The maximum resident set size (KB) = 2243412 Test 022 cpld_restart_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/cpld_control_p8_faster +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_p8_faster Checking test 023 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1490,15 +1492,275 @@ Checking test 023 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 327.169150 - 0: The maximum resident set size (KB) = 3184968 + 0: The total amount of wall time = 327.222687 + 0: The maximum resident set size (KB) = 3180648 Test 023 cpld_control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_flake -Checking test 024 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_control_pdlib_p8 +Checking test 024 cpld_control_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1206.360534 + 0: The maximum resident set size (KB) = 1753196 + +Test 024 cpld_control_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_restart_pdlib_p8 +Checking test 025 cpld_restart_pdlib_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 586.540871 + 0: The maximum resident set size (KB) = 1027680 + +Test 025 cpld_restart_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_pdlib_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_mpi_pdlib_p8 +Checking test 026 cpld_mpi_pdlib_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/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 = 1057.939252 + 0: The maximum resident set size (KB) = 1658872 + +Test 026 cpld_mpi_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_debug_pdlib_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/cpld_debug_pdlib_p8 +Checking test 027 cpld_debug_pdlib_p8 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 = 1385.349858 + 0: The maximum resident set size (KB) = 1703648 + +Test 027 cpld_debug_pdlib_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_flake +Checking test 028 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1508,15 +1770,15 @@ Checking test 024 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.381963 - 0: The maximum resident set size (KB) = 682792 + 0: The total amount of wall time = 195.514897 + 0: The maximum resident set size (KB) = 677180 -Test 024 control_flake PASS +Test 028 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid -Checking test 025 control_CubedSphereGrid results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_CubedSphereGrid +Checking test 029 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1542,29 +1804,29 @@ Checking test 025 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.555403 - 0: The maximum resident set size (KB) = 638180 + 0: The total amount of wall time = 131.143043 + 0: The maximum resident set size (KB) = 631512 -Test 025 control_CubedSphereGrid PASS +Test 029 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_parallel -Checking test 026 control_CubedSphereGrid_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_CubedSphereGrid_parallel +Checking test 030 control_CubedSphereGrid_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.343668 - 0: The maximum resident set size (KB) = 628436 + 0: The total amount of wall time = 128.801686 + 0: The maximum resident set size (KB) = 631260 -Test 026 control_CubedSphereGrid_parallel PASS +Test 030 control_CubedSphereGrid_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_latlon -Checking test 027 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_latlon +Checking test 031 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1574,33 +1836,33 @@ Checking test 027 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.839770 - 0: The maximum resident set size (KB) = 632208 + 0: The total amount of wall time = 134.486671 + 0: The maximum resident set size (KB) = 633372 -Test 027 control_latlon PASS +Test 031 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel -Checking test 028 control_wrtGauss_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_wrtGauss_netcdf_parallel +Checking test 032 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 137.458043 - 0: The maximum resident set size (KB) = 628664 + 0: The total amount of wall time = 137.067569 + 0: The maximum resident set size (KB) = 635320 -Test 028 control_wrtGauss_netcdf_parallel PASS +Test 032 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c48 -Checking test 029 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_c48 +Checking test 033 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1638,15 +1900,15 @@ Checking test 029 control_c48 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 = 344.387035 -0: The maximum resident set size (KB) = 826364 +0: The total amount of wall time = 345.289028 +0: The maximum resident set size (KB) = 821616 -Test 029 control_c48 PASS +Test 033 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c192 -Checking test 030 control_c192 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_c192 +Checking test 034 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1656,15 +1918,15 @@ Checking test 030 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 527.800311 - 0: The maximum resident set size (KB) = 765032 + 0: The total amount of wall time = 528.603884 + 0: The maximum resident set size (KB) = 767868 -Test 030 control_c192 PASS +Test 034 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384 -Checking test 031 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_c384 +Checking test 035 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1674,15 +1936,15 @@ Checking test 031 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 631.923186 - 0: The maximum resident set size (KB) = 1235784 + 0: The total amount of wall time = 689.360250 + 0: The maximum resident set size (KB) = 1234464 -Test 031 control_c384 PASS +Test 035 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_c384gdas -Checking test 032 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_c384gdas +Checking test 036 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1724,15 +1986,15 @@ Checking test 032 control_c384gdas 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 = 563.613496 - 0: The maximum resident set size (KB) = 1344236 + 0: The total amount of wall time = 507.439397 + 0: The maximum resident set size (KB) = 1339148 -Test 032 control_c384gdas PASS +Test 036 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy -Checking test 033 control_stochy results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_stochy +Checking test 037 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1742,29 +2004,29 @@ Checking test 033 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.376188 - 0: The maximum resident set size (KB) = 633812 + 0: The total amount of wall time = 87.606453 + 0: The maximum resident set size (KB) = 636564 -Test 033 control_stochy PASS +Test 037 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_restart -Checking test 034 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_stochy_restart +Checking test 038 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.065242 - 0: The maximum resident set size (KB) = 481184 + 0: The total amount of wall time = 47.696306 + 0: The maximum resident set size (KB) = 485832 -Test 034 control_stochy_restart PASS +Test 038 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp -Checking test 035 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_lndp +Checking test 039 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1774,15 +2036,15 @@ Checking test 035 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.396312 - 0: The maximum resident set size (KB) = 633560 + 0: The total amount of wall time = 80.467341 + 0: The maximum resident set size (KB) = 635492 -Test 035 control_lndp PASS +Test 039 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr4 -Checking test 036 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_iovr4 +Checking test 040 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1796,15 +2058,15 @@ Checking test 036 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.397578 - 0: The maximum resident set size (KB) = 631192 + 0: The total amount of wall time = 134.344762 + 0: The maximum resident set size (KB) = 633028 -Test 036 control_iovr4 PASS +Test 040 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_iovr5 -Checking test 037 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_iovr5 +Checking test 041 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1818,15 +2080,15 @@ Checking test 037 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.675043 - 0: The maximum resident set size (KB) = 634052 + 0: The total amount of wall time = 134.690740 + 0: The maximum resident set size (KB) = 630172 -Test 037 control_iovr5 PASS +Test 041 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8 -Checking test 038 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8 +Checking test 042 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1872,15 +2134,15 @@ Checking test 038 control_p8 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 = 173.210018 - 0: The maximum resident set size (KB) = 1599508 + 0: The total amount of wall time = 167.916253 + 0: The maximum resident set size (KB) = 1602128 -Test 038 control_p8 PASS +Test 042 control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_p8 -Checking test 039 control_restart_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_restart_p8 +Checking test 043 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1918,15 +2180,15 @@ Checking test 039 control_restart_p8 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 = 88.870671 - 0: The maximum resident set size (KB) = 882340 + 0: The total amount of wall time = 88.402833 + 0: The maximum resident set size (KB) = 875876 -Test 039 control_restart_p8 PASS +Test 043 control_restart_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_qr_p8 -Checking test 040 control_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_qr_p8 +Checking test 044 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1972,15 +2234,15 @@ Checking test 040 control_qr_p8 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 = 173.289049 - 0: The maximum resident set size (KB) = 1608020 + 0: The total amount of wall time = 168.728275 + 0: The maximum resident set size (KB) = 1607176 -Test 040 control_qr_p8 PASS +Test 044 control_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_restart_qr_p8 -Checking test 041 control_restart_qr_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_restart_qr_p8 +Checking test 045 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2018,15 +2280,15 @@ Checking test 041 control_restart_qr_p8 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 = 91.708427 - 0: The maximum resident set size (KB) = 874988 + 0: The total amount of wall time = 92.823869 + 0: The maximum resident set size (KB) = 814364 -Test 041 control_restart_qr_p8 PASS +Test 045 control_restart_qr_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_decomp_p8 -Checking test 042 control_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_decomp_p8 +Checking test 046 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2068,15 +2330,15 @@ Checking test 042 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.654045 - 0: The maximum resident set size (KB) = 1597396 + 0: The total amount of wall time = 174.146168 + 0: The maximum resident set size (KB) = 1585872 -Test 042 control_decomp_p8 PASS +Test 046 control_decomp_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_2threads_p8 -Checking test 043 control_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_2threads_p8 +Checking test 047 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2118,15 +2380,15 @@ Checking test 043 control_2threads_p8 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 = 180.308877 - 0: The maximum resident set size (KB) = 1701376 + 0: The total amount of wall time = 176.318312 + 0: The maximum resident set size (KB) = 1693484 -Test 043 control_2threads_p8 PASS +Test 047 control_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_lndp -Checking test 044 control_p8_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8_lndp +Checking test 048 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2144,15 +2406,15 @@ Checking test 044 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 311.614121 - 0: The maximum resident set size (KB) = 1613840 + 0: The total amount of wall time = 311.910462 + 0: The maximum resident set size (KB) = 1604388 -Test 044 control_p8_lndp PASS +Test 048 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_rrtmgp -Checking test 045 control_p8_rrtmgp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8_rrtmgp +Checking test 049 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2198,15 +2460,15 @@ Checking test 045 control_p8_rrtmgp 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.532895 - 0: The maximum resident set size (KB) = 1679000 + 0: The total amount of wall time = 228.447896 + 0: The maximum resident set size (KB) = 1672056 -Test 045 control_p8_rrtmgp PASS +Test 049 control_p8_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_mynn -Checking test 046 control_p8_mynn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8_mynn +Checking test 050 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2252,15 +2514,15 @@ Checking test 046 control_p8_mynn 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 = 172.067298 - 0: The maximum resident set size (KB) = 1608360 + 0: The total amount of wall time = 172.856919 + 0: The maximum resident set size (KB) = 1553292 -Test 046 control_p8_mynn PASS +Test 050 control_p8_mynn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/merra2_thompson -Checking test 047 merra2_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/merra2_thompson +Checking test 051 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2306,15 +2568,15 @@ Checking test 047 merra2_thompson 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 = 190.554459 - 0: The maximum resident set size (KB) = 1615092 + 0: The total amount of wall time = 189.367482 + 0: The maximum resident set size (KB) = 1614368 -Test 047 merra2_thompson PASS +Test 051 merra2_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control -Checking test 048 regional_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_control +Checking test 052 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2324,29 +2586,29 @@ Checking test 048 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.280553 - 0: The maximum resident set size (KB) = 872800 + 0: The total amount of wall time = 295.612370 + 0: The maximum resident set size (KB) = 870284 -Test 048 regional_control PASS +Test 052 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart -Checking test 049 regional_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_restart +Checking test 053 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.991268 - 0: The maximum resident set size (KB) = 864688 + 0: The total amount of wall time = 150.054255 + 0: The maximum resident set size (KB) = 862344 -Test 049 regional_restart PASS +Test 053 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_qr -Checking test 050 regional_control_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_control_qr +Checking test 054 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2356,29 +2618,29 @@ Checking test 050 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.385670 - 0: The maximum resident set size (KB) = 871728 + 0: The total amount of wall time = 299.406341 + 0: The maximum resident set size (KB) = 818564 -Test 050 regional_control_qr PASS +Test 054 regional_control_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_restart_qr -Checking test 051 regional_restart_qr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_restart_qr +Checking test 055 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 152.305174 - 0: The maximum resident set size (KB) = 863752 + 0: The total amount of wall time = 150.172272 + 0: The maximum resident set size (KB) = 865464 -Test 051 regional_restart_qr PASS +Test 055 regional_restart_qr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_decomp -Checking test 052 regional_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_decomp +Checking test 056 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2388,15 +2650,15 @@ Checking test 052 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.880143 - 0: The maximum resident set size (KB) = 864372 + 0: The total amount of wall time = 313.573555 + 0: The maximum resident set size (KB) = 867844 -Test 052 regional_decomp PASS +Test 056 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2threads -Checking test 053 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_2threads +Checking test 057 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2406,44 +2668,44 @@ Checking test 053 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 207.590165 - 0: The maximum resident set size (KB) = 851968 + 0: The total amount of wall time = 204.827796 + 0: The maximum resident set size (KB) = 850524 -Test 053 regional_2threads PASS +Test 057 regional_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_noquilt -Checking test 054 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_noquilt +Checking test 058 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 317.554266 - 0: The maximum resident set size (KB) = 861256 + 0: The total amount of wall time = 314.936460 + 0: The maximum resident set size (KB) = 860940 -Test 054 regional_noquilt PASS +Test 058 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_netcdf_parallel -Checking test 055 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_netcdf_parallel +Checking test 059 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.690273 - 0: The maximum resident set size (KB) = 864824 + 0: The total amount of wall time = 293.391771 + 0: The maximum resident set size (KB) = 864644 -Test 055 regional_netcdf_parallel PASS +Test 059 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_2dwrtdecomp -Checking test 056 regional_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_2dwrtdecomp +Checking test 060 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2453,15 +2715,15 @@ Checking test 056 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 295.887629 - 0: The maximum resident set size (KB) = 871872 + 0: The total amount of wall time = 302.170504 + 0: The maximum resident set size (KB) = 850960 -Test 056 regional_2dwrtdecomp PASS +Test 060 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_wofs -Checking test 057 regional_wofs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_wofs +Checking test 061 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2471,15 +2733,15 @@ Checking test 057 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 374.714638 - 0: The maximum resident set size (KB) = 630480 + 0: The total amount of wall time = 572.079267 + 0: The maximum resident set size (KB) = 628196 -Test 057 regional_wofs PASS +Test 061 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control -Checking test 058 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control +Checking test 062 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2525,15 +2787,15 @@ Checking test 058 rap_control 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 = 459.895601 - 0: The maximum resident set size (KB) = 1061504 + 0: The total amount of wall time = 460.105362 + 0: The maximum resident set size (KB) = 1056656 -Test 058 rap_control PASS +Test 062 rap_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb -Checking test 059 regional_spp_sppt_shum_skeb results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_spp_sppt_shum_skeb +Checking test 063 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2543,15 +2805,15 @@ Checking test 059 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 269.806506 - 0: The maximum resident set size (KB) = 1195036 + 0: The total amount of wall time = 266.615306 + 0: The maximum resident set size (KB) = 1195456 -Test 059 regional_spp_sppt_shum_skeb PASS +Test 063 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_decomp -Checking test 060 rap_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_decomp +Checking test 064 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2597,15 +2859,15 @@ Checking test 060 rap_decomp 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.889317 - 0: The maximum resident set size (KB) = 1001408 + 0: The total amount of wall time = 477.702583 + 0: The maximum resident set size (KB) = 996356 -Test 060 rap_decomp PASS +Test 064 rap_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads -Checking test 061 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_2threads +Checking test 065 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2651,15 +2913,15 @@ Checking test 061 rap_2threads 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 = 470.925786 - 0: The maximum resident set size (KB) = 1140860 + 0: The total amount of wall time = 469.705833 + 0: The maximum resident set size (KB) = 1140684 -Test 061 rap_2threads PASS +Test 065 rap_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart -Checking test 062 rap_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_restart +Checking test 066 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2697,15 +2959,15 @@ Checking test 062 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.984834 - 0: The maximum resident set size (KB) = 964600 + 0: The total amount of wall time = 232.454075 + 0: The maximum resident set size (KB) = 970776 -Test 062 rap_restart PASS +Test 066 rap_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff -Checking test 063 rap_sfcdiff results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_sfcdiff +Checking test 067 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2751,15 +3013,15 @@ Checking test 063 rap_sfcdiff 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 = 459.907947 - 0: The maximum resident set size (KB) = 1056936 + 0: The total amount of wall time = 461.049003 + 0: The maximum resident set size (KB) = 1058076 -Test 063 rap_sfcdiff PASS +Test 067 rap_sfcdiff PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_decomp -Checking test 064 rap_sfcdiff_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_sfcdiff_decomp +Checking test 068 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2805,15 +3067,15 @@ Checking test 064 rap_sfcdiff_decomp 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 = 484.870987 - 0: The maximum resident set size (KB) = 1001776 + 0: The total amount of wall time = 480.039213 + 0: The maximum resident set size (KB) = 998440 -Test 064 rap_sfcdiff_decomp PASS +Test 068 rap_sfcdiff_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_restart -Checking test 065 rap_sfcdiff_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_sfcdiff_restart +Checking test 069 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2851,15 +3113,15 @@ Checking test 065 rap_sfcdiff_restart 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 = 341.602714 - 0: The maximum resident set size (KB) = 985628 + 0: The total amount of wall time = 340.466632 + 0: The maximum resident set size (KB) = 993024 -Test 065 rap_sfcdiff_restart PASS +Test 069 rap_sfcdiff_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control -Checking test 066 hrrr_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control +Checking test 070 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2905,15 +3167,15 @@ Checking test 066 hrrr_control 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 = 427.895376 - 0: The maximum resident set size (KB) = 1061528 + 0: The total amount of wall time = 425.925213 + 0: The maximum resident set size (KB) = 1053792 -Test 066 hrrr_control PASS +Test 070 hrrr_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp -Checking test 067 hrrr_control_decomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_decomp +Checking test 071 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2959,15 +3221,15 @@ Checking test 067 hrrr_control_decomp 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 = 451.023666 - 0: The maximum resident set size (KB) = 1000320 + 0: The total amount of wall time = 447.052401 + 0: The maximum resident set size (KB) = 1004944 -Test 067 hrrr_control_decomp PASS +Test 071 hrrr_control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads -Checking test 068 hrrr_control_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_2threads +Checking test 072 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3013,29 +3275,29 @@ Checking test 068 hrrr_control_2threads 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 = 363.360954 - 0: The maximum resident set size (KB) = 1081184 + 0: The total amount of wall time = 361.696645 + 0: The maximum resident set size (KB) = 1079732 -Test 068 hrrr_control_2threads PASS +Test 072 hrrr_control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart -Checking test 069 hrrr_control_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_restart +Checking test 073 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 317.470174 - 0: The maximum resident set size (KB) = 986840 + 0: The total amount of wall time = 319.465081 + 0: The maximum resident set size (KB) = 995672 -Test 069 hrrr_control_restart PASS +Test 073 hrrr_control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta -Checking test 070 rrfs_v1beta results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_v1beta +Checking test 074 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3081,15 +3343,15 @@ Checking test 070 rrfs_v1beta 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 = 459.890847 - 0: The maximum resident set size (KB) = 1052904 + 0: The total amount of wall time = 453.602006 + 0: The maximum resident set size (KB) = 1050288 -Test 070 rrfs_v1beta PASS +Test 074 rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl -Checking test 071 rrfs_v1nssl results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_v1nssl +Checking test 075 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3103,15 +3365,15 @@ Checking test 071 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 539.516662 - 0: The maximum resident set size (KB) = 692356 + 0: The total amount of wall time = 537.910752 + 0: The maximum resident set size (KB) = 634100 -Test 071 rrfs_v1nssl PASS +Test 075 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1nssl_nohailnoccn -Checking test 072 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_v1nssl_nohailnoccn +Checking test 076 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3125,15 +3387,15 @@ Checking test 072 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.216888 - 0: The maximum resident set size (KB) = 756668 + 0: The total amount of wall time = 525.582932 + 0: The maximum resident set size (KB) = 757056 -Test 072 rrfs_v1nssl_nohailnoccn PASS +Test 076 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm -Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_smoke_conus13km_hrrr_warm +Checking test 077 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3141,15 +3403,15 @@ Checking test 073 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.538731 - 0: The maximum resident set size (KB) = 1038772 + 0: The total amount of wall time = 151.464098 + 0: The maximum resident set size (KB) = 1035156 -Test 073 rrfs_smoke_conus13km_hrrr_warm PASS +Test 077 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 078 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3157,15 +3419,15 @@ Checking test 074 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 100.793474 - 0: The maximum resident set size (KB) = 942900 + 0: The total amount of wall time = 98.212488 + 0: The maximum resident set size (KB) = 942392 -Test 074 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 078 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm -Checking test 075 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_conus13km_hrrr_warm +Checking test 079 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3173,15 +3435,15 @@ Checking test 075 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 134.821108 - 0: The maximum resident set size (KB) = 990864 + 0: The total amount of wall time = 132.398949 + 0: The maximum resident set size (KB) = 993956 -Test 075 rrfs_conus13km_hrrr_warm PASS +Test 079 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_radar_tten_warm -Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_smoke_conus13km_radar_tten_warm +Checking test 080 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -3189,27 +3451,27 @@ Checking test 076 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 153.938614 - 0: The maximum resident set size (KB) = 1035368 + 0: The total amount of wall time = 152.066849 + 0: The maximum resident set size (KB) = 1043256 -Test 076 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 080 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 077 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 081 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 70.428764 - 0: The maximum resident set size (KB) = 976392 + 0: The total amount of wall time = 69.800762 + 0: The maximum resident set size (KB) = 980820 -Test 077 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 081 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg -Checking test 078 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_csawmg +Checking test 082 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3219,15 +3481,15 @@ Checking test 078 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.238892 - 0: The maximum resident set size (KB) = 725100 + 0: The total amount of wall time = 341.297952 + 0: The maximum resident set size (KB) = 723300 -Test 078 control_csawmg PASS +Test 082 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt -Checking test 079 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_csawmgt +Checking test 083 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3237,15 +3499,15 @@ Checking test 079 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.681337 - 0: The maximum resident set size (KB) = 728808 + 0: The total amount of wall time = 342.166184 + 0: The maximum resident set size (KB) = 689340 -Test 079 control_csawmgt PASS +Test 083 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras -Checking test 080 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_ras +Checking test 084 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3255,27 +3517,27 @@ Checking test 080 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.969201 - 0: The maximum resident set size (KB) = 723840 + 0: The total amount of wall time = 182.772704 + 0: The maximum resident set size (KB) = 722732 -Test 080 control_ras PASS +Test 084 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam -Checking test 081 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_wam +Checking test 085 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.684297 - 0: The maximum resident set size (KB) = 648476 + 0: The total amount of wall time = 112.990091 + 0: The maximum resident set size (KB) = 648472 -Test 081 control_wam PASS +Test 085 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_faster -Checking test 082 control_p8_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8_faster +Checking test 086 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -3321,15 +3583,15 @@ Checking test 082 control_p8_faster 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.228930 - 0: The maximum resident set size (KB) = 1606244 + 0: The total amount of wall time = 158.513304 + 0: The maximum resident set size (KB) = 1548496 -Test 082 control_p8_faster PASS +Test 086 control_p8_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_control_faster -Checking test 083 regional_control_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_control_faster +Checking test 087 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3339,57 +3601,57 @@ Checking test 083 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 269.397706 - 0: The maximum resident set size (KB) = 875092 + 0: The total amount of wall time = 268.975841 + 0: The maximum resident set size (KB) = 870712 -Test 083 regional_control_faster PASS +Test 087 regional_control_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 084 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 088 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 861.862194 - 0: The maximum resident set size (KB) = 1060576 + 0: The total amount of wall time = 870.026040 + 0: The maximum resident set size (KB) = 1060476 -Test 084 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 088 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 482.121075 - 0: The maximum resident set size (KB) = 973464 + 0: The total amount of wall time = 487.773877 + 0: The maximum resident set size (KB) = 983556 -Test 085 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 089 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_conus13km_hrrr_warm_debug -Checking test 086 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_conus13km_hrrr_warm_debug +Checking test 090 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 755.813607 - 0: The maximum resident set size (KB) = 1021672 + 0: The total amount of wall time = 768.942379 + 0: The maximum resident set size (KB) = 1008396 -Test 086 rrfs_conus13km_hrrr_warm_debug PASS +Test 090 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_CubedSphereGrid_debug -Checking test 087 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_CubedSphereGrid_debug +Checking test 091 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3415,349 +3677,349 @@ Checking test 087 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 151.546177 - 0: The maximum resident set size (KB) = 788608 + 0: The total amount of wall time = 154.162746 + 0: The maximum resident set size (KB) = 793592 -Test 087 control_CubedSphereGrid_debug PASS +Test 091 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wrtGauss_netcdf_parallel_debug -Checking test 088 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_wrtGauss_netcdf_parallel_debug +Checking test 092 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 150.571962 - 0: The maximum resident set size (KB) = 789040 + 0: The total amount of wall time = 151.311362 + 0: The maximum resident set size (KB) = 801604 -Test 088 control_wrtGauss_netcdf_parallel_debug PASS +Test 092 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_stochy_debug -Checking test 089 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_stochy_debug +Checking test 093 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.984955 - 0: The maximum resident set size (KB) = 802700 + 0: The total amount of wall time = 176.769048 + 0: The maximum resident set size (KB) = 794152 -Test 089 control_stochy_debug PASS +Test 093 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_lndp_debug -Checking test 090 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_lndp_debug +Checking test 094 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.047219 - 0: The maximum resident set size (KB) = 797284 + 0: The total amount of wall time = 152.421439 + 0: The maximum resident set size (KB) = 793900 -Test 090 control_lndp_debug PASS +Test 094 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmg_debug -Checking test 091 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_csawmg_debug +Checking test 095 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.427728 - 0: The maximum resident set size (KB) = 841196 + 0: The total amount of wall time = 231.571597 + 0: The maximum resident set size (KB) = 845700 -Test 091 control_csawmg_debug PASS +Test 095 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_csawmgt_debug -Checking test 092 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_csawmgt_debug +Checking test 096 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.848874 - 0: The maximum resident set size (KB) = 841652 + 0: The total amount of wall time = 224.732741 + 0: The maximum resident set size (KB) = 845360 -Test 092 control_csawmgt_debug PASS +Test 096 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_ras_debug -Checking test 093 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_ras_debug +Checking test 097 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.826275 - 0: The maximum resident set size (KB) = 801220 + 0: The total amount of wall time = 162.211825 + 0: The maximum resident set size (KB) = 805404 -Test 093 control_ras_debug PASS +Test 097 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_diag_debug -Checking test 094 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_diag_debug +Checking test 098 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.382737 - 0: The maximum resident set size (KB) = 852888 + 0: The total amount of wall time = 456.802149 + 0: The maximum resident set size (KB) = 848520 -Test 094 control_diag_debug PASS +Test 098 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_debug_p8 -Checking test 095 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_debug_p8 +Checking test 099 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.103079 - 0: The maximum resident set size (KB) = 1622220 + 0: The total amount of wall time = 179.561129 + 0: The maximum resident set size (KB) = 1617340 -Test 095 control_debug_p8 PASS +Test 099 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_debug -Checking test 096 regional_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_debug +Checking test 100 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 990.838393 - 0: The maximum resident set size (KB) = 881360 + 0: The total amount of wall time = 989.348384 + 0: The maximum resident set size (KB) = 883452 -Test 096 regional_debug PASS +Test 100 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug -Checking test 097 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control_debug +Checking test 101 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.305433 - 0: The maximum resident set size (KB) = 1178580 + 0: The total amount of wall time = 273.355705 + 0: The maximum resident set size (KB) = 1175268 -Test 097 rap_control_debug PASS +Test 101 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug -Checking test 098 hrrr_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_debug +Checking test 102 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.143827 - 0: The maximum resident set size (KB) = 1167300 + 0: The total amount of wall time = 276.759754 + 0: The maximum resident set size (KB) = 1114728 -Test 098 hrrr_control_debug PASS +Test 102 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_drag_suite_debug -Checking test 099 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_unified_drag_suite_debug +Checking test 103 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.229206 - 0: The maximum resident set size (KB) = 1173984 + 0: The total amount of wall time = 277.503099 + 0: The maximum resident set size (KB) = 1168708 -Test 099 rap_unified_drag_suite_debug PASS +Test 103 rap_unified_drag_suite_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_diag_debug -Checking test 100 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_diag_debug +Checking test 104 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 296.974158 - 0: The maximum resident set size (KB) = 1258732 + 0: The total amount of wall time = 288.482372 + 0: The maximum resident set size (KB) = 1254636 -Test 100 rap_diag_debug PASS +Test 104 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_cires_ugwp_debug -Checking test 101 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_cires_ugwp_debug +Checking test 105 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.329736 - 0: The maximum resident set size (KB) = 1170752 + 0: The total amount of wall time = 281.884900 + 0: The maximum resident set size (KB) = 1173212 -Test 101 rap_cires_ugwp_debug PASS +Test 105 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_unified_ugwp_debug -Checking test 102 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_unified_ugwp_debug +Checking test 106 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.056311 - 0: The maximum resident set size (KB) = 1172572 + 0: The total amount of wall time = 288.496938 + 0: The maximum resident set size (KB) = 1173484 -Test 102 rap_unified_ugwp_debug PASS +Test 106 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_lndp_debug -Checking test 103 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_lndp_debug +Checking test 107 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.325403 - 0: The maximum resident set size (KB) = 1171596 + 0: The total amount of wall time = 290.198148 + 0: The maximum resident set size (KB) = 1176372 -Test 103 rap_lndp_debug PASS +Test 107 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_progcld_thompson_debug -Checking test 104 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_progcld_thompson_debug +Checking test 108 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.948007 - 0: The maximum resident set size (KB) = 1173772 + 0: The total amount of wall time = 296.309867 + 0: The maximum resident set size (KB) = 1171400 -Test 104 rap_progcld_thompson_debug PASS +Test 108 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_debug -Checking test 105 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_noah_debug +Checking test 109 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.197805 - 0: The maximum resident set size (KB) = 1167008 + 0: The total amount of wall time = 277.945947 + 0: The maximum resident set size (KB) = 1168824 -Test 105 rap_noah_debug PASS +Test 109 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_sfcdiff_debug -Checking test 106 rap_sfcdiff_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_sfcdiff_debug +Checking test 110 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.406909 - 0: The maximum resident set size (KB) = 1171700 + 0: The total amount of wall time = 274.077750 + 0: The maximum resident set size (KB) = 1170276 -Test 106 rap_sfcdiff_debug PASS +Test 110 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 107 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 111 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 470.800425 - 0: The maximum resident set size (KB) = 1167152 + 0: The total amount of wall time = 451.547964 + 0: The maximum resident set size (KB) = 1170712 -Test 107 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 111 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rrfs_v1beta_debug -Checking test 108 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rrfs_v1beta_debug +Checking test 112 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.637038 - 0: The maximum resident set size (KB) = 1169412 + 0: The total amount of wall time = 271.459382 + 0: The maximum resident set size (KB) = 1170476 -Test 108 rrfs_v1beta_debug PASS +Test 112 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_clm_lake_debug -Checking test 109 rap_clm_lake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_clm_lake_debug +Checking test 113 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.315082 - 0: The maximum resident set size (KB) = 1170124 + 0: The total amount of wall time = 350.341946 + 0: The maximum resident set size (KB) = 1169944 -Test 109 rap_clm_lake_debug PASS +Test 113 rap_clm_lake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_flake_debug -Checking test 110 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_flake_debug +Checking test 114 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.378905 - 0: The maximum resident set size (KB) = 1171508 + 0: The total amount of wall time = 295.521198 + 0: The maximum resident set size (KB) = 1164700 -Test 110 rap_flake_debug PASS +Test 114 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_wam_debug -Checking test 111 control_wam_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_wam_debug +Checking test 115 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 282.596882 - 0: The maximum resident set size (KB) = 533312 + 0: The total amount of wall time = 292.808529 + 0: The maximum resident set size (KB) = 490304 -Test 111 control_wam_debug PASS +Test 115 control_wam_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3767,15 +4029,15 @@ Checking test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 274.528373 - 0: The maximum resident set size (KB) = 1081404 + 0: The total amount of wall time = 253.103670 + 0: The maximum resident set size (KB) = 1078176 -Test 112 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 116 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn32_phy32 -Checking test 113 rap_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control_dyn32_phy32 +Checking test 117 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3821,15 +4083,15 @@ Checking test 113 rap_control_dyn32_phy32 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.347261 - 0: The maximum resident set size (KB) = 998352 + 0: The total amount of wall time = 381.560787 + 0: The maximum resident set size (KB) = 1001852 -Test 113 rap_control_dyn32_phy32 PASS +Test 117 rap_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_dyn32_phy32 -Checking test 114 hrrr_control_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_dyn32_phy32 +Checking test 118 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3875,15 +4137,15 @@ Checking test 114 hrrr_control_dyn32_phy32 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 = 205.713580 - 0: The maximum resident set size (KB) = 961340 + 0: The total amount of wall time = 190.955263 + 0: The maximum resident set size (KB) = 962836 -Test 114 hrrr_control_dyn32_phy32 PASS +Test 118 hrrr_control_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_2threads_dyn32_phy32 -Checking test 115 rap_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_2threads_dyn32_phy32 +Checking test 119 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3929,15 +4191,15 @@ Checking test 115 rap_2threads_dyn32_phy32 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 = 402.556923 - 0: The maximum resident set size (KB) = 1020248 + 0: The total amount of wall time = 398.706414 + 0: The maximum resident set size (KB) = 1023904 -Test 115 rap_2threads_dyn32_phy32 PASS +Test 119 rap_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_2threads_dyn32_phy32 -Checking test 116 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_2threads_dyn32_phy32 +Checking test 120 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3983,15 +4245,15 @@ Checking test 116 hrrr_control_2threads_dyn32_phy32 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 = 180.204011 - 0: The maximum resident set size (KB) = 933068 + 0: The total amount of wall time = 162.729191 + 0: The maximum resident set size (KB) = 929248 -Test 116 hrrr_control_2threads_dyn32_phy32 PASS +Test 120 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_decomp_dyn32_phy32 -Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_decomp_dyn32_phy32 +Checking test 121 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4037,15 +4299,15 @@ Checking test 117 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.120000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.120000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 220.935373 - 0: The maximum resident set size (KB) = 910912 + 0: The total amount of wall time = 200.202861 + 0: The maximum resident set size (KB) = 911664 -Test 117 hrrr_control_decomp_dyn32_phy32 PASS +Test 121 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_restart_dyn32_phy32 -Checking test 118 rap_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_restart_dyn32_phy32 +Checking test 122 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -4083,29 +4345,29 @@ Checking test 118 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 282.232777 - 0: The maximum resident set size (KB) = 944588 + 0: The total amount of wall time = 285.839653 + 0: The maximum resident set size (KB) = 939900 -Test 118 rap_restart_dyn32_phy32 PASS +Test 122 rap_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_restart_dyn32_phy32 -Checking test 119 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_restart_dyn32_phy32 +Checking test 123 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 99.475187 - 0: The maximum resident set size (KB) = 867708 + 0: The total amount of wall time = 99.277942 + 0: The maximum resident set size (KB) = 866836 -Test 119 hrrr_control_restart_dyn32_phy32 PASS +Test 123 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32 -Checking test 120 rap_control_dyn64_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control_dyn64_phy32 +Checking test 124 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -4151,82 +4413,82 @@ Checking test 120 rap_control_dyn64_phy32 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 = 252.735257 - 0: The maximum resident set size (KB) = 967712 + 0: The total amount of wall time = 245.319913 + 0: The maximum resident set size (KB) = 968212 -Test 120 rap_control_dyn64_phy32 PASS +Test 124 rap_control_dyn64_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_debug_dyn32_phy32 -Checking test 121 rap_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control_debug_dyn32_phy32 +Checking test 125 rap_control_debug_dyn32_phy32 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.909213 - 0: The maximum resident set size (KB) = 1058588 + 0: The total amount of wall time = 279.182438 + 0: The maximum resident set size (KB) = 1002788 -Test 121 rap_control_debug_dyn32_phy32 PASS +Test 125 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hrrr_control_debug_dyn32_phy32 -Checking test 122 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hrrr_control_debug_dyn32_phy32 +Checking test 126 hrrr_control_debug_dyn32_phy32 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.710847 - 0: The maximum resident set size (KB) = 1052336 + 0: The total amount of wall time = 271.104780 + 0: The maximum resident set size (KB) = 1052928 -Test 122 hrrr_control_debug_dyn32_phy32 PASS +Test 126 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/rap_control_dyn64_phy32_debug -Checking test 123 rap_control_dyn64_phy32_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/rap_control_dyn64_phy32_debug +Checking test 127 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.836778 - 0: The maximum resident set size (KB) = 1102768 + 0: The total amount of wall time = 286.866389 + 0: The maximum resident set size (KB) = 1100972 -Test 123 rap_control_dyn64_phy32_debug PASS +Test 127 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm -Checking test 124 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_atm +Checking test 128 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 266.202547 - 0: The maximum resident set size (KB) = 1055256 + 0: The total amount of wall time = 262.808876 + 0: The maximum resident set size (KB) = 1057516 -Test 124 hafs_regional_atm PASS +Test 128 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_thompson_gfdlsf -Checking test 125 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_atm_thompson_gfdlsf +Checking test 129 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.334220 - 0: The maximum resident set size (KB) = 1425220 + 0: The total amount of wall time = 407.452166 + 0: The maximum resident set size (KB) = 1420908 -Test 125 hafs_regional_atm_thompson_gfdlsf PASS +Test 129 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn -Checking test 126 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_atm_ocn +Checking test 130 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4234,15 +4496,15 @@ Checking test 126 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 386.297913 - 0: The maximum resident set size (KB) = 1230368 + 0: The total amount of wall time = 385.096087 + 0: The maximum resident set size (KB) = 1225876 -Test 126 hafs_regional_atm_ocn PASS +Test 130 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_wav -Checking test 127 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_atm_wav +Checking test 131 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -4250,15 +4512,15 @@ Checking test 127 hafs_regional_atm_wav 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 = 744.574718 - 0: The maximum resident set size (KB) = 1258544 + 0: The total amount of wall time = 731.529873 + 0: The maximum resident set size (KB) = 1261732 -Test 127 hafs_regional_atm_wav PASS +Test 131 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_atm_ocn_wav -Checking test 128 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_atm_ocn_wav +Checking test 132 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -4268,29 +4530,73 @@ Checking test 128 hafs_regional_atm_ocn_wav 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 = 861.853464 - 0: The maximum resident set size (KB) = 1275480 + 0: The total amount of wall time = 828.385892 + 0: The maximum resident set size (KB) = 1284272 -Test 128 hafs_regional_atm_ocn_wav PASS +Test 132 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_1nest_atm -Checking test 129 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_1nest_atm +Checking test 133 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 361.681654 - 0: The maximum resident set size (KB) = 469024 - -Test 129 hafs_regional_1nest_atm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_telescopic_2nests_atm -Checking test 130 hafs_regional_telescopic_2nests_atm results .... + 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 + + 0: The total amount of wall time = 363.440086 + 0: The maximum resident set size (KB) = 506036 + +Test 133 hafs_regional_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_1nest_atm_qr +Checking test 134 hafs_regional_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 399.746242 + 0: The maximum resident set size (KB) = 478552 + +Test 134 hafs_regional_1nest_atm_qr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_telescopic_2nests_atm +Checking test 135 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4298,29 +4604,123 @@ Checking test 130 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 411.880648 - 0: The maximum resident set size (KB) = 515116 + 0: The total amount of wall time = 418.133693 + 0: The maximum resident set size (KB) = 517824 -Test 130 hafs_regional_telescopic_2nests_atm PASS +Test 135 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_1nest_atm -Checking test 131 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_global_1nest_atm +Checking test 136 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - - 0: The total amount of wall time = 174.005311 - 0: The maximum resident set size (KB) = 355988 - -Test 131 hafs_global_1nest_atm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_multiple_4nests_atm -Checking test 132 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + + 0: The total amount of wall time = 172.837166 + 0: The maximum resident set size (KB) = 354084 + +Test 136 hafs_global_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_global_1nest_atm_qr +Checking test 137 hafs_global_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.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 = 176.135776 + 0: The maximum resident set size (KB) = 353724 + +Test 137 hafs_global_1nest_atm_qr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_global_multiple_4nests_atm +Checking test 138 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4336,46 +4736,243 @@ Checking test 132 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - - 0: The total amount of wall time = 463.524626 - 0: The maximum resident set size (KB) = 426944 - -Test 132 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_specified_moving_1nest_atm -Checking test 133 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 = 473.757650 + 0: The maximum resident set size (KB) = 427108 + +Test 138 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_global_multiple_4nests_atm_qr +Checking test 139 hafs_global_multiple_4nests_atm_qr 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 - - 0: The total amount of wall time = 230.952308 - 0: The maximum resident set size (KB) = 524468 - -Test 133 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm -Checking test 134 hafs_regional_storm_following_1nest_atm results .... + 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......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 = 482.650188 + 0: The maximum resident set size (KB) = 408568 + +Test 139 hafs_global_multiple_4nests_atm_qr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_specified_moving_1nest_atm +Checking test 140 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 217.489868 - 0: The maximum resident set size (KB) = 521412 + 0: The total amount of wall time = 229.913305 + 0: The maximum resident set size (KB) = 522572 -Test 134 hafs_regional_storm_following_1nest_atm PASS +Test 140 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn -Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_storm_following_1nest_atm +Checking test 141 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 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 + + 0: The total amount of wall time = 216.946863 + 0: The maximum resident set size (KB) = 523040 + +Test 141 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_storm_following_1nest_atm_qr +Checking test 142 hafs_regional_storm_following_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 = 259.142950 + 0: The maximum resident set size (KB) = 504396 + +Test 142 hafs_regional_storm_following_1nest_atm_qr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_storm_following_1nest_atm_ocn +Checking test 143 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4383,43 +4980,43 @@ Checking test 135 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 287.473977 - 0: The maximum resident set size (KB) = 573524 + 0: The total amount of wall time = 290.692257 + 0: The maximum resident set size (KB) = 514824 -Test 135 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 143 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_global_storm_following_1nest_atm -Checking test 136 hafs_global_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_global_storm_following_1nest_atm +Checking test 144 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 67.959181 - 0: The maximum resident set size (KB) = 375876 + 0: The total amount of wall time = 68.559632 + 0: The maximum resident set size (KB) = 374684 -Test 136 hafs_global_storm_following_1nest_atm PASS +Test 144 hafs_global_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 145 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 767.583989 - 0: The maximum resident set size (KB) = 591864 + 0: The total amount of wall time = 769.751701 + 0: The maximum resident set size (KB) = 588420 -Test 137 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 145 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 146 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4429,162 +5026,162 @@ Checking test 138 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 563.877845 - 0: The maximum resident set size (KB) = 626444 + 0: The total amount of wall time = 537.668454 + 0: The maximum resident set size (KB) = 625072 -Test 138 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 146 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn -Checking test 139 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_docn +Checking test 147 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 356.934013 - 0: The maximum resident set size (KB) = 1235900 + 0: The total amount of wall time = 366.127404 + 0: The maximum resident set size (KB) = 1236260 -Test 139 hafs_regional_docn PASS +Test 147 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_docn_oisst -Checking test 140 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_docn_oisst +Checking test 148 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 363.225906 - 0: The maximum resident set size (KB) = 1225252 + 0: The total amount of wall time = 371.664535 + 0: The maximum resident set size (KB) = 1228808 -Test 140 hafs_regional_docn_oisst PASS +Test 148 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/hafs_regional_datm_cdeps -Checking test 141 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/hafs_regional_datm_cdeps +Checking test 149 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.555736 - 0: The maximum resident set size (KB) = 1040996 + 0: The total amount of wall time = 935.177063 + 0: The maximum resident set size (KB) = 1041884 -Test 141 hafs_regional_datm_cdeps PASS +Test 149 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr -Checking test 142 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_control_cfsr +Checking test 150 datm_cdeps_control_cfsr 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.955534 - 0: The maximum resident set size (KB) = 1065512 + 0: The total amount of wall time = 150.136374 + 0: The maximum resident set size (KB) = 1062784 -Test 142 datm_cdeps_control_cfsr PASS +Test 150 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_restart_cfsr -Checking test 143 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_restart_cfsr +Checking test 151 datm_cdeps_restart_cfsr 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.270381 - 0: The maximum resident set size (KB) = 1016460 + 0: The total amount of wall time = 92.966551 + 0: The maximum resident set size (KB) = 1020028 -Test 143 datm_cdeps_restart_cfsr PASS +Test 151 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_gefs -Checking test 144 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_control_gefs +Checking test 152 datm_cdeps_control_gefs 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.664027 - 0: The maximum resident set size (KB) = 976100 + 0: The total amount of wall time = 142.727165 + 0: The maximum resident set size (KB) = 974148 -Test 144 datm_cdeps_control_gefs PASS +Test 152 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_iau_gefs -Checking test 145 datm_cdeps_iau_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_iau_gefs +Checking test 153 datm_cdeps_iau_gefs 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.715440 - 0: The maximum resident set size (KB) = 964232 + 0: The total amount of wall time = 144.203332 + 0: The maximum resident set size (KB) = 964132 -Test 145 datm_cdeps_iau_gefs PASS +Test 153 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_stochy_gefs -Checking test 146 datm_cdeps_stochy_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_stochy_gefs +Checking test 154 datm_cdeps_stochy_gefs 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.150206 - 0: The maximum resident set size (KB) = 929328 + 0: The total amount of wall time = 145.283148 + 0: The maximum resident set size (KB) = 972804 -Test 146 datm_cdeps_stochy_gefs PASS +Test 154 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_ciceC_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_ciceC_cfsr -Checking test 147 datm_cdeps_ciceC_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_ciceC_cfsr +Checking test 155 datm_cdeps_ciceC_cfsr 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.396475 - 0: The maximum resident set size (KB) = 1070740 + 0: The total amount of wall time = 166.124063 + 0: The maximum resident set size (KB) = 1046060 -Test 147 datm_cdeps_ciceC_cfsr PASS +Test 155 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_cfsr -Checking test 148 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_bulk_cfsr +Checking test 156 datm_cdeps_bulk_cfsr 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.802324 - 0: The maximum resident set size (KB) = 1054756 + 0: The total amount of wall time = 153.858414 + 0: The maximum resident set size (KB) = 1061488 -Test 148 datm_cdeps_bulk_cfsr PASS +Test 156 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_bulk_gefs -Checking test 149 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_bulk_gefs +Checking test 157 datm_cdeps_bulk_gefs 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.692049 - 0: The maximum resident set size (KB) = 976860 + 0: The total amount of wall time = 154.086567 + 0: The maximum resident set size (KB) = 974136 -Test 149 datm_cdeps_bulk_gefs PASS +Test 157 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_cfsr -Checking test 150 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_mx025_cfsr +Checking test 158 datm_cdeps_mx025_cfsr 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 @@ -4592,15 +5189,15 @@ Checking test 150 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 444.133428 - 0: The maximum resident set size (KB) = 870464 + 0: The total amount of wall time = 470.746779 + 0: The maximum resident set size (KB) = 879368 -Test 150 datm_cdeps_mx025_cfsr PASS +Test 158 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_mx025_gefs -Checking test 151 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_mx025_gefs +Checking test 159 datm_cdeps_mx025_gefs 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 @@ -4608,78 +5205,78 @@ Checking test 151 datm_cdeps_mx025_gefs 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 = 454.602074 - 0: The maximum resident set size (KB) = 931384 + 0: The total amount of wall time = 443.699526 + 0: The maximum resident set size (KB) = 933360 -Test 151 datm_cdeps_mx025_gefs PASS +Test 159 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_multiple_files_cfsr -Checking test 152 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_multiple_files_cfsr +Checking test 160 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.105293 - 0: The maximum resident set size (KB) = 1058260 + 0: The total amount of wall time = 149.194394 + 0: The maximum resident set size (KB) = 1072196 -Test 152 datm_cdeps_multiple_files_cfsr PASS +Test 160 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_3072x1536_cfsr -Checking test 153 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_3072x1536_cfsr +Checking test 161 datm_cdeps_3072x1536_cfsr 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 = 195.791488 - 0: The maximum resident set size (KB) = 2366548 + 0: The total amount of wall time = 205.930967 + 0: The maximum resident set size (KB) = 2367748 -Test 153 datm_cdeps_3072x1536_cfsr PASS +Test 161 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_gfs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_gfs -Checking test 154 datm_cdeps_gfs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_gfs +Checking test 162 datm_cdeps_gfs 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 = 199.955753 - 0: The maximum resident set size (KB) = 2297492 + 0: The total amount of wall time = 204.331235 + 0: The maximum resident set size (KB) = 2375832 -Test 154 datm_cdeps_gfs PASS +Test 162 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_debug_cfsr -Checking test 155 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_debug_cfsr +Checking test 163 datm_cdeps_debug_cfsr 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 = 360.055743 - 0: The maximum resident set size (KB) = 995636 + 0: The total amount of wall time = 361.537895 + 0: The maximum resident set size (KB) = 977036 -Test 155 datm_cdeps_debug_cfsr PASS +Test 163 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_control_cfsr_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_control_cfsr_faster -Checking test 156 datm_cdeps_control_cfsr_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_control_cfsr_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_control_cfsr_faster +Checking test 164 datm_cdeps_control_cfsr_faster 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 = 159.630534 - 0: The maximum resident set size (KB) = 1063276 + 0: The total amount of wall time = 145.338399 + 0: The maximum resident set size (KB) = 1065712 -Test 156 datm_cdeps_control_cfsr_faster PASS +Test 164 datm_cdeps_control_cfsr_faster PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3 -Checking test 157 datm_cdeps_lnd_gswp3 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_lnd_gswp3 +Checking test 165 datm_cdeps_lnd_gswp3 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 @@ -4687,15 +5284,15 @@ Checking test 157 datm_cdeps_lnd_gswp3 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.049735 - 0: The maximum resident set size (KB) = 268000 + 0: The total amount of wall time = 10.333400 + 0: The maximum resident set size (KB) = 262232 -Test 157 datm_cdeps_lnd_gswp3 PASS +Test 165 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/datm_cdeps_lnd_gswp3 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/datm_cdeps_lnd_gswp3_rst -Checking test 158 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/datm_cdeps_lnd_gswp3_rst +Checking test 166 datm_cdeps_lnd_gswp3_rst 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 @@ -4703,15 +5300,15 @@ Checking test 158 datm_cdeps_lnd_gswp3_rst 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 = 13.436463 - 0: The maximum resident set size (KB) = 248580 + 0: The total amount of wall time = 13.262402 + 0: The maximum resident set size (KB) = 243628 -Test 158 datm_cdeps_lnd_gswp3_rst PASS +Test 166 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_p8_atmlnd_sbs -Checking test 159 control_p8_atmlnd_sbs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_p8_atmlnd_sbs +Checking test 167 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4795,15 +5392,15 @@ Checking test 159 control_p8_atmlnd_sbs 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 = 215.902223 - 0: The maximum resident set size (KB) = 1603756 + 0: The total amount of wall time = 205.884885 + 0: The maximum resident set size (KB) = 1577352 -Test 159 control_p8_atmlnd_sbs PASS +Test 167 control_p8_atmlnd_sbs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmwav_control_noaero_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmwav_control_noaero_p8 -Checking test 160 atmwav_control_noaero_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmwav_control_noaero_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/atmwav_control_noaero_p8 +Checking test 168 atmwav_control_noaero_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4845,15 +5442,15 @@ Checking test 160 atmwav_control_noaero_p8 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 = 114.910781 - 0: The maximum resident set size (KB) = 1647360 + 0: The total amount of wall time = 94.927250 + 0: The maximum resident set size (KB) = 1650308 -Test 160 atmwav_control_noaero_p8 PASS +Test 168 atmwav_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/control_atmwav -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/control_atmwav -Checking test 161 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/control_atmwav +Checking test 169 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4896,15 +5493,15 @@ Checking test 161 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 103.135697 - 0: The maximum resident set size (KB) = 663632 + 0: The total amount of wall time = 94.112602 + 0: The maximum resident set size (KB) = 662648 -Test 161 control_atmwav PASS +Test 169 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8 -Checking test 162 atmaero_control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/atmaero_control_p8 +Checking test 170 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4947,15 +5544,15 @@ Checking test 162 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 259.757023 - 0: The maximum resident set size (KB) = 2976196 + 0: The total amount of wall time = 230.942245 + 0: The maximum resident set size (KB) = 2927204 -Test 162 atmaero_control_p8 PASS +Test 170 atmaero_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad -Checking test 163 atmaero_control_p8_rad results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/atmaero_control_p8_rad +Checking test 171 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4998,15 +5595,15 @@ Checking test 163 atmaero_control_p8_rad 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 = 302.212441 - 0: The maximum resident set size (KB) = 3059968 + 0: The total amount of wall time = 282.632829 + 0: The maximum resident set size (KB) = 3054336 -Test 163 atmaero_control_p8_rad PASS +Test 171 atmaero_control_p8_rad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/atmaero_control_p8_rad_micro -Checking test 164 atmaero_control_p8_rad_micro results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/atmaero_control_p8_rad_micro +Checking test 172 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -5049,15 +5646,15 @@ Checking test 164 atmaero_control_p8_rad_micro 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 = 310.272817 - 0: The maximum resident set size (KB) = 3059764 + 0: The total amount of wall time = 284.633991 + 0: The maximum resident set size (KB) = 3063192 -Test 164 atmaero_control_p8_rad_micro PASS +Test 172 atmaero_control_p8_rad_micro PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq -Checking test 165 regional_atmaq results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_atmaq +Checking test 173 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5072,15 +5669,15 @@ Checking test 165 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 653.681345 - 0: The maximum resident set size (KB) = 1482260 + 0: The total amount of wall time = 624.206723 + 0: The maximum resident set size (KB) = 1477088 -Test 165 regional_atmaq PASS +Test 173 regional_atmaq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_debug -Checking test 166 regional_atmaq_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_atmaq_debug +Checking test 174 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -5093,15 +5690,15 @@ Checking test 166 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1255.495440 - 0: The maximum resident set size (KB) = 1405172 + 0: The total amount of wall time = 1214.823259 + 0: The maximum resident set size (KB) = 1407604 -Test 166 regional_atmaq_debug PASS +Test 174 regional_atmaq_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_faster -working dir = /work/noaa/epic-ps/jongkim/rt-1731/stmp/jongkim/FV3_RT/rt_58340/regional_atmaq_faster -Checking test 167 regional_atmaq_faster results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_faster +working dir = /work/noaa/epic-ps/zshrader/rt-1699/stmp/zshrader/FV3_RT/rt_219309/regional_atmaq_faster +Checking test 175 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -5116,12 +5713,12 @@ Checking test 167 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 601.114723 - 0: The maximum resident set size (KB) = 1477764 + 0: The total amount of wall time = 547.902583 + 0: The maximum resident set size (KB) = 1484868 -Test 167 regional_atmaq_faster PASS +Test 175 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri May 5 09:06:51 CDT 2023 -Elapsed time: 01h:14m:44s. Have a nice day! +Tue May 23 16:16:51 CDT 2023 +Elapsed time: 01h:21m:23s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index b9f55a3bc5..4414139be3 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,34 +1,34 @@ -Mon May 8 23:19:08 UTC 2023 +Wed May 24 17:21:48 UTC 2023 Start Regression test -Compile 001 elapsed time 623 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1134 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1674 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 005 elapsed time 536 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 765 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1261 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 1035 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 1052 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 951 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1069 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 1196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 493 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 017 elapsed time 790 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 709 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 710 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 649 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 779 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 559 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 924 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 445 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 025 elapsed time 750 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_mixedmode -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_mixedmode +Compile 001 elapsed time 957 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1004 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 957 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1138 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 1209 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 1011 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_flake,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1451 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 972 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 476 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_HRRR_flake,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,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 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 459 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 641 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 1074 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 669 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 694 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR,FV3_HRRR_flake -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 747 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 868 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 -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 768 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1158 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 1025 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 773 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 459 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 025 elapsed time 706 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -93,15 +93,86 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 343.864803 -The maximum resident set size (KB) = 2953872 +The total amount of wall time = 504.003582 +The maximum resident set size (KB) = 2951048 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8 -Checking test 002 cpld_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 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 + +The total amount of wall time = 335.319508 +The maximum resident set size (KB) = 1564444 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -165,15 +236,15 @@ Checking test 002 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 390.146929 -The maximum resident set size (KB) = 2986756 +The total amount of wall time = 528.287234 +The maximum resident set size (KB) = 2975716 -Test 002 cpld_control_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_p8 -Checking test 003 cpld_restart_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -225,15 +296,15 @@ Checking test 003 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 238.615239 -The maximum resident set size (KB) = 2872064 +The total amount of wall time = 371.639291 +The maximum resident set size (KB) = 2864048 -Test 003 cpld_restart_p8 PASS +Test 004 cpld_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_qr_p8 -Checking test 004 cpld_control_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_qr_p8 +Checking test 005 cpld_control_qr_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -297,15 +368,15 @@ Checking test 004 cpld_control_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 397.760025 -The maximum resident set size (KB) = 2995624 +The total amount of wall time = 569.261607 +The maximum resident set size (KB) = 2997840 -Test 004 cpld_control_qr_p8 PASS +Test 005 cpld_control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_qr_p8 -Checking test 005 cpld_restart_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_restart_qr_p8 +Checking test 006 cpld_restart_qr_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -357,15 +428,15 @@ Checking test 005 cpld_restart_qr_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 239.848171 -The maximum resident set size (KB) = 2884552 +The total amount of wall time = 427.350516 +The maximum resident set size (KB) = 2880416 -Test 005 cpld_restart_qr_p8 PASS +Test 006 cpld_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_2threads_p8 -Checking test 006 cpld_2threads_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_2threads_p8 +Checking test 007 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -417,15 +488,15 @@ Checking test 006 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 372.763329 -The maximum resident set size (KB) = 3287172 +The total amount of wall time = 503.771582 +The maximum resident set size (KB) = 3282464 -Test 006 cpld_2threads_p8 PASS +Test 007 cpld_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_decomp_p8 -Checking test 007 cpld_decomp_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_decomp_p8 +Checking test 008 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -477,15 +548,15 @@ Checking test 007 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 386.482338 -The maximum resident set size (KB) = 2981820 +The total amount of wall time = 508.924017 +The maximum resident set size (KB) = 2977812 -Test 007 cpld_decomp_p8 PASS +Test 008 cpld_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_mpi_p8 -Checking test 008 cpld_mpi_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_mpi_p8 +Checking test 009 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -537,15 +608,15 @@ Checking test 008 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 321.498746 -The maximum resident set size (KB) = 2910552 +The total amount of wall time = 477.908401 +The maximum resident set size (KB) = 2911952 -Test 008 cpld_mpi_p8 PASS +Test 009 cpld_mpi_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_ciceC_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_ciceC_p8 -Checking test 009 cpld_control_ciceC_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_ciceC_p8 +Checking test 010 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -609,15 +680,15 @@ Checking test 009 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 392.591687 -The maximum resident set size (KB) = 2986704 +The total amount of wall time = 523.115008 +The maximum resident set size (KB) = 2979980 -Test 009 cpld_control_ciceC_p8 PASS +Test 010 cpld_control_ciceC_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_bmark_p8 -Checking test 010 cpld_bmark_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_bmark_p8 +Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -664,15 +735,15 @@ Checking test 010 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 967.594271 -The maximum resident set size (KB) = 3925048 +The total amount of wall time = 1242.553252 +The maximum resident set size (KB) = 3921396 -Test 010 cpld_bmark_p8 PASS +Test 011 cpld_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_bmark_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_bmark_p8 -Checking test 011 cpld_restart_bmark_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_restart_bmark_p8 +Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK Comparing GFSFLX.GrbF06 .........OK @@ -719,15 +790,15 @@ Checking test 011 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK -The total amount of wall time = 661.248536 -The maximum resident set size (KB) = 3896804 +The total amount of wall time = 873.194217 +The maximum resident set size (KB) = 3888456 -Test 011 cpld_restart_bmark_p8 PASS +Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8 -Checking test 012 cpld_control_noaero_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -790,15 +861,15 @@ Checking test 012 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 291.020896 -The maximum resident set size (KB) = 1568036 +The total amount of wall time = 405.487723 +The maximum resident set size (KB) = 1574304 -Test 012 cpld_control_noaero_p8 PASS +Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c96_noaero_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_nowave_noaero_p8 -Checking test 013 cpld_control_nowave_noaero_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -859,15 +930,15 @@ Checking test 013 cpld_control_nowave_noaero_p8 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 = 303.620718 -The maximum resident set size (KB) = 1623544 +The total amount of wall time = 382.888442 +The maximum resident set size (KB) = 1626448 -Test 013 cpld_control_nowave_noaero_p8 PASS +Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_noaero_p8_agrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_noaero_p8_agrid -Checking test 014 cpld_control_noaero_p8_agrid results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -928,15 +999,15 @@ Checking test 014 cpld_control_noaero_p8_agrid 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 = 317.154399 -The maximum resident set size (KB) = 1629136 +The total amount of wall time = 409.975055 +The maximum resident set size (KB) = 1628200 -Test 014 cpld_control_noaero_p8_agrid PASS +Test 015 cpld_control_noaero_p8_agrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_c48 -Checking test 015 cpld_control_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -985,15 +1056,15 @@ Checking test 015 cpld_control_c48 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 = 445.954087 -The maximum resident set size (KB) = 2644544 +The total amount of wall time = 487.055481 +The maximum resident set size (KB) = 2635984 -Test 015 cpld_control_c48 PASS +Test 016 cpld_control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_warmstart_c48 -Checking test 016 cpld_warmstart_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1042,15 +1113,15 @@ Checking test 016 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 130.772757 -The maximum resident set size (KB) = 2655572 +The total amount of wall time = 171.171669 +The maximum resident set size (KB) = 2655264 -Test 016 cpld_warmstart_c48 PASS +Test 017 cpld_warmstart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_warmstart_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_restart_c48 -Checking test 017 cpld_restart_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1099,15 +1170,15 @@ Checking test 017 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK -The total amount of wall time = 73.123090 -The maximum resident set size (KB) = 2075904 +The total amount of wall time = 112.108574 +The maximum resident set size (KB) = 2068180 -Test 017 cpld_restart_c48 PASS +Test 018 cpld_restart_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/cpld_control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/cpld_control_p8_faster -Checking test 018 cpld_control_p8_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/cpld_control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/cpld_control_p8_faster +Checking test 019 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -1171,15 +1242,15 @@ Checking test 018 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -The total amount of wall time = 383.251467 -The maximum resident set size (KB) = 2984280 +The total amount of wall time = 547.469120 +The maximum resident set size (KB) = 2987004 -Test 018 cpld_control_p8_faster PASS +Test 019 cpld_control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_flake -Checking test 019 control_flake results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_flake +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_flake +Checking test 020 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1189,15 +1260,15 @@ Checking test 019 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.126691 -The maximum resident set size (KB) = 569676 +The total amount of wall time = 264.434614 +The maximum resident set size (KB) = 567736 -Test 019 control_flake PASS +Test 020 control_flake PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1223,15 +1294,15 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 132.231996 -The maximum resident set size (KB) = 519576 +The total amount of wall time = 239.024258 +The maximum resident set size (KB) = 518612 -Test 020 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_latlon -Checking test 021 control_latlon results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_latlon +Checking test 022 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1241,15 +1312,15 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.106371 -The maximum resident set size (KB) = 519736 +The total amount of wall time = 163.158252 +The maximum resident set size (KB) = 523328 -Test 021 control_latlon PASS +Test 022 control_latlon PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel -Checking test 022 control_wrtGauss_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1259,15 +1330,15 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 136.722213 -The maximum resident set size (KB) = 521348 +The total amount of wall time = 179.017089 +The maximum resident set size (KB) = 520380 -Test 022 control_wrtGauss_netcdf_parallel PASS +Test 023 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c48 -Checking test 023 control_c48 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_c48 +Checking test 024 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1305,15 +1376,15 @@ Checking test 023 control_c48 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 = 327.140923 -The maximum resident set size (KB) = 682428 +The total amount of wall time = 346.864515 +The maximum resident set size (KB) = 677452 -Test 023 control_c48 PASS +Test 024 control_c48 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c192 -Checking test 024 control_c192 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_c192 +Checking test 025 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1323,15 +1394,15 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 530.849784 -The maximum resident set size (KB) = 621068 +The total amount of wall time = 625.954617 +The maximum resident set size (KB) = 620636 -Test 024 control_c192 PASS +Test 025 control_c192 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384 -Checking test 025 control_c384 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_c384 +Checking test 026 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1341,15 +1412,15 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 569.984168 -The maximum resident set size (KB) = 931620 +The total amount of wall time = 835.702872 +The maximum resident set size (KB) = 929928 -Test 025 control_c384 PASS +Test 026 control_c384 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_c384gdas -Checking test 026 control_c384gdas results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_c384gdas +Checking test 027 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1391,15 +1462,15 @@ Checking test 026 control_c384gdas 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 = 502.516761 -The maximum resident set size (KB) = 1063596 +The total amount of wall time = 746.013606 +The maximum resident set size (KB) = 1064284 -Test 026 control_c384gdas PASS +Test 027 control_c384gdas PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy -Checking test 027 control_stochy results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_stochy +Checking test 028 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1409,29 +1480,29 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 91.462604 -The maximum resident set size (KB) = 526084 +The total amount of wall time = 146.420238 +The maximum resident set size (KB) = 523560 -Test 027 control_stochy PASS +Test 028 control_stochy PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_restart -Checking test 028 control_stochy_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_stochy_restart +Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 57.280421 -The maximum resident set size (KB) = 294440 +The total amount of wall time = 89.440327 +The maximum resident set size (KB) = 294472 -Test 028 control_stochy_restart PASS +Test 029 control_stochy_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp -Checking test 029 control_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_lndp +Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1441,15 +1512,15 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 85.208701 -The maximum resident set size (KB) = 524608 +The total amount of wall time = 138.821855 +The maximum resident set size (KB) = 529408 -Test 029 control_lndp PASS +Test 030 control_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr4 -Checking test 030 control_iovr4 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_iovr4 +Checking test 031 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,15 +1534,15 @@ Checking test 030 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 138.760184 -The maximum resident set size (KB) = 521348 +The total amount of wall time = 188.187882 +The maximum resident set size (KB) = 522224 -Test 030 control_iovr4 PASS +Test 031 control_iovr4 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_iovr5 -Checking test 031 control_iovr5 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_iovr5 +Checking test 032 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1485,15 +1556,15 @@ Checking test 031 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 137.679707 -The maximum resident set size (KB) = 519936 +The total amount of wall time = 201.170488 +The maximum resident set size (KB) = 520672 -Test 031 control_iovr5 PASS +Test 032 control_iovr5 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8 -Checking test 032 control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8 +Checking test 033 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1539,15 +1610,15 @@ Checking test 032 control_p8 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 = 186.523552 -The maximum resident set size (KB) = 1487616 +The total amount of wall time = 256.616734 +The maximum resident set size (KB) = 1493560 -Test 032 control_p8 PASS +Test 033 control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_p8 -Checking test 033 control_restart_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_restart_p8 +Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1585,15 +1656,15 @@ Checking test 033 control_restart_p8 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.986888 -The maximum resident set size (KB) = 661276 +The total amount of wall time = 160.283438 +The maximum resident set size (KB) = 658084 -Test 033 control_restart_p8 PASS +Test 034 control_restart_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_qr_p8 -Checking test 034 control_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_qr_p8 +Checking test 035 control_qr_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1639,15 +1710,15 @@ Checking test 034 control_qr_p8 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 = 188.057445 -The maximum resident set size (KB) = 1500460 +The total amount of wall time = 249.201234 +The maximum resident set size (KB) = 1500252 -Test 034 control_qr_p8 PASS +Test 035 control_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_restart_qr_p8 -Checking test 035 control_restart_qr_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_restart_qr_p8 +Checking test 036 control_restart_qr_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1685,15 +1756,15 @@ Checking test 035 control_restart_qr_p8 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 = 105.539492 -The maximum resident set size (KB) = 672584 +The total amount of wall time = 152.553766 +The maximum resident set size (KB) = 674212 -Test 035 control_restart_qr_p8 PASS +Test 036 control_restart_qr_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_decomp_p8 -Checking test 036 control_decomp_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1735,15 +1806,15 @@ Checking test 036 control_decomp_p8 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.929111 -The maximum resident set size (KB) = 1483672 +The total amount of wall time = 313.627902 +The maximum resident set size (KB) = 1480992 -Test 036 control_decomp_p8 PASS +Test 037 control_decomp_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_2threads_p8 -Checking test 037 control_2threads_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1785,15 +1856,15 @@ Checking test 037 control_2threads_p8 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.472832 -The maximum resident set size (KB) = 1576496 +The total amount of wall time = 225.480988 +The maximum resident set size (KB) = 1569596 -Test 037 control_2threads_p8 PASS +Test 038 control_2threads_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_lndp -Checking test 038 control_p8_lndp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8_lndp +Checking test 039 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1811,15 +1882,15 @@ Checking test 038 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 325.541017 -The maximum resident set size (KB) = 1484864 +The total amount of wall time = 441.782522 +The maximum resident set size (KB) = 1485896 -Test 038 control_p8_lndp PASS +Test 039 control_p8_lndp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1865,15 +1936,15 @@ Checking test 039 control_p8_rrtmgp 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 = 238.872188 -The maximum resident set size (KB) = 1553944 +The total amount of wall time = 312.161838 +The maximum resident set size (KB) = 1556284 -Test 039 control_p8_rrtmgp PASS +Test 040 control_p8_rrtmgp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_mynn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_mynn -Checking test 040 control_p8_mynn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_mynn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8_mynn +Checking test 041 control_p8_mynn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1919,15 +1990,15 @@ Checking test 040 control_p8_mynn 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.321927 -The maximum resident set size (KB) = 1487100 +The total amount of wall time = 283.388811 +The maximum resident set size (KB) = 1499788 -Test 040 control_p8_mynn PASS +Test 041 control_p8_mynn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/merra2_thompson -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/merra2_thompson -Checking test 041 merra2_thompson results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/merra2_thompson +Checking test 042 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1973,15 +2044,15 @@ Checking test 041 merra2_thompson 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 = 207.764186 -The maximum resident set size (KB) = 1494004 +The total amount of wall time = 295.756520 +The maximum resident set size (KB) = 1500120 -Test 041 merra2_thompson PASS +Test 042 merra2_thompson PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control -Checking test 042 regional_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_control +Checking test 043 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1991,29 +2062,29 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 301.770632 -The maximum resident set size (KB) = 655356 +The total amount of wall time = 372.020772 +The maximum resident set size (KB) = 661040 -Test 042 regional_control PASS +Test 043 regional_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart -Checking test 043 regional_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_restart +Checking test 044 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 160.398966 -The maximum resident set size (KB) = 654072 +The total amount of wall time = 208.566305 +The maximum resident set size (KB) = 655276 -Test 043 regional_restart PASS +Test 044 regional_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_qr -Checking test 044 regional_control_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_control_qr +Checking test 045 regional_control_qr results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2023,29 +2094,29 @@ Checking test 044 regional_control_qr results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.933992 -The maximum resident set size (KB) = 658440 +The total amount of wall time = 372.791647 +The maximum resident set size (KB) = 658796 -Test 044 regional_control_qr PASS +Test 045 regional_control_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_restart_qr -Checking test 045 regional_restart_qr results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_restart_qr +Checking test 046 regional_restart_qr results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 162.110107 -The maximum resident set size (KB) = 655136 +The total amount of wall time = 214.202757 +The maximum resident set size (KB) = 655828 -Test 045 regional_restart_qr PASS +Test 046 regional_restart_qr PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_decomp -Checking test 046 regional_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_decomp +Checking test 047 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2055,15 +2126,15 @@ Checking test 046 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 312.052297 -The maximum resident set size (KB) = 657244 +The total amount of wall time = 397.715874 +The maximum resident set size (KB) = 657616 -Test 046 regional_decomp PASS +Test 047 regional_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2threads -Checking test 047 regional_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_2threads +Checking test 048 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2073,44 +2144,44 @@ Checking test 047 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 192.504411 -The maximum resident set size (KB) = 703984 +The total amount of wall time = 313.273638 +The maximum resident set size (KB) = 700588 -Test 047 regional_2threads PASS +Test 048 regional_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_noquilt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_noquilt -Checking test 048 regional_noquilt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_noquilt +Checking test 049 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 321.027519 -The maximum resident set size (KB) = 648476 +The total amount of wall time = 409.662657 +The maximum resident set size (KB) = 649548 -Test 048 regional_noquilt PASS +Test 049 regional_noquilt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_netcdf_parallel -Checking test 049 regional_netcdf_parallel results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_netcdf_parallel +Checking test 050 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK -The total amount of wall time = 296.101275 -The maximum resident set size (KB) = 656716 +The total amount of wall time = 366.504718 +The maximum resident set size (KB) = 654956 -Test 049 regional_netcdf_parallel PASS +Test 050 regional_netcdf_parallel PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_2dwrtdecomp -Checking test 050 regional_2dwrtdecomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_2dwrtdecomp +Checking test 051 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2120,15 +2191,15 @@ Checking test 050 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 295.058797 -The maximum resident set size (KB) = 660424 +The total amount of wall time = 383.697267 +The maximum resident set size (KB) = 659188 -Test 050 regional_2dwrtdecomp PASS +Test 051 regional_2dwrtdecomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/fv3_regional_wofs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_wofs -Checking test 051 regional_wofs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_wofs +Checking test 052 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -2138,15 +2209,15 @@ Checking test 051 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 376.263792 -The maximum resident set size (KB) = 344112 +The total amount of wall time = 442.246437 +The maximum resident set size (KB) = 347868 -Test 051 regional_wofs PASS +Test 052 regional_wofs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control -Checking test 052 rap_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control +Checking test 053 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2192,15 +2263,15 @@ Checking test 052 rap_control 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 = 423.778369 -The maximum resident set size (KB) = 895888 +The total amount of wall time = 523.915841 +The maximum resident set size (KB) = 894300 -Test 052 rap_control PASS +Test 053 rap_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb -Checking test 053 regional_spp_sppt_shum_skeb results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_spp_sppt_shum_skeb +Checking test 054 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -2210,15 +2281,15 @@ Checking test 053 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 246.648289 -The maximum resident set size (KB) = 991328 +The total amount of wall time = 320.585802 +The maximum resident set size (KB) = 987796 -Test 053 regional_spp_sppt_shum_skeb PASS +Test 054 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_decomp -Checking test 054 rap_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_decomp +Checking test 055 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2264,15 +2335,15 @@ Checking test 054 rap_decomp 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 = 434.934476 -The maximum resident set size (KB) = 898276 +The total amount of wall time = 541.186493 +The maximum resident set size (KB) = 893120 -Test 054 rap_decomp PASS +Test 055 rap_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads -Checking test 055 rap_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_2threads +Checking test 056 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2318,15 +2389,15 @@ Checking test 055 rap_2threads 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 = 389.411756 -The maximum resident set size (KB) = 976620 +The total amount of wall time = 495.005011 +The maximum resident set size (KB) = 966676 -Test 055 rap_2threads PASS +Test 056 rap_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart -Checking test 056 rap_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_restart +Checking test 057 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -2364,15 +2435,15 @@ Checking test 056 rap_restart 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 = 216.646515 -The maximum resident set size (KB) = 650656 +The total amount of wall time = 268.798882 +The maximum resident set size (KB) = 646760 -Test 056 rap_restart PASS +Test 057 rap_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff -Checking test 057 rap_sfcdiff results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_sfcdiff +Checking test 058 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2418,15 +2489,15 @@ Checking test 057 rap_sfcdiff 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 = 424.608915 -The maximum resident set size (KB) = 893632 +The total amount of wall time = 530.096179 +The maximum resident set size (KB) = 895152 -Test 057 rap_sfcdiff PASS +Test 058 rap_sfcdiff PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_decomp -Checking test 058 rap_sfcdiff_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_sfcdiff_decomp +Checking test 059 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2472,15 +2543,15 @@ Checking test 058 rap_sfcdiff_decomp 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 = 442.934827 -The maximum resident set size (KB) = 899888 +The total amount of wall time = 525.642076 +The maximum resident set size (KB) = 896320 -Test 058 rap_sfcdiff_decomp PASS +Test 059 rap_sfcdiff_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_restart -Checking test 059 rap_sfcdiff_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_sfcdiff_restart +Checking test 060 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -2518,15 +2589,15 @@ Checking test 059 rap_sfcdiff_restart 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 = 322.942428 -The maximum resident set size (KB) = 643672 +The total amount of wall time = 387.274851 +The maximum resident set size (KB) = 646264 -Test 059 rap_sfcdiff_restart PASS +Test 060 rap_sfcdiff_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control -Checking test 060 hrrr_control results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control +Checking test 061 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2572,15 +2643,15 @@ Checking test 060 hrrr_control 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 = 392.620269 -The maximum resident set size (KB) = 892840 +The total amount of wall time = 470.746924 +The maximum resident set size (KB) = 891908 -Test 060 hrrr_control PASS +Test 061 hrrr_control PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp -Checking test 061 hrrr_control_decomp results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_decomp +Checking test 062 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2626,15 +2697,15 @@ Checking test 061 hrrr_control_decomp 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 = 406.906598 -The maximum resident set size (KB) = 893416 +The total amount of wall time = 499.915904 +The maximum resident set size (KB) = 890216 -Test 061 hrrr_control_decomp PASS +Test 062 hrrr_control_decomp PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads -Checking test 062 hrrr_control_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_2threads +Checking test 063 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2680,29 +2751,29 @@ Checking test 062 hrrr_control_2threads 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 = 352.392920 -The maximum resident set size (KB) = 961220 +The total amount of wall time = 495.980127 +The maximum resident set size (KB) = 965888 -Test 062 hrrr_control_2threads PASS +Test 063 hrrr_control_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart -Checking test 063 hrrr_control_restart results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_restart +Checking test 064 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 289.593144 -The maximum resident set size (KB) = 645352 +The total amount of wall time = 348.136278 +The maximum resident set size (KB) = 641664 -Test 063 hrrr_control_restart PASS +Test 064 hrrr_control_restart PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta -Checking test 064 rrfs_v1beta results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_v1beta +Checking test 065 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2748,15 +2819,15 @@ Checking test 064 rrfs_v1beta 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 = 420.017947 -The maximum resident set size (KB) = 896528 +The total amount of wall time = 511.935825 +The maximum resident set size (KB) = 890088 -Test 064 rrfs_v1beta PASS +Test 065 rrfs_v1beta PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl -Checking test 065 rrfs_v1nssl results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_v1nssl +Checking test 066 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2770,15 +2841,15 @@ Checking test 065 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 483.439529 -The maximum resident set size (KB) = 584008 +The total amount of wall time = 575.993024 +The maximum resident set size (KB) = 580696 -Test 065 rrfs_v1nssl PASS +Test 066 rrfs_v1nssl PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1nssl_nohailnoccn -Checking test 066 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_v1nssl_nohailnoccn +Checking test 067 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2792,15 +2863,15 @@ Checking test 066 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 471.147966 -The maximum resident set size (KB) = 572940 +The total amount of wall time = 545.569595 +The maximum resident set size (KB) = 573584 -Test 066 rrfs_v1nssl_nohailnoccn PASS +Test 067 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm -Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_smoke_conus13km_hrrr_warm +Checking test 068 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2808,15 +2879,15 @@ Checking test 067 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 154.344815 -The maximum resident set size (KB) = 807072 +The total amount of wall time = 191.418422 +The maximum resident set size (KB) = 801676 -Test 067 rrfs_smoke_conus13km_hrrr_warm PASS +Test 068 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_2threads -Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_smoke_conus13km_hrrr_warm_2threads +Checking test 069 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2824,15 +2895,15 @@ Checking test 068 rrfs_smoke_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 113.362983 -The maximum resident set size (KB) = 804568 +The total amount of wall time = 138.109105 +The maximum resident set size (KB) = 802352 -Test 068 rrfs_smoke_conus13km_hrrr_warm_2threads PASS +Test 069 rrfs_smoke_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm -Checking test 069 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_conus13km_hrrr_warm +Checking test 070 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2840,15 +2911,15 @@ Checking test 069 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 142.390336 -The maximum resident set size (KB) = 799436 +The total amount of wall time = 206.096452 +The maximum resident set size (KB) = 795144 -Test 069 rrfs_conus13km_hrrr_warm PASS +Test 070 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_radar_tten_warm -Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_radar_tten +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_smoke_conus13km_radar_tten_warm +Checking test 071 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2856,27 +2927,27 @@ Checking test 070 rrfs_smoke_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 157.346356 -The maximum resident set size (KB) = 804076 +The total amount of wall time = 226.517681 +The maximum resident set size (KB) = 806292 -Test 070 rrfs_smoke_conus13km_radar_tten_warm PASS +Test 071 rrfs_smoke_conus13km_radar_tten_warm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_restart_mismatch -Checking test 071 rrfs_conus13km_hrrr_warm_restart_mismatch results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_restart_mismatch +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_conus13km_hrrr_warm_restart_mismatch +Checking test 072 rrfs_conus13km_hrrr_warm_restart_mismatch results .... Comparing sfcf002.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 73.132399 -The maximum resident set size (KB) = 773692 +The total amount of wall time = 135.808838 +The maximum resident set size (KB) = 766044 -Test 071 rrfs_conus13km_hrrr_warm_restart_mismatch PASS +Test 072 rrfs_conus13km_hrrr_warm_restart_mismatch PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg -Checking test 072 control_csawmg results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_csawmg +Checking test 073 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2886,15 +2957,15 @@ Checking test 072 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.846855 -The maximum resident set size (KB) = 589792 +The total amount of wall time = 418.534607 +The maximum resident set size (KB) = 585444 -Test 072 control_csawmg PASS +Test 073 control_csawmg PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt -Checking test 073 control_csawmgt results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_csawmgt +Checking test 074 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2904,15 +2975,15 @@ Checking test 073 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 348.207494 -The maximum resident set size (KB) = 586104 +The total amount of wall time = 440.571368 +The maximum resident set size (KB) = 585424 -Test 073 control_csawmgt PASS +Test 074 control_csawmgt PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras -Checking test 074 control_ras results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_ras +Checking test 075 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2922,27 +2993,27 @@ Checking test 074 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.105062 -The maximum resident set size (KB) = 551996 +The total amount of wall time = 220.952124 +The maximum resident set size (KB) = 556376 -Test 074 control_ras PASS +Test 075 control_ras PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam -Checking test 075 control_wam results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_wam +Checking test 076 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 118.869201 -The maximum resident set size (KB) = 353176 +The total amount of wall time = 168.490561 +The maximum resident set size (KB) = 273972 -Test 075 control_wam PASS +Test 076 control_wam PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_faster -Checking test 076 control_p8_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8_faster +Checking test 077 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2988,15 +3059,15 @@ Checking test 076 control_p8_faster 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 = 177.191349 -The maximum resident set size (KB) = 1485980 +The total amount of wall time = 229.531113 +The maximum resident set size (KB) = 1492916 -Test 076 control_p8_faster PASS +Test 077 control_p8_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_control_faster -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_control_faster -Checking test 077 regional_control_faster results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_control_faster +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_control_faster +Checking test 078 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -3006,57 +3077,57 @@ Checking test 077 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 286.967719 -The maximum resident set size (KB) = 657024 +The total amount of wall time = 357.794482 +The maximum resident set size (KB) = 654516 -Test 077 regional_control_faster PASS +Test 078 regional_control_faster PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug -Checking test 078 rrfs_smoke_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_smoke_conus13km_hrrr_warm_debug +Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 915.039664 -The maximum resident set size (KB) = 833360 +The total amount of wall time = 955.871288 +The maximum resident set size (KB) = 828960 -Test 078 rrfs_smoke_conus13km_hrrr_warm_debug PASS +Test 079 rrfs_smoke_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_smoke_conus13km_hrrr_warm_debug_2threads -Checking test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_smoke_conus13km_hrrr_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_smoke_conus13km_hrrr_warm_debug_2threads +Checking test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 531.469910 -The maximum resident set size (KB) = 830712 +The total amount of wall time = 564.933927 +The maximum resident set size (KB) = 832232 -Test 079 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS +Test 080 rrfs_smoke_conus13km_hrrr_warm_debug_2threads PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_conus13km_hrrr_warm_debug -Checking test 080 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_conus13km_hrrr_warm_debug +Checking test 081 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 822.453615 -The maximum resident set size (KB) = 820684 +The total amount of wall time = 849.782557 +The maximum resident set size (KB) = 827852 -Test 080 rrfs_conus13km_hrrr_warm_debug PASS +Test 081 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_CubedSphereGrid_debug -Checking test 081 control_CubedSphereGrid_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_CubedSphereGrid_debug +Checking test 082 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -3082,349 +3153,349 @@ Checking test 081 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 161.740805 -The maximum resident set size (KB) = 679896 +The total amount of wall time = 182.811745 +The maximum resident set size (KB) = 680112 -Test 081 control_CubedSphereGrid_debug PASS +Test 082 control_CubedSphereGrid_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wrtGauss_netcdf_parallel_debug -Checking test 082 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_wrtGauss_netcdf_parallel_debug +Checking test 083 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.119718 -The maximum resident set size (KB) = 682036 +The total amount of wall time = 188.714886 +The maximum resident set size (KB) = 680116 -Test 082 control_wrtGauss_netcdf_parallel_debug PASS +Test 083 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_stochy_debug -Checking test 083 control_stochy_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_stochy_debug +Checking test 084 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 180.069919 -The maximum resident set size (KB) = 684156 +The total amount of wall time = 212.518266 +The maximum resident set size (KB) = 684280 -Test 083 control_stochy_debug PASS +Test 084 control_stochy_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_lndp_debug -Checking test 084 control_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_lndp_debug +Checking test 085 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.723667 -The maximum resident set size (KB) = 684112 +The total amount of wall time = 177.606853 +The maximum resident set size (KB) = 684132 -Test 084 control_lndp_debug PASS +Test 085 control_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmg_debug -Checking test 085 control_csawmg_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_csawmg_debug +Checking test 086 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 259.655226 -The maximum resident set size (KB) = 723636 +The total amount of wall time = 286.619229 +The maximum resident set size (KB) = 725108 -Test 085 control_csawmg_debug PASS +Test 086 control_csawmg_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_csawmgt_debug -Checking test 086 control_csawmgt_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_csawmgt_debug +Checking test 087 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 255.550516 -The maximum resident set size (KB) = 723576 +The total amount of wall time = 288.686122 +The maximum resident set size (KB) = 724928 -Test 086 control_csawmgt_debug PASS +Test 087 control_csawmgt_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_ras_debug -Checking test 087 control_ras_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_ras_debug +Checking test 088 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.489807 -The maximum resident set size (KB) = 695028 +The total amount of wall time = 188.313310 +The maximum resident set size (KB) = 692200 -Test 087 control_ras_debug PASS +Test 088 control_ras_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_diag_debug -Checking test 088 control_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_diag_debug +Checking test 089 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.936110 -The maximum resident set size (KB) = 738644 +The total amount of wall time = 196.615765 +The maximum resident set size (KB) = 738960 -Test 088 control_diag_debug PASS +Test 089 control_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_debug_p8 -Checking test 089 control_debug_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_debug_p8 +Checking test 090 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.113277 -The maximum resident set size (KB) = 1508260 +The total amount of wall time = 229.618390 +The maximum resident set size (KB) = 1509096 -Test 089 control_debug_p8 PASS +Test 090 control_debug_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_debug -Checking test 090 regional_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_debug +Checking test 091 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 1051.672229 -The maximum resident set size (KB) = 677576 +The total amount of wall time = 1073.010041 +The maximum resident set size (KB) = 677284 -Test 090 regional_debug PASS +Test 091 regional_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug -Checking test 091 rap_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control_debug +Checking test 092 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.277453 -The maximum resident set size (KB) = 1056952 +The total amount of wall time = 328.411185 +The maximum resident set size (KB) = 1054756 -Test 091 rap_control_debug PASS +Test 092 rap_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug -Checking test 092 hrrr_control_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_debug +Checking test 093 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.661237 -The maximum resident set size (KB) = 1049740 +The total amount of wall time = 320.288552 +The maximum resident set size (KB) = 1054808 -Test 092 hrrr_control_debug PASS +Test 093 hrrr_control_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_drag_suite_debug -Checking test 093 rap_unified_drag_suite_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_unified_drag_suite_debug +Checking test 094 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.250413 -The maximum resident set size (KB) = 1051760 +The total amount of wall time = 322.620326 +The maximum resident set size (KB) = 1051456 -Test 093 rap_unified_drag_suite_debug PASS +Test 094 rap_unified_drag_suite_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_diag_debug -Checking test 094 rap_diag_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_diag_debug +Checking test 095 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 312.331009 -The maximum resident set size (KB) = 1142656 +The total amount of wall time = 346.164900 +The maximum resident set size (KB) = 1140592 -Test 094 rap_diag_debug PASS +Test 095 rap_diag_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_cires_ugwp_debug -Checking test 095 rap_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_cires_ugwp_debug +Checking test 096 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.911304 -The maximum resident set size (KB) = 1057860 +The total amount of wall time = 329.840952 +The maximum resident set size (KB) = 1059344 -Test 095 rap_cires_ugwp_debug PASS +Test 096 rap_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_unified_ugwp_debug -Checking test 096 rap_unified_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_unified_ugwp_debug +Checking test 097 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 307.361875 -The maximum resident set size (KB) = 1057708 +The total amount of wall time = 349.283726 +The maximum resident set size (KB) = 1057068 -Test 096 rap_unified_ugwp_debug PASS +Test 097 rap_unified_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_lndp_debug -Checking test 097 rap_lndp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_lndp_debug +Checking test 098 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 306.479569 -The maximum resident set size (KB) = 1054732 +The total amount of wall time = 341.090123 +The maximum resident set size (KB) = 1059832 -Test 097 rap_lndp_debug PASS +Test 098 rap_lndp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_progcld_thompson_debug -Checking test 098 rap_progcld_thompson_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_progcld_thompson_debug +Checking test 099 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.086381 -The maximum resident set size (KB) = 1055364 +The total amount of wall time = 351.212587 +The maximum resident set size (KB) = 1061636 -Test 098 rap_progcld_thompson_debug PASS +Test 099 rap_progcld_thompson_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_debug -Checking test 099 rap_noah_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_noah_debug +Checking test 100 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 295.438678 -The maximum resident set size (KB) = 1053344 +The total amount of wall time = 322.616087 +The maximum resident set size (KB) = 1052088 -Test 099 rap_noah_debug PASS +Test 100 rap_noah_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_sfcdiff_debug -Checking test 100 rap_sfcdiff_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_sfcdiff_debug +Checking test 101 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.430663 -The maximum resident set size (KB) = 1055640 +The total amount of wall time = 325.615362 +The maximum resident set size (KB) = 1055968 -Test 100 rap_sfcdiff_debug PASS +Test 101 rap_sfcdiff_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 101 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 102 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.027880 -The maximum resident set size (KB) = 1054144 +The total amount of wall time = 538.426772 +The maximum resident set size (KB) = 1055244 -Test 101 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 102 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rrfs_v1beta_debug -Checking test 102 rrfs_v1beta_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rrfs_v1beta_debug +Checking test 103 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 296.800427 -The maximum resident set size (KB) = 1054064 +The total amount of wall time = 320.135921 +The maximum resident set size (KB) = 1051728 -Test 102 rrfs_v1beta_debug PASS +Test 103 rrfs_v1beta_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_clm_lake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_clm_lake_debug -Checking test 103 rap_clm_lake_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_clm_lake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_clm_lake_debug +Checking test 104 rap_clm_lake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 358.171747 -The maximum resident set size (KB) = 1058236 +The total amount of wall time = 389.576531 +The maximum resident set size (KB) = 1055472 -Test 103 rap_clm_lake_debug PASS +Test 104 rap_clm_lake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_flake_debug -Checking test 104 rap_flake_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_flake_debug +Checking test 105 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.870088 -The maximum resident set size (KB) = 1055500 +The total amount of wall time = 325.412523 +The maximum resident set size (KB) = 1058512 -Test 104 rap_flake_debug PASS +Test 105 rap_flake_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_wam_debug -Checking test 105 control_wam_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_wam_debug +Checking test 106 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 298.135807 -The maximum resident set size (KB) = 303504 +The total amount of wall time = 313.273070 +The maximum resident set size (KB) = 306168 -Test 105 control_wam_debug PASS +Test 106 control_wam_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -3434,15 +3505,15 @@ Checking test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 241.012645 -The maximum resident set size (KB) = 893684 +The total amount of wall time = 303.160099 +The maximum resident set size (KB) = 903104 -Test 106 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 107 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn32_phy32 -Checking test 107 rap_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control_dyn32_phy32 +Checking test 108 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3488,15 +3559,15 @@ Checking test 107 rap_control_dyn32_phy32 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 = 354.841327 -The maximum resident set size (KB) = 777600 +The total amount of wall time = 513.542503 +The maximum resident set size (KB) = 779188 -Test 107 rap_control_dyn32_phy32 PASS +Test 108 rap_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_dyn32_phy32 -Checking test 108 hrrr_control_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_dyn32_phy32 +Checking test 109 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3542,15 +3613,15 @@ Checking test 108 hrrr_control_dyn32_phy32 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 = 181.699875 -The maximum resident set size (KB) = 778440 +The total amount of wall time = 220.556170 +The maximum resident set size (KB) = 772820 -Test 108 hrrr_control_dyn32_phy32 PASS +Test 109 hrrr_control_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_2threads_dyn32_phy32 -Checking test 109 rap_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_2threads_dyn32_phy32 +Checking test 110 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3596,15 +3667,15 @@ Checking test 109 rap_2threads_dyn32_phy32 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 = 333.095353 -The maximum resident set size (KB) = 832272 +The total amount of wall time = 427.807074 +The maximum resident set size (KB) = 833476 -Test 109 rap_2threads_dyn32_phy32 PASS +Test 110 rap_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_2threads_dyn32_phy32 -Checking test 110 hrrr_control_2threads_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_2threads_dyn32_phy32 +Checking test 111 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3650,15 +3721,15 @@ Checking test 110 hrrr_control_2threads_dyn32_phy32 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 = 163.362284 -The maximum resident set size (KB) = 827460 +The total amount of wall time = 277.868624 +The maximum resident set size (KB) = 822632 -Test 110 hrrr_control_2threads_dyn32_phy32 PASS +Test 111 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_decomp_dyn32_phy32 -Checking test 111 hrrr_control_decomp_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_decomp_dyn32_phy32 +Checking test 112 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3704,15 +3775,15 @@ Checking test 111 hrrr_control_decomp_dyn32_phy32 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 = 187.941536 -The maximum resident set size (KB) = 775980 +The total amount of wall time = 242.650716 +The maximum resident set size (KB) = 776820 -Test 111 hrrr_control_decomp_dyn32_phy32 PASS +Test 112 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_restart_dyn32_phy32 -Checking test 112 rap_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_restart_dyn32_phy32 +Checking test 113 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK @@ -3750,29 +3821,29 @@ Checking test 112 rap_restart_dyn32_phy32 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 = 260.894289 -The maximum resident set size (KB) = 614088 +The total amount of wall time = 339.913870 +The maximum resident set size (KB) = 616512 -Test 112 rap_restart_dyn32_phy32 PASS +Test 113 rap_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_restart_dyn32_phy32 -Checking test 113 hrrr_control_restart_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_restart_dyn32_phy32 +Checking test 114 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 93.596011 -The maximum resident set size (KB) = 609908 +The total amount of wall time = 150.295069 +The maximum resident set size (KB) = 610472 -Test 113 hrrr_control_restart_dyn32_phy32 PASS +Test 114 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32 -Checking test 114 rap_control_dyn64_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control_dyn64_phy32 +Checking test 115 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3818,82 +3889,82 @@ Checking test 114 rap_control_dyn64_phy32 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 = 237.587747 -The maximum resident set size (KB) = 797556 +The total amount of wall time = 293.568771 +The maximum resident set size (KB) = 796068 -Test 114 rap_control_dyn64_phy32 PASS +Test 115 rap_control_dyn64_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_debug_dyn32_phy32 -Checking test 115 rap_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control_debug_dyn32_phy32 +Checking test 116 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.982600 -The maximum resident set size (KB) = 936712 +The total amount of wall time = 317.838023 +The maximum resident set size (KB) = 939700 -Test 115 rap_control_debug_dyn32_phy32 PASS +Test 116 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hrrr_control_debug_dyn32_phy32 -Checking test 116 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hrrr_control_debug_dyn32_phy32 +Checking test 117 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.924716 -The maximum resident set size (KB) = 937424 +The total amount of wall time = 308.650208 +The maximum resident set size (KB) = 940480 -Test 116 hrrr_control_debug_dyn32_phy32 PASS +Test 117 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/rap_control_debug_dyn64_phy32 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/rap_control_dyn64_phy32_debug -Checking test 117 rap_control_dyn64_phy32_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/rap_control_dyn64_phy32_debug +Checking test 118 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.366841 -The maximum resident set size (KB) = 960740 +The total amount of wall time = 331.133082 +The maximum resident set size (KB) = 960024 -Test 117 rap_control_dyn64_phy32_debug PASS +Test 118 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm -Checking test 118 hafs_regional_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_atm +Checking test 119 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 275.277628 -The maximum resident set size (KB) = 826348 +The total amount of wall time = 442.528904 +The maximum resident set size (KB) = 823164 -Test 118 hafs_regional_atm PASS +Test 119 hafs_regional_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_thompson_gfdlsf -Checking test 119 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_atm_thompson_gfdlsf +Checking test 120 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 327.528635 -The maximum resident set size (KB) = 1179940 +The total amount of wall time = 595.326843 +The maximum resident set size (KB) = 1187392 -Test 119 hafs_regional_atm_thompson_gfdlsf PASS +Test 120 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn -Checking test 120 hafs_regional_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_atm_ocn +Checking test 121 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3901,15 +3972,15 @@ Checking test 120 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 393.985610 -The maximum resident set size (KB) = 861380 +The total amount of wall time = 516.377827 +The maximum resident set size (KB) = 864196 -Test 120 hafs_regional_atm_ocn PASS +Test 121 hafs_regional_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_wav -Checking test 121 hafs_regional_atm_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_atm_wav +Checking test 122 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing 20190829.060000.out_grd.ww3 .........OK @@ -3917,15 +3988,15 @@ Checking test 121 hafs_regional_atm_wav 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 = 713.903441 -The maximum resident set size (KB) = 891964 +The total amount of wall time = 806.737255 +The maximum resident set size (KB) = 894540 -Test 121 hafs_regional_atm_wav PASS +Test 122 hafs_regional_atm_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_atm_ocn_wav -Checking test 122 hafs_regional_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_atm_ocn_wav +Checking test 123 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -3935,29 +4006,73 @@ Checking test 122 hafs_regional_atm_ocn_wav 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 = 906.217369 -The maximum resident set size (KB) = 915476 +The total amount of wall time = 1017.200320 +The maximum resident set size (KB) = 918168 -Test 122 hafs_regional_atm_ocn_wav PASS +Test 123 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_1nest_atm -Checking test 123 hafs_regional_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_1nest_atm +Checking test 124 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 332.782126 -The maximum resident set size (KB) = 396208 - -Test 123 hafs_regional_1nest_atm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_telescopic_2nests_atm -Checking test 124 hafs_regional_telescopic_2nests_atm results .... + 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 + +The total amount of wall time = 415.972691 +The maximum resident set size (KB) = 396420 + +Test 124 hafs_regional_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_1nest_atm_qr +Checking test 125 hafs_regional_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 + +The total amount of wall time = 456.789779 +The maximum resident set size (KB) = 371888 + +Test 125 hafs_regional_1nest_atm_qr PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_telescopic_2nests_atm +Checking test 126 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -3965,29 +4080,123 @@ Checking test 124 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 406.973801 -The maximum resident set size (KB) = 403488 +The total amount of wall time = 517.382118 +The maximum resident set size (KB) = 403844 -Test 124 hafs_regional_telescopic_2nests_atm PASS +Test 126 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_1nest_atm -Checking test 125 hafs_global_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_global_1nest_atm +Checking test 127 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 174.362822 -The maximum resident set size (KB) = 293824 - -Test 125 hafs_global_1nest_atm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_multiple_4nests_atm -Checking test 126 hafs_global_multiple_4nests_atm results .... + 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 .........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 .........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 + +The total amount of wall time = 270.904453 +The maximum resident set size (KB) = 275532 + +Test 127 hafs_global_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_global_1nest_atm_qr +Checking test 128 hafs_global_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + +The total amount of wall time = 300.239985 +The maximum resident set size (KB) = 274800 + +Test 128 hafs_global_1nest_atm_qr PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_global_multiple_4nests_atm +Checking test 129 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4003,46 +4212,243 @@ Checking test 126 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest03 .........OK Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - -The total amount of wall time = 491.949312 -The maximum resident set size (KB) = 353176 - -Test 126 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_specified_moving_1nest_atm -Checking test 127 hafs_regional_specified_moving_1nest_atm results .... + 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 .........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.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 .........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 .........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 .........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 .........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 + +The total amount of wall time = 755.249057 +The maximum resident set size (KB) = 344732 + +Test 129 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_global_multiple_4nests_atm_qr +Checking test 130 hafs_global_multiple_4nests_atm_qr 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 - -The total amount of wall time = 221.325827 -The maximum resident set size (KB) = 415760 - -Test 127 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm -Checking test 128 hafs_regional_storm_following_1nest_atm results .... + 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.nc .........OK + Comparing RESTART/20200825.180000.fv_core.res.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.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 ............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 ............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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest03.tile8.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest04.tile9.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest05.tile10.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile2.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.tile6.nc ............ALT CHECK......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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile3.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile4.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile5.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.tile6.nc ............ALT CHECK......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 + +The total amount of wall time = 851.737891 +The maximum resident set size (KB) = 378212 + +Test 130 hafs_global_multiple_4nests_atm_qr PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_specified_moving_1nest_atm +Checking test 131 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK -The total amount of wall time = 209.639637 -The maximum resident set size (KB) = 411744 +The total amount of wall time = 292.058091 +The maximum resident set size (KB) = 407464 -Test 128 hafs_regional_storm_following_1nest_atm PASS +Test 131 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn -Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_storm_following_1nest_atm +Checking test 132 hafs_regional_storm_following_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + 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 + +The total amount of wall time = 263.016903 +The maximum resident set size (KB) = 406764 + +Test 132 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_storm_following_1nest_atm_qr +Checking test 133 hafs_regional_storm_following_1nest_atm_qr 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 ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_core.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.fv_tracer.res.tile1.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.phy_data.nest02.tile2.nc ............ALT CHECK......OK + Comparing RESTART/20200825.180000.sfc_data.nc ............ALT CHECK......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 + +The total amount of wall time = 385.142721 +The maximum resident set size (KB) = 398420 + +Test 133 hafs_regional_storm_following_1nest_atm_qr PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_storm_following_1nest_atm_ocn +Checking test 134 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4050,43 +4456,43 @@ Checking test 129 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 255.367371 -The maximum resident set size (KB) = 477464 +The total amount of wall time = 346.049834 +The maximum resident set size (KB) = 473724 -Test 129 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 134 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_global_storm_following_1nest_atm -Checking test 130 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_global_storm_following_1nest_atm +Checking test 135 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 87.116885 -The maximum resident set size (KB) = 294048 +The total amount of wall time = 127.001262 +The maximum resident set size (KB) = 282092 -Test 130 hafs_global_storm_following_1nest_atm PASS +Test 135 hafs_global_storm_following_1nest_atm PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 131 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 136 hafs_regional_storm_following_1nest_atm_ocn_debug 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 = 800.566765 -The maximum resident set size (KB) = 495540 +The total amount of wall time = 861.029720 +The maximum resident set size (KB) = 493216 -Test 131 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 136 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 137 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -4096,15 +4502,15 @@ Checking test 132 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing 20200825.180000.out_grd.ww3 .........OK Comparing 20200825.180000.out_pnt.ww3 .........OK -The total amount of wall time = 506.485461 -The maximum resident set size (KB) = 529592 +The total amount of wall time = 604.375841 +The maximum resident set size (KB) = 529720 -Test 132 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 137 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/control_p8_atmlnd_sbs -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/control_p8_atmlnd_sbs -Checking test 133 control_p8_atmlnd_sbs results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/control_p8_atmlnd_sbs +Checking test 138 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -4188,15 +4594,15 @@ Checking test 133 control_p8_atmlnd_sbs 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 = 243.594305 -The maximum resident set size (KB) = 1550220 +The total amount of wall time = 362.170087 +The maximum resident set size (KB) = 1542860 -Test 133 control_p8_atmlnd_sbs PASS +Test 138 control_p8_atmlnd_sbs PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8 -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8 -Checking test 134 atmaero_control_p8 results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/atmaero_control_p8 +Checking test 139 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4239,15 +4645,15 @@ Checking test 134 atmaero_control_p8 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.219427 -The maximum resident set size (KB) = 2815536 +The total amount of wall time = 317.073126 +The maximum resident set size (KB) = 2814692 -Test 134 atmaero_control_p8 PASS +Test 139 atmaero_control_p8 PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad -Checking test 135 atmaero_control_p8_rad results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/atmaero_control_p8_rad +Checking test 140 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4290,15 +4696,15 @@ Checking test 135 atmaero_control_p8_rad 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 = 295.530872 -The maximum resident set size (KB) = 2877260 +The total amount of wall time = 419.446727 +The maximum resident set size (KB) = 2882720 -Test 135 atmaero_control_p8_rad PASS +Test 140 atmaero_control_p8_rad PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/atmaero_control_p8_rad_micro -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/atmaero_control_p8_rad_micro -Checking test 136 atmaero_control_p8_rad_micro results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/atmaero_control_p8_rad_micro +Checking test 141 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4341,15 +4747,15 @@ Checking test 136 atmaero_control_p8_rad_micro 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.120297 -The maximum resident set size (KB) = 2886428 +The total amount of wall time = 395.452877 +The maximum resident set size (KB) = 2887636 -Test 136 atmaero_control_p8_rad_micro PASS +Test 141 atmaero_control_p8_rad_micro PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq -Checking test 137 regional_atmaq results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_atmaq +Checking test 142 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing sfcf006.nc .........OK @@ -4364,15 +4770,15 @@ Checking test 137 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK -The total amount of wall time = 712.159180 -The maximum resident set size (KB) = 1260008 +The total amount of wall time = 985.084782 +The maximum resident set size (KB) = 1264024 -Test 137 regional_atmaq PASS +Test 142 regional_atmaq PASS -baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230504/INTEL/regional_atmaq_debug -working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_4714/regional_atmaq_debug -Checking test 138 regional_atmaq_debug results .... +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230517/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_148913/regional_atmaq_debug +Checking test 143 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK @@ -4385,12 +4791,12 @@ Checking test 138 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK -The total amount of wall time = 1304.633230 -The maximum resident set size (KB) = 1295680 +The total amount of wall time = 1389.972299 +The maximum resident set size (KB) = 1290332 -Test 138 regional_atmaq_debug PASS +Test 143 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue May 9 00:30:00 UTC 2023 -Elapsed time: 01h:10m:53s. Have a nice day! +Wed May 24 19:07:03 UTC 2023 +Elapsed time: 01h:45m:16s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ed7b2b5920..482c0c4d4a 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -73,6 +73,18 @@ INPES_aqm=33; JNPES_aqm=8 + THRD_cpl_unstr=1 + INPES_cpl_unstr=3; JNPES_cpl_unstr=8; WPG_cpl_unstr=6 + OCN_tasks_cpl_unstr=20 + ICE_tasks_cpl_unstr=10 + WAV_tasks_cpl_unstr=60 + + THRD_cpl_unstr_mpi=1 + INPES_cpl_unstr_mpi=4; JNPES_cpl_unstr_mpi=8; WPG_cpl_unstr_mpi=6 + OCN_tasks_cpl_unstr_mpi=34 + ICE_tasks_cpl_unstr_mpi=20 + WAV_tasks_cpl_unstr_mpi=50 + aqm_omp_num_threads=1 atm_omp_num_threads=1 chm_omp_num_threads=1 @@ -342,6 +354,8 @@ export OUTPUT_GRID="'cubed_sphere_grid'" export OUTPUT_FILE="'netcdf'" export IDEFLATE=0 export NBITS=0 +export ICHUNK2D=0 +export JCHUNK2D=0 export ICHUNK3D=0 export JCHUNK3D=0 export KCHUNK3D=0 @@ -1087,6 +1101,7 @@ export RESTART_INTERVAL=0 export FHROT=0 export coupling_interval_fast_sec=0 export QUILTING=.true. +export QUILTING_RESTART=.false. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 export OUTPUT_HISTORY=.true. diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 5d22dd339b..20584b1bb2 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -26,8 +26,8 @@ case $(hostname -f) in alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + alogin03.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn - gaea9) MACHINE_ID=gaea ;; ### gaea9 gaea10) MACHINE_ID=gaea ;; ### gaea10 gaea11) MACHINE_ID=gaea ;; ### gaea11 gaea12) MACHINE_ID=gaea ;; ### gaea12 @@ -35,7 +35,6 @@ case $(hostname -f) in gaea14) MACHINE_ID=gaea ;; ### gaea14 gaea15) MACHINE_ID=gaea ;; ### gaea15 gaea16) MACHINE_ID=gaea ;; ### gaea16 - gaea9.ncrc.gov) MACHINE_ID=gaea ;; ### gaea9 gaea10.ncrc.gov) MACHINE_ID=gaea ;; ### gaea10 gaea11.ncrc.gov) MACHINE_ID=gaea ;; ### gaea11 gaea12.ncrc.gov) MACHINE_ID=gaea ;; ### gaea12 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 195bb19d19..50865941ee 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -5,6 +5,7 @@ ##SBATCH --qos=@[QUEUE] #SBATCH --clusters=es #SBATCH --partition=eslogin +#SBATCH --exclude=gaea9 #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 #SBATCH --time=180 diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index e76b6f2ff0..50e4824784 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -177,6 +177,7 @@ deflate_level=1 cnvcld = @[CNVCLD] imfshalcnv = @[IMFSHALCNV] imfdeepcnv = @[IMFDEEPCNV] + progsigma = @[PROGSIGMA] ras = @[RAS] cdmbgwd = @[CDMBWD] prslrd0 = 0. @@ -206,9 +207,6 @@ deflate_level=1 effr_in = .true. ldiag_ugwp = @[LDIAG_UGWP] fscav_aero = @[FSCAV_AERO] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] do_RRTMGP = @[DO_RRTMGP] active_gases = 'h2o_co2_o3_n2o_ch4_o2' ngases = 6 @@ -223,6 +221,9 @@ deflate_level=1 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] doGP_sgs_cnv = @[DOGP_SGS_CNV] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] use_med_flux = @[USE_MED_FLUX] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] @@ -259,7 +260,7 @@ deflate_level=1 knob_ugwp_dokdis = 1 knob_ugwp_ndx4lh = 1 knob_ugwp_version = @[KNOB_UGWP_VERSION] - launch_level = 54 + launch_level = 54 / &gfdl_cloud_microphysics_nml @@ -382,4 +383,4 @@ deflate_level=1 restart_input_dir = 'INPUT/', restart_output_dir = 'RESTART/', parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ + 'INPUT/MOM_override'/ diff --git a/tests/parm/cpld_control_gfsv17.nml.IN b/tests/parm/cpld_control_gfsv17.nml.IN deleted file mode 100644 index 0dc59e6b8d..0000000000 --- a/tests/parm/cpld_control_gfsv17.nml.IN +++ /dev/null @@ -1,384 +0,0 @@ -&atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. - max_output_fields = @[MAX_OUTPUT_FIELDS] -/ - -&fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 -/ - -&mpp_io_nml -shuffle=1 -deflate_level=1 -/ - -&fms_nml - clock_grain = 'ROUTINE' - domains_stack_size = @[DOMAINS_STACK_SIZE] - print_memory_usage = .false. -/ - -&fv_core_nml - layout = @[INPES],@[JNPES] - io_layout = 1,1 - npx = @[NPX] - npy = @[NPY] - ntiles = 6 - npz = @[NPZ] - dz_min = @[DZ_MIN] - psm_bc = @[PSM_BC] - grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = 42 - nudge_qv = .true. - nudge_dz = .false. - tau = 10.0 - rf_cutoff = 7.5e2 - d2_bg_k1 = @[D2_BG_K1] - d2_bg_k2 = @[D2_BG_K2] - kord_tm = -9 - kord_mt = 9 - kord_wz = 9 - kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 2 - n_split = 6 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0. - dnats = @[DNATS] - fv_sg_adj = 450 - d2_bg = 0. - nord = 2 - dddmp = @[DDDMP] - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.002 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1. - hord_mt = 5 - hord_vt = 5 - hord_tm = 5 - hord_dp = -5 - hord_tr = 8 - adjust_dry_mass = .false. - dry_mass=98320.0 - consv_te = 1. - do_sat_adj = @[DO_SAT_ADJ] - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = @[RES_LATLON_DYNAMICS] -/ - -&external_ic_nml - filtered_terrain = .true. - levp = @[NPZP] - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - -&gfs_physics_nml - fhzero = @[FHZERO] - h2o_phys = .true. - ldiag3d = @[LDIAG3D] - qdiag3d = @[QDIAG3D] - print_diff_pgr = @[PRINT_DIFF_PGR] - fhcyc = @[FHCYC] - use_ufo = .true. - pre_rad = .false. - imp_physics = @[IMP_PHYSICS] - iovr = 3 - ltaerosol = .false. - lradar = .false. - ttendlim = -999 - dt_inner = @[DT_INNER] - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] - oz_phys = .false. - oz_phys_2015 = .true. - lsoil_lsm = 4 - do_mynnedmf = .false. - do_mynnsfclay = .false. - icloud_bl = 1 - bl_mynn_edmf = 1 - bl_mynn_tkeadvect = .true. - bl_mynn_edmf_mom = 1 - do_ugwp = .false. - do_tofd = .false. - gwd_opt = @[GWD_OPT] - do_ugwp_v0 = @[DO_UGWP_V0] - do_ugwp_v1 = @[DO_UGWP_V1] - do_ugwp_v0_orog_only = .false. - do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] - do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] - do_gsl_drag_ss = @[DO_GSL_DRAG_SS] - do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] - do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] - min_lakeice = 0.15 - min_seaice = @[MIN_SEAICE] - use_cice_alb = @[USE_CICE_ALB] - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] - iaer = @[IAER] - icliq_sw = 2 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = .false. - satmedmf = .true. - isatmedmf = 1 - progsigma = @[PROGSIGMA] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = @[RANDOM_CLDS] - trans_trac = .true. - cnvcld = @[CNVCLD] - imfshalcnv = @[IMFSHALCNV] - imfdeepcnv = @[IMFDEEPCNV] - ras = @[RAS] - cdmbgwd = @[CDMBWD] - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsoil = 4 - lsm = @[LSM] - iopt_dveg = @[IOPT_DVEG] - iopt_crs = @[IOPT_CRS] - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = @[IOPT_SFC] - iopt_trs = @[IOPT_TRS] - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = @[IOPT_RAD] - iopt_alb = @[IOPT_ALB] - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = @[IOPT_STC] - debug = .false. - nstf_name = @[NSTF_NAME] - nst_anl = .true. - psautco = 0.0008,0.0005 - prautco = 0.00015,0.00015 - lgfdlmprad = @[LGFDLMPRAD] - effr_in = .true. - ldiag_ugwp = @[LDIAG_UGWP] - fscav_aero = @[FSCAV_AERO] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] - use_med_flux = @[USE_MED_FLUX] - frac_grid = @[FRAC_GRID] - cplchm = @[CPLCHM] - cplflx = @[CPLFLX] - cplice = @[CPLICE] - cplwav = @[CPLWAV] - cplwav2atm = @[CPLWAV2ATM] - do_ca = @[DO_CA] - ca_global = @[CA_GLOBAL] - ca_sgs = @[CA_SGS] - nca = @[NCA] - ncells = @[NCELLS] - nlives = @[NLIVES] - nseed = @[NSEED] - nfracseed = @[NFRACSEED] - nthresh = @[NTHRESH] - ca_trigger = @[CA_TRIGGER] - nspinup = @[NSPINUP] - iseed_ca = @[ISEED_CA] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = @[KNOB_UGWP_VERSION] - launch_level = 54 -/ - -&gfdl_cloud_microphysics_nml - sedi_transport = .true. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 225. - tau_v2l = 150. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 150. - reiflag = 2 -/ - -&interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = @[FNALBC] - FNALBC2 = @[FNALBC2] - FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' - FNTG3C = @[FNTG3C] - FNVEGC = @[FNVEGC] - FNVETC = @[FNVETC] - FNSOTC = @[FNSOTC] - FNSMCC = @[FNSMCC] - FNMSKH = @[FNMSKH] - FNTSFA = '' - FNACNA = '' - FNSNOA = '' - FNVMNC = @[FNVMNC] - FNVMXC = @[FNVMXC] - FNSLPC = @[FNSLPC] - FNABSC = @[FNABSC] - LDEBUG =.false. - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - LANDICE = @[LANDICE] - FTSFS = 90 - FAISL = 99999 - FAISS = 99999 - FSNOL = 99999 - FSNOS = 99999 - FSICL = @[FSICL] - FSICS = @[FSICS] - FTSFL = 99999 - FVETL = 99999 - FSOTL = 99999 - FvmnL = 99999 - FvmxL = 99999 - FSLPL = 99999 - FABSL = 99999 -/ - -&fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - -&nam_stochy -/ - -&nam_sfcperts - lndp_type = @[LNDP_TYPE] - lndp_model_type = @[LNDP_MODEL_TYPE] - LNDP_TAU=21600, - LNDP_LSCALE=500000, - ISEED_LNDP=2010, - lndp_var_list = @[LNDP_VAR_LIST] - lndp_prt_list = @[LNDP_PRT_LIST] -/ - -&MOM_input_nml - output_directory = 'MOM6_OUTPUT/', - input_filename = '@[MOM6_RESTART_SETTING]' - restart_input_dir = 'INPUT/', - restart_output_dir = 'RESTART/', - parameter_filename = 'INPUT/MOM_input', - 'INPUT/MOM_override'/ diff --git a/tests/parm/diag_table/diag_table_gfsv17_template b/tests/parm/diag_table/diag_table_cpld_template similarity index 100% rename from tests/parm/diag_table/diag_table_gfsv17_template rename to tests/parm/diag_table/diag_table_cpld_template diff --git a/tests/parm/docn_in b/tests/parm/docn_in index c8165c75ba..b31b080424 100644 --- a/tests/parm/docn_in +++ b/tests/parm/docn_in @@ -6,4 +6,6 @@ ny_global = @[ocn_ny_global] restfilm = "null" sst_constant_value = -1.0 + skip_restart_read = true + import_data_fields = none / diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 26faebf608..d91b5a8a39 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -9,7 +9,6 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] @@ -25,11 +24,12 @@ output_grid: @[OUTPUT_GRID] output_file: @[OUTPUT_FILE] ideflate: @[IDEFLATE] nbits: @[NBITS] +ichunk2d: @[ICHUNK2D] +jchunk2d: @[JCHUNK2D] ichunk3d: @[ICHUNK3D] jchunk3d: @[JCHUNK3D] kchunk3d: @[KCHUNK3D] imo: @[IMO] jmo: @[JMO] - output_fh: @[OUTPUT_FH] iau_offset: @[IAU_OFFSET] diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 1a06e96e63..8fddd71f48 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -10,6 +10,7 @@ restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. quilting: @[QUILTING] +quilting_restart: @[QUILTING_RESTART] write_groups: @[WRITE_GROUP] write_tasks_per_group: @[WRTTASK_PER_GROUP] num_files: @[NUM_FILES] diff --git a/tests/parm/nems.configure.cpld_esmfthreads.IN b/tests/parm/nems.configure.cpld_esmfthreads.IN deleted file mode 100644 index 7cce5c1784..0000000000 --- a/tests/parm/nems.configure.cpld_esmfthreads.IN +++ /dev/null @@ -1,149 +0,0 @@ -############################################# -#### NEMS 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 = @[MESHOCN_ICE] -:: - -# 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 = @[MESHOCN_ICE] - 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 - diro = "." - logfile = wav.log - mesh_wav = @[MESH_WAV] - multigrid = @[MULTIGRID] - user_sets_restname = true -:: - -# 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_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] - history_n = 1 - history_option = nhours - history_ymd = -999 - coupling_mode = @[CPLMODE] - history_tile_atm = @[ATMTILESIZE] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 2 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = RESTART/ - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - dbug_flag = @[cap_dbug_flag] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] - eps_imesh = @[eps_imesh] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 -:: diff --git a/tests/rt.conf b/tests/rt.conf index bbe4bda064..9cdd6cd480 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -4,8 +4,8 @@ COMPILE | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | RUN | cpld_control_p8_mixedmode | | fv3 | +RUN | cpld_control_gfsv17 | | fv3 | COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_control_gfsv17 | - wcoss2.intel | fv3 | RUN | cpld_control_p8 | | fv3 | RUN | cpld_restart_p8 | | | cpld_control_p8 RUN | cpld_control_qr_p8 | | | @@ -16,11 +16,11 @@ RUN | cpld_mpi_p8 #RUN | cpld_multigrid_p8 | | | RUN | cpld_control_ciceC_p8 | - gaea.intel | fv3 | -RUN | cpld_control_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel | fv3 | -RUN | cpld_restart_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel | | cpld_control_c192_p8 +RUN | cpld_control_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel s4.intel | fv3 | +RUN | cpld_restart_c192_p8 | - wcoss2.intel jet.intel acorn.intel gaea.intel s4.intel | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | fv3 | -RUN | cpld_restart_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | | cpld_bmark_p8 +RUN | cpld_bmark_p8 | - s4.intel jet.intel cheyenne.intel acorn.intel | fv3 | +RUN | cpld_restart_bmark_p8 | - s4.intel jet.intel cheyenne.intel acorn.intel | | cpld_bmark_p8 COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_noaero_p8 | | fv3 | @@ -44,6 +44,15 @@ RUN | cpld_restart_c48 COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON | - cheyenne.intel | fv3 | RUN | cpld_control_p8_faster | - cheyenne.intel | fv3 | +# Unstructured WW3 mesh +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_control_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_restart_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | | cpld_control_pdlib_p8 +RUN | cpld_mpi_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | | cpld_control_pdlib_p8 + +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | +hera.intel orion.intel cheyenne.intel | fv3 | +RUN | cpld_debug_pdlib_p8 | +hera.intel orion.intel cheyenne.intel | fv3 | + ################################################################################################################################################################################### # ATM tests # ################################################################################################################################################################################### @@ -83,10 +92,10 @@ RUN | regional_control_qr RUN | regional_restart_qr | | | regional_control_qr RUN | regional_decomp | | | RUN | regional_2threads | | | -RUN | regional_noquilt | - jet.intel | fv3 | +RUN | regional_noquilt | - jet.intel s4.intel | fv3 | RUN | regional_netcdf_parallel | - acorn.intel | fv3 | RUN | regional_2dwrtdecomp | | | -RUN | regional_wofs | - jet.intel | fv3 | +RUN | regional_wofs | - jet.intel s4.intel | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | RUN | regional_ifi_control | + acorn.intel | fv3 | @@ -215,25 +224,29 @@ RUN | hafs_regional_atm_thompson_gfdlsf RUN | hafs_regional_atm_ocn | | fv3 | RUN | hafs_regional_atm_wav | | fv3 | RUN | hafs_regional_atm_ocn_wav | | fv3 | -RUN | hafs_regional_1nest_atm | - jet.intel | fv3 | -RUN | hafs_regional_telescopic_2nests_atm | - jet.intel | fv3 | -RUN | hafs_global_1nest_atm | - jet.intel | fv3 | -RUN | hafs_global_multiple_4nests_atm | - jet.intel | fv3 | -RUN | hafs_regional_specified_moving_1nest_atm | - jet.intel | fv3 | -RUN | hafs_regional_storm_following_1nest_atm | - jet.intel | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet.intel | fv3 | -RUN | hafs_global_storm_following_1nest_atm | - jet.intel | fv3 | +RUN | hafs_regional_1nest_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_regional_1nest_atm_qr | - jet.intel s4.intel cheyenne.intel | | +RUN | hafs_regional_telescopic_2nests_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_global_1nest_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_global_1nest_atm_qr | - jet.intel s4.intel cheyenne.intel | | +RUN | hafs_global_multiple_4nests_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_global_multiple_4nests_atm_qr | - jet.intel s4.intel cheyenne.intel | | +RUN | hafs_regional_specified_moving_1nest_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm | - jet.intel s4.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_qr | - jet.intel s4.intel cheyenne.intel | | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet.intel s4.intel | fv3 | +RUN | hafs_global_storm_following_1nest_atm | - jet.intel s4.intel | fv3 | COMPILE | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON | | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet.intel s4.intel | fv3 | COMPILE | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON | | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet.intel s4.intel | fv3 | COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2.intel | fv3 | RUN | hafs_regional_docn | - wcoss2.intel | fv3 | RUN | hafs_regional_docn_oisst | - wcoss2.intel | fv3 | -RUN | hafs_regional_datm_cdeps | - wcoss2.intel -jet.intel | fv3 | +RUN | hafs_regional_datm_cdeps | - wcoss2.intel -jet.intel s4.intel | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # @@ -304,9 +317,9 @@ RUN | atmaero_control_p8_rad_micro ################################################################################################################################################################################### COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | | fv3 | -RUN | regional_atmaq | - jet.intel | fv3 | +RUN | regional_atmaq | - jet.intel s4.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | | fv3 | -RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | +RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel s4.intel | fv3 | COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -D32BIT=ON | | fv3 | -RUN | regional_atmaq_faster | - jet.intel wcoss2.intel acorn.intel | fv3 | +RUN | regional_atmaq_faster | - jet.intel wcoss2.intel acorn.intel s4.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 9a4007bac1..50c7cdfa06 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -358,12 +358,12 @@ elif [[ $MACHINE_ID = expanse.* ]]; then PTMP=$dprefix SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_expanse fv3_conf/fv3_slurm.IN - + elif [[ $MACHINE_ID = noaacloud.* ]]; then - + module use /apps/modules/modulefiles module load rocoto/1.3.3 - + ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) @@ -379,8 +379,8 @@ elif [[ $MACHINE_ID = expanse.* ]]; then SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_noaacloud fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_noaacloud fv3_conf/compile_slurm.IN - - + + else die "Unknown machine ID, please edit detect_machine.sh file" fi @@ -468,7 +468,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then fi -BL_DATE=20230504 +BL_DATE=20230517 RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index c0145a8456..c33e380500 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -95,14 +95,21 @@ RUN | rap_control_dyn64_phy32_debug # S2S tests # ################################################################################################################################################################## -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_control_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_p8 | | fv3 | -COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_control_nowave_noaero_p8 | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_nowave_noaero_p8 | | fv3 | -COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | -RUN | cpld_debug_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_debug_p8 | | fv3 | + +# Unstructured WW3 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | | fv3 | +RUN | cpld_control_pdlib_p8 | | fv3 | + +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | | fv3 | +RUN | cpld_debug_pdlib_p8 | | fv3 | ################################################################################################################################################################## # CDEPS Data Atmosphere test # diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 38c84dcea8..84644560ef 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -54,7 +54,7 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN +export NEMS_CONFIGURE=nems.configure.cpld.IN export SYEAR=2013 export SMONTH=04 diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 3093581692..ff877bbbad 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -84,8 +84,8 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma -export DIAG_TABLE=diag_table_gfsv17_template -export INPUT_NML=cpld_control_gfsv17.nml.IN +export DIAG_TABLE=diag_table_cpld_template +export INPUT_NML=cpld_control.nml.IN export NEMS_CONFIGURE=nems.configure.cpld_noaero_outwav.IN #GFSv17 settings diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 new file mode 100644 index 0000000000..7b7c838d10 --- /dev/null +++ b/tests/tests/cpld_control_pdlib_p8 @@ -0,0 +1,107 @@ +# +# cpld_control unstr PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 new file mode 100644 index 0000000000..181a781f5a --- /dev/null +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -0,0 +1,99 @@ +# +# cpld_debug unstrWW3 PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system -C96MX100 unstr WW3 PDLIB - P8 debug" + +export CNTL_DIR="cpld_debug_pdlib_p8" + +export LIST_FILES="sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + 20210322.090000.out_pnt.ww3 \ + 20210322.090000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHMAX=3 +export DAYS=0.125 + +export RESTART_N=${FHMAX} +export OUTPUT_FH="3 -1" + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr +# bump resources for debug test +WAV_tasks="$(($WAV_tasks_cpl_unstr + 18))" + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 new file mode 100644 index 0000000000..3cd66e59e1 --- /dev/null +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -0,0 +1,110 @@ +# +# cpld_control unstr PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export INPES=$INPES_cpl_unstr_mpi +export JNPES=$JNPES_cpl_unstr_mpi +export atm_omp_num_threads=$THRD_cpl_unstr_mpi +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr_mpi * THRD_cpl_unstr_mpi )) + +OCN_tasks=$OCN_tasks_cpl_unstr_mpi +ICE_tasks=$ICE_tasks_cpl_unstr_mpi +WAV_tasks=$WAV_tasks_cpl_unstr_mpi + +export NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 index 74db98864b..c02b4dde56 100644 --- a/tests/tests/cpld_restart_bmark_p8 +++ b/tests/tests/cpld_restart_bmark_p8 @@ -54,7 +54,7 @@ export LIST_FILES="sfcf006.nc \ export_fv3 export_cpl -export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN +export NEMS_CONFIGURE=nems.configure.cpld.IN export SYEAR=2013 export SMONTH=04 diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 new file mode 100644 index 0000000000..89ed869c2b --- /dev/null +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -0,0 +1,113 @@ +# +# cpld_restart unstrWW3 PDLIB P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 unstr WW3 PDLIB" + +export CNTL_DIR="cpld_control_pdlib_p8" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHROT=12 +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +export INPES=$INPES_cpl_unstr +export JNPES=$JNPES_cpl_unstr +export WRTTASK_PER_GROUP=$(( WPG_cpl_unstr * THRD_cpl_unstr )) + +OCN_tasks=$OCN_tasks_cpl_unstr +ICE_tasks=$ICE_tasks_cpl_unstr +WAV_tasks=$WAV_tasks_cpl_unstr + +export atm_omp_num_threads=$THRD_cpl_unstr +export med_omp_num_threads=$atm_omp_num_threads + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export WAVDOMAIN=global_270k +export MESH_WAV=mesh.${WAVDOMAIN}.nc +export MODDEF_WAV=mod_def.exp.${WAVDOMAIN} + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index 0e705f870a..123d5b976c 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -11,7 +11,48 @@ export CNTL_DIR=hafs_global_1nest_atm export LIST_FILES="atmf006.nc \ sfcf006.nc \ atm.nest02.f006.nc \ - sfc.nest02.f006.nc" + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_core.res.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile3.nc \ + RESTART/20200825.180000.fv_core.res.tile4.nc \ + RESTART/20200825.180000.fv_core.res.tile5.nc \ + RESTART/20200825.180000.fv_core.res.tile6.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile3.nc \ + RESTART/20200825.180000.fv_tracer.res.tile4.nc \ + RESTART/20200825.180000.fv_tracer.res.tile5.nc \ + RESTART/20200825.180000.fv_tracer.res.tile6.nc \ + RESTART/20200825.180000.phy_data.nest02.tile7.nc \ + RESTART/20200825.180000.phy_data.tile1.nc \ + RESTART/20200825.180000.phy_data.tile2.nc \ + RESTART/20200825.180000.phy_data.tile3.nc \ + RESTART/20200825.180000.phy_data.tile4.nc \ + RESTART/20200825.180000.phy_data.tile5.nc \ + RESTART/20200825.180000.phy_data.tile6.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ + RESTART/20200825.180000.sfc_data.tile1.nc \ + RESTART/20200825.180000.sfc_data.tile2.nc \ + RESTART/20200825.180000.sfc_data.tile3.nc \ + RESTART/20200825.180000.sfc_data.tile4.nc \ + RESTART/20200825.180000.sfc_data.tile5.nc \ + RESTART/20200825.180000.sfc_data.tile6.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" + export_fv3 export_hafs diff --git a/tests/tests/hafs_global_1nest_atm_qr b/tests/tests/hafs_global_1nest_atm_qr new file mode 100644 index 0000000000..eb9e609784 --- /dev/null +++ b/tests/tests/hafs_global_1nest_atm_qr @@ -0,0 +1,155 @@ +############################################################################### +# +# HAFS global with 1 nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS global with 1 nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_global_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_core.res.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile3.nc \ + RESTART/20200825.180000.fv_core.res.tile4.nc \ + RESTART/20200825.180000.fv_core.res.tile5.nc \ + RESTART/20200825.180000.fv_core.res.tile6.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile3.nc \ + RESTART/20200825.180000.fv_tracer.res.tile4.nc \ + RESTART/20200825.180000.fv_tracer.res.tile5.nc \ + RESTART/20200825.180000.fv_tracer.res.tile6.nc \ + RESTART/20200825.180000.phy_data.nest02.tile7.nc \ + RESTART/20200825.180000.phy_data.tile1.nc \ + RESTART/20200825.180000.phy_data.tile2.nc \ + RESTART/20200825.180000.phy_data.tile3.nc \ + RESTART/20200825.180000.phy_data.tile4.nc \ + RESTART/20200825.180000.phy_data.tile5.nc \ + RESTART/20200825.180000.phy_data.tile6.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ + RESTART/20200825.180000.sfc_data.tile1.nc \ + RESTART/20200825.180000.sfc_data.tile2.nc \ + RESTART/20200825.180000.sfc_data.tile3.nc \ + RESTART/20200825.180000.sfc_data.tile4.nc \ + RESTART/20200825.180000.sfc_data.tile5.nc \ + RESTART/20200825.180000.sfc_data.tile6.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export atm_omp_num_threads=2 +export DT_ATMOS=90 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 +export NTILES=6 + +export QUILTING_RESTART=.true. +export OUTPUT_GRID='global_latlon' +export IMO=360 +export JMO=181 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.0 +export CEN_LAT_2=23.0 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.25 +export DLAT_2=0.25 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=4 +export JNPES=5 +export NPX=97 +export NPY=97 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.0" +export TARGET_LON="-86.0" +export STRETCH_FAC=1.0001 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="120,60" +export TILE_COARSE="0,6" +export NUM_TILE_TOP=6 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="1,9" +export NEST_JOFFSETS="1,9" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=241 +export NPY_NEST02=241 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 )) + +export NESTED=.true. +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_global_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index 6dac3d6d45..2f5da1a977 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -22,7 +22,71 @@ export LIST_FILES="atmf006.nc \ HURPRS.GrbF06.nest02 \ HURPRS.GrbF06.nest03 \ HURPRS.GrbF06.nest04 \ - HURPRS.GrbF06.nest05" + HURPRS.GrbF06.nest05 \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_core.res.nest03.nc \ + RESTART/20200825.180000.fv_core.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_core.res.nest04.nc \ + RESTART/20200825.180000.fv_core.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_core.res.nest05.nc \ + RESTART/20200825.180000.fv_core.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_core.res.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile3.nc \ + RESTART/20200825.180000.fv_core.res.tile4.nc \ + RESTART/20200825.180000.fv_core.res.tile5.nc \ + RESTART/20200825.180000.fv_core.res.tile6.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile3.nc \ + RESTART/20200825.180000.fv_tracer.res.tile4.nc \ + RESTART/20200825.180000.fv_tracer.res.tile5.nc \ + RESTART/20200825.180000.fv_tracer.res.tile6.nc \ + RESTART/20200825.180000.phy_data.nest02.tile7.nc \ + RESTART/20200825.180000.phy_data.nest03.tile8.nc \ + RESTART/20200825.180000.phy_data.nest04.tile9.nc \ + RESTART/20200825.180000.phy_data.nest05.tile10.nc \ + RESTART/20200825.180000.phy_data.tile1.nc \ + RESTART/20200825.180000.phy_data.tile2.nc \ + RESTART/20200825.180000.phy_data.tile3.nc \ + RESTART/20200825.180000.phy_data.tile4.nc \ + RESTART/20200825.180000.phy_data.tile5.nc \ + RESTART/20200825.180000.phy_data.tile6.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ + RESTART/20200825.180000.sfc_data.nest03.tile8.nc \ + RESTART/20200825.180000.sfc_data.nest04.tile9.nc \ + RESTART/20200825.180000.sfc_data.nest05.tile10.nc \ + RESTART/20200825.180000.sfc_data.tile1.nc \ + RESTART/20200825.180000.sfc_data.tile2.nc \ + RESTART/20200825.180000.sfc_data.tile3.nc \ + RESTART/20200825.180000.sfc_data.tile4.nc \ + RESTART/20200825.180000.sfc_data.tile5.nc \ + RESTART/20200825.180000.sfc_data.tile6.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_ne.res.nest03.nc \ + RESTART/fv_BC_ne.res.nest04.nc \ + RESTART/fv_BC_ne.res.nest05.nc \ + RESTART/fv_BC_sw.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest03.nc \ + RESTART/fv_BC_sw.res.nest04.nc \ + RESTART/fv_BC_sw.res.nest05.nc" export_fv3 export_hafs diff --git a/tests/tests/hafs_global_multiple_4nests_atm_qr b/tests/tests/hafs_global_multiple_4nests_atm_qr new file mode 100644 index 0000000000..7f628035bd --- /dev/null +++ b/tests/tests/hafs_global_multiple_4nests_atm_qr @@ -0,0 +1,249 @@ +############################################################################### +# +# HAFS global with 4 multiple nests and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS global with 4 multiple nests and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_global_multiple_4nests_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + atm.nest03.f006.nc \ + sfc.nest03.f006.nc \ + atm.nest04.f006.nc \ + sfc.nest04.f006.nc \ + atm.nest05.f006.nc \ + sfc.nest05.f006.nc \ + HURPRS.GrbF06 \ + HURPRS.GrbF06.nest02 \ + HURPRS.GrbF06.nest03 \ + HURPRS.GrbF06.nest04 \ + HURPRS.GrbF06.nest05 \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_core.res.nest03.nc \ + RESTART/20200825.180000.fv_core.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_core.res.nest04.nc \ + RESTART/20200825.180000.fv_core.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_core.res.nest05.nc \ + RESTART/20200825.180000.fv_core.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_core.res.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile3.nc \ + RESTART/20200825.180000.fv_core.res.tile4.nc \ + RESTART/20200825.180000.fv_core.res.tile5.nc \ + RESTART/20200825.180000.fv_core.res.tile6.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile7.nc \ + RESTART/20200825.180000.fv_tracer.res.nest03.tile8.nc \ + RESTART/20200825.180000.fv_tracer.res.nest04.tile9.nc \ + RESTART/20200825.180000.fv_tracer.res.nest05.tile10.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile3.nc \ + RESTART/20200825.180000.fv_tracer.res.tile4.nc \ + RESTART/20200825.180000.fv_tracer.res.tile5.nc \ + RESTART/20200825.180000.fv_tracer.res.tile6.nc \ + RESTART/20200825.180000.phy_data.nest02.tile7.nc \ + RESTART/20200825.180000.phy_data.nest03.tile8.nc \ + RESTART/20200825.180000.phy_data.nest04.tile9.nc \ + RESTART/20200825.180000.phy_data.nest05.tile10.nc \ + RESTART/20200825.180000.phy_data.tile1.nc \ + RESTART/20200825.180000.phy_data.tile2.nc \ + RESTART/20200825.180000.phy_data.tile3.nc \ + RESTART/20200825.180000.phy_data.tile4.nc \ + RESTART/20200825.180000.phy_data.tile5.nc \ + RESTART/20200825.180000.phy_data.tile6.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile7.nc \ + RESTART/20200825.180000.sfc_data.nest03.tile8.nc \ + RESTART/20200825.180000.sfc_data.nest04.tile9.nc \ + RESTART/20200825.180000.sfc_data.nest05.tile10.nc \ + RESTART/20200825.180000.sfc_data.tile1.nc \ + RESTART/20200825.180000.sfc_data.tile2.nc \ + RESTART/20200825.180000.sfc_data.tile3.nc \ + RESTART/20200825.180000.sfc_data.tile4.nc \ + RESTART/20200825.180000.sfc_data.tile5.nc \ + RESTART/20200825.180000.sfc_data.tile6.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_ne.res.nest03.nc \ + RESTART/fv_BC_ne.res.nest04.nc \ + RESTART/fv_BC_ne.res.nest05.nc \ + RESTART/fv_BC_sw.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest03.nc \ + RESTART/fv_BC_sw.res.nest04.nc \ + RESTART/fv_BC_sw.res.nest05.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export atm_omp_num_threads=2 +export DT_ATMOS=90 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 +export WRITE_DOPOST=.true. +export POSTAPP='hafs' +export NTILES=6 + +export QUILTING_RESTART=.true. +export OUTPUT_GRID='global_latlon' +export IMO=360 +export JMO=181 + +export OUTPUT_GRID_2='regional_latlon' +export CEN_LON_2=-175.0 +export CEN_LAT_2=0.0 +export LON1_2=-220.00 +export LAT1_2=-45.00 +export LON2_2=-130.00 +export LAT2_2=45.00 +export DLON_2=0.25 +export DLAT_2=0.25 + +export OUTPUT_GRID_3='rotated_latlon' +export CEN_LON_3=-86.0 +export CEN_LAT_3=23.0 +export LON1_3=-45.00 +export LAT1_3=-40.00 +export LON2_3=45.00 +export LAT2_3=40.00 +export DLON_3=0.25 +export DLAT_3=0.25 + +export OUTPUT_GRID_4='rotated_latlon' +export CEN_LON_4=-86.0 +export CEN_LAT_4=23.0 +export LON1_4=-45.00 +export LAT1_4=-40.00 +export LON2_4=45.00 +export LAT2_4=40.00 +export DLON_4=0.1 +export DLAT_4=0.1 + +export OUTPUT_GRID_5='rotated_latlon' +export CEN_LON_5=-86.0 +export CEN_LAT_5=23.0 +export LON1_5=-35.00 +export LAT1_5=-30.00 +export LON2_5=35.00 +export LAT2_5=30.00 +export DLON_5=0.05 +export DLAT_5=0.05 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=4 +export JNPES=5 +export NPX=97 +export NPY=97 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.0" +export TARGET_LON="-86.0" +export STRETCH_FAC=1.0001 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="120,60,60,60,60" +export TILE_COARSE="0,2,6,8,9" +export NUM_TILE_TOP=6 +export NEST_REFINE="0,3,3,3,3" +export NEST_IOFFSETS="1,9,9,61,121" +export NEST_JOFFSETS="1,9,9,61,121" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=241 +export NPY_NEST02=241 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +export INPES_NEST03=6 +export JNPES_NEST03=10 +export NPX_NEST03=241 +export NPY_NEST03=241 +export K_SPLIT_NEST03=4 +export N_SPLIT_NEST03=5 + +export INPES_NEST04=6 +export JNPES_NEST04=10 +export NPX_NEST04=361 +export NPY_NEST04=361 +export K_SPLIT_NEST04=4 +export N_SPLIT_NEST04=5 + +export INPES_NEST05=6 +export JNPES_NEST05=10 +export NPX_NEST05=361 +export NPY_NEST05=361 +export K_SPLIT_NEST05=4 +export N_SPLIT_NEST05=5 + +ATM_compute_tasks=$(( INPES*JNPES*NTILES + INPES_NEST02*JNPES_NEST02 + INPES_NEST03*JNPES_NEST03 + INPES_NEST04*JNPES_NEST04 + INPES_NEST05*JNPES_NEST05 )) + +export NESTED=.true. +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_global_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export INPUT_NEST03_NML=input_nest_hafs.nml.IN +export INPUT_NEST04_NML=input_nest_hafs.nml.IN +export INPUT_NEST05_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index 5563c36217..e59d4219c7 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -11,7 +11,22 @@ export CNTL_DIR=hafs_regional_1nest_atm export LIST_FILES="atmf006.nc \ sfcf006.nc \ atm.nest02.f006.nc \ - sfc.nest02.f006.nc" + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.phy_data.nc \ + RESTART/20200825.180000.phy_data.nest02.tile2.nc \ + RESTART/20200825.180000.sfc_data.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" export_fv3 export_hafs diff --git a/tests/tests/hafs_regional_1nest_atm_qr b/tests/tests/hafs_regional_1nest_atm_qr new file mode 100644 index 0000000000..5042a36dca --- /dev/null +++ b/tests/tests/hafs_regional_1nest_atm_qr @@ -0,0 +1,134 @@ +############################################################################### +# +# HAFS regional with 1 nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.phy_data.nc \ + RESTART/20200825.180000.phy_data.nest02.tile2.nc \ + RESTART/20200825.180000.sfc_data.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export atm_omp_num_threads=2 +export DT_ATMOS=90 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export QUILTING_RESTART=.true. +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.0 +export CEN_LAT=23.0 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon' +export CEN_LON_2=-86.0 +export CEN_LAT_2=23.0 +export LON1_2=-45.00 +export LAT1_2=-40.00 +export LON2_2=45.00 +export LAT2_2=40.00 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.0" +export TARGET_LON="-86.0" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" + diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm index 4ed5495ad6..40fd6ada69 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -11,7 +11,22 @@ export CNTL_DIR=hafs_regional_storm_following_1nest_atm export LIST_FILES="atmf006.nc \ sfcf006.nc \ atm.nest02.f006.nc \ - sfc.nest02.f006.nc" + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.phy_data.nc \ + RESTART/20200825.180000.phy_data.nest02.tile2.nc \ + RESTART/20200825.180000.sfc_data.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" export_fv3 export_hafs diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_qr b/tests/tests/hafs_regional_storm_following_1nest_atm_qr new file mode 100644 index 0000000000..aaf2e3b1f6 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_qr @@ -0,0 +1,135 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + atm.nest02.f006.nc \ + sfc.nest02.f006.nc \ + RESTART/20200825.180000.coupler.res \ + RESTART/20200825.180000.fv_core.res.nc \ + RESTART/20200825.180000.fv_core.res.nest02.nc \ + RESTART/20200825.180000.fv_core.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_core.res.tile1.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20200825.180000.fv_tracer.res.nest02.tile2.nc \ + RESTART/20200825.180000.fv_tracer.res.tile1.nc \ + RESTART/20200825.180000.phy_data.nc \ + RESTART/20200825.180000.phy_data.nest02.tile2.nc \ + RESTART/20200825.180000.sfc_data.nc \ + RESTART/20200825.180000.sfc_data.nest02.tile2.nc \ + RESTART/fv_BC_ne.res.nest02.nc \ + RESTART/fv_BC_sw.res.nest02.nc" + +export_fv3 +export_hafs + +export HAFS=true +export FHMAX=6 +export RESTART_N=${FHMAX} +export atm_omp_num_threads=2 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export NFHOUT=3 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=60 + +export QUILTING_RESTART=.true. +export OUTPUT_GRID='rotated_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-45.00 +export LAT1=-40.00 +export LON2=45.00 +export LAT2=40.00 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='rotated_latlon_moving' +export IMO_2=501 +export JMO_2=501 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=2,0,0,0,0 +export CPLFLX=.false. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.false. + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +ATM_compute_tasks=$(( INPES*JNPES + INPES_NEST02*JNPES_NEST02 )) + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_fv3_run.IN" +