From d87b54c08978cda84ae2625a376658cf153033cc Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Fri, 23 Feb 2024 14:04:34 -0700 Subject: [PATCH] Submodule pointer update for ccpp-framework/ccpp-physics & option to run compile jobs of regression test suite only & -mcmodel=medium gnu.cmake option (also includes https://github.com/ufs-community/ufs-weather-model/pull/2142) (#2066) * UFSWM - Add option to `rt.sh` to run compile-only tests * FV3 - Update submodule pointer (NOAA-EMC/fv3atm#747) * ccpp-physics - Update submodule pointer (ufs-community/ccpp-physics#150) * ccpp-framework - Update submodule pointer (NCAR/ccpp-framework#519) * Update WM license and documentation logo * Update GNU.cmake: -mcmodel=medium --- FV3 | 2 +- LICENSE.md | 27 +- README.md | 15 +- cmake/GNU.cmake | 2 +- doc/UsersGuide/Makefile | 10 +- doc/UsersGuide/requirements.in | 3 + doc/UsersGuide/requirements.txt | 85 ++- doc/UsersGuide/source/CodeOverview.rst | 2 +- doc/UsersGuide/source/Configurations.rst | 2 +- doc/UsersGuide/source/Glossary.rst | 4 +- doc/UsersGuide/source/InputsOutputs.rst | 2 +- doc/UsersGuide/source/conf.py | 19 +- doc/UsersGuide/source/references.bib | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 24 +- tests/logs/RegressionTests_derecho.log | 511 ++++++------- tests/logs/RegressionTests_gaea.log | 506 ++++++------- tests/logs/RegressionTests_hera.log | 708 +++++++++--------- tests/logs/RegressionTests_hercules.log | 690 ++++++++--------- tests/logs/RegressionTests_jet.log | 520 ++++++------- tests/logs/RegressionTests_orion.log | 530 ++++++------- tests/logs/RegressionTests_wcoss2.log | 448 +++++------ tests/rt.conf | 14 +- tests/rt.sh | 20 +- 25 files changed, 2148 insertions(+), 2070 deletions(-) create mode 100644 doc/UsersGuide/requirements.in diff --git a/FV3 b/FV3 index 0fe9ba3020..2d34223122 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0fe9ba3020ad2f744ead7323bda414497aa33632 +Subproject commit 2d342231225b6d00875d164cb86e09ea335fe6b1 diff --git a/LICENSE.md b/LICENSE.md index ba11b8537c..a3a10c4366 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -10,19 +10,32 @@ This project includes a mix of the following: This project utilizes the following unmodified works under various licenses, as shown below. -- Atmos cube sphere dycore: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [atmos_cubed_sphere dycore](https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FV3 Atm: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [fv3atm](https://github.com/NOAA-EMC/fv3atm): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- NEMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [Stochastic Physics](https://github.com/NOAA-PSL/stochastic_physics): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- FMS: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Physics](https://github.com/ufs-community/ccpp-physics): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- Stochastic Physics: [GNU Lesser General Public License 3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) (LGPL) +- [CCPP Framework](https://github.com/NCAR/ccpp-framework): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) -- CCPP Physics: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) +- [AQM](https://github.com/NOAA-EMC/AQM): GNU General Public License 3.0 ([GPL](https://www.gnu.org/licenses/gpl-3.0.en.html)) + +- [CICE](https://github.com/NOAA-EMC/CICE): CICE Consortium license ([LICENSE.pdf](https://github.com/NOAA-EMC/CICE/blob/emc/develop/LICENSE.pdf)) + +- [CMakeModules](https://github.com/NOAA-EMC/CMakeModules): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [GOCART](https://github.com/GEOS-ESM/GOCART): [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0) + +- [HYCOM](https://github.com/NOAA-EMC/HYCOM-src): [MIT License](https://opensource.org/license/mit/) + +- [MOM6](https://github.com/NOAA-EMC/MOM6): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [WW3](https://github.com/NOAA-EMC/WW3): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) + +- [Unified Post Processor](https://github.com/NOAA-EMC/UPP): GNU Lesser General Public License 3.0 ([LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)) -- CCPP Framework: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) ## The rest of this project is in the worldwide public domain diff --git a/README.md b/README.md index 311fec3b65..cd17b6afc2 100644 --- a/README.md +++ b/README.md @@ -18,18 +18,21 @@ The top level directory structure groups source code and input files as follow: | -------------- | ------- | | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | +| ```AQM/``` | Contains air quality modeling component | | ```CMEPS-interface/``` | Contains CMEPS mediator | +| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | +| ```CDEPS-interface/``` | Contains CDEPS data components, including data-atmosphere (DATM) and data-ocean (DOCN) model components| | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | -| ```DATM/``` | Contains Data Atmosphere model component | -| ```WW3/``` | Contains community wave modeling framework WW3. | +| ```GOCART/``` | Contains GOCART aerosol model component | +| ```HYCOM-interface/``` | Contains HYCOM ocean model component | | ```MOM6-interface/``` | Contains MOM6 ocean model component | -| ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | -| ```stochastic_physics/``` | Contains the stochastic physics source code. | +| ```NOAHMP-interface/``` | Contains Noah-MP land model component | +| ```WW3/``` | Contains community wave modeling framework WW3 | +| ```stochastic_physics/``` | Contains the stochastic physics source code | | ```cmake/``` | Contains compile option files on various platforms. | | ```modulefiles/``` | Contains module files on various platforms. | | ```tests/``` | Regression and unit testing framework scripts. | -| ```build.sh``` | Script to build the model executable. (also used by `tests/`) | +| ```build.sh``` | Script to build the model executable (also used by `tests/`) | E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. ``` diff --git a/cmake/GNU.cmake b/cmake/GNU.cmake index 4069d922d7..939e25bfa7 100644 --- a/cmake/GNU.cmake +++ b/cmake/GNU.cmake @@ -10,7 +10,7 @@ endif() if(DEBUG) add_definitions(-DDEBUG) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -fno-unsafe-math-optimizations -frounding-math -fsignaling-nans -ffpe-trap=invalid,zero,overflow -fbounds-check -mcmodel=medium") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0") else() set(CMAKE_Fortran_FLAGS_RELEASE "-O2") diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile index d0c3cbf102..a883b1dda4 100644 --- a/doc/UsersGuide/Makefile +++ b/doc/UsersGuide/Makefile @@ -3,16 +3,20 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS ?= -SPHINXBUILD ?= sphinx-build +SPHINXOPTS = -a -n +SPHINXBUILD = sphinx-build SOURCEDIR = source BUILDDIR = build +LINKCHECKDIR = $(BUILDDIR)/linkcheck # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) -.PHONY: help Makefile +.PHONY: help Makefile linkcheck + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(SPHINXOPTS) $(SOURCEDIR) $(LINKCHECKDIR) # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). diff --git a/doc/UsersGuide/requirements.in b/doc/UsersGuide/requirements.in new file mode 100644 index 0000000000..26c778f4aa --- /dev/null +++ b/doc/UsersGuide/requirements.in @@ -0,0 +1,3 @@ +sphinx>=6.0.0 +sphinx_rtd_theme +sphinxcontrib-bibtex diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 7be32f526d..b4642f5872 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,3 +1,82 @@ -sphinxcontrib-bibtex -sphinx_rtd_theme -docutils==0.16 \ No newline at end of file +# +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: +# +# pip-compile requirements.in +# +alabaster==0.7.16 + # via sphinx +babel==2.14.0 + # via sphinx +certifi==2024.2.2 + # via requests +charset-normalizer==3.3.2 + # via requests +docutils==0.20.1 + # via + # pybtex-docutils + # sphinx + # sphinx-rtd-theme + # sphinxcontrib-bibtex +idna==3.6 + # via requests +imagesize==1.4.1 + # via sphinx +importlib-metadata==7.0.1 + # via + # sphinx + # sphinxcontrib-bibtex +jinja2==3.1.3 + # via sphinx +latexcodec==2.0.1 + # via pybtex +markupsafe==2.1.5 + # via jinja2 +packaging==23.2 + # via sphinx +pybtex==0.24.0 + # via + # pybtex-docutils + # sphinxcontrib-bibtex +pybtex-docutils==1.0.3 + # via sphinxcontrib-bibtex +pygments==2.17.2 + # via sphinx +pyyaml==6.0.1 + # via pybtex +requests==2.31.0 + # via sphinx +six==1.16.0 + # via + # latexcodec + # pybtex +snowballstemmer==2.2.0 + # via sphinx +sphinx==7.2.6 + # via + # -r requirements.in + # sphinx-rtd-theme + # sphinxcontrib-bibtex + # sphinxcontrib-jquery +sphinx-rtd-theme==2.0.0 + # via -r requirements.in +sphinxcontrib-applehelp==1.0.8 + # via sphinx +sphinxcontrib-bibtex==2.6.2 + # via -r requirements.in +sphinxcontrib-devhelp==1.0.6 + # via sphinx +sphinxcontrib-htmlhelp==2.0.5 + # via sphinx +sphinxcontrib-jquery==4.1 + # via sphinx-rtd-theme +sphinxcontrib-jsmath==1.0.1 + # via sphinx +sphinxcontrib-qthelp==1.0.7 + # via sphinx +sphinxcontrib-serializinghtml==1.1.10 + # via sphinx +urllib3==2.2.1 + # via requests +zipp==3.17.0 + # via importlib-metadata diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index a479309aab..a8594bce14 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -67,7 +67,7 @@ The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range w * - :term:`FV3` dynamical core - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere * - Stochastic physics pattern generator - - https://github.com/noaa-psd/stochastic_physics + - https://github.com/NOAA-PSL/stochastic_physics * - Modular Ocean Model (:term:`MOM6`) - https://github.com/NOAA-EMC/MOM6 * - HYbrid Coordinate Ocean Model (:term:`HYCOM`) diff --git a/doc/UsersGuide/source/Configurations.rst b/doc/UsersGuide/source/Configurations.rst index 0ad596002a..7ac2cf6034 100644 --- a/doc/UsersGuide/source/Configurations.rst +++ b/doc/UsersGuide/source/Configurations.rst @@ -335,7 +335,7 @@ Each test file lists the input files required for a given test. Input files requ Information on ``ufs.configure`` files is available in :numref:`Section %s `. The supported RRFS WM RTs use the same ``ufs.configure`` file that ATM-only tests do (``ufs.configure.atm.IN``). This file can be viewed in the ``ufs-weather-model/tests/parm`` `directory `__. -Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. +Additionally, users can find examples of various RRFS configuration files in the ``ufs-weather-model/tests/parm`` `directory `__. These files include ``model_configure_*``, ``*_run.IN`` (input run), ``*.nml.IN`` (input namelist), ``field_table_*``, and ``diag_table_*`` files. .. _lnd-documented: diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index b30a242867..4b54f0ae3c 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -120,7 +120,7 @@ Glossary NCEPLIBS The software libraries created and maintained by :term:`NCEP` that are required for running - :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__. + :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in `spack-stack `__ and `HPC-Stack `__. NCEPLIBS-external A collection of third-party libraries required to build :term:`NCEPLIBS`, :term:`chgres_cube`, @@ -167,7 +167,7 @@ Glossary The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. spack-stack - The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. + The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. Suite Definition File (SDF) An external file containing information about the diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 534d173579..b3b7567fda 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -1639,7 +1639,7 @@ A sample of the file contents is shown below: However, ``ufs.configure`` files for other configurations of the Weather Model are more complex. A full set of ``ufs.configure`` templates is available in the ``ufs-weather-model/tests/parm/`` directory `here `__. Template names follow the pattern ``ufs.configure.*.IN``. A number of samples are available below: * `ATMAQ `__ configuration - * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) + * `S2S `__ (fully coupled ``S2S`` configuration that receives atmosphere-ocean fluxes from a mediator) * `S2SW `__ (fully coupled ``S2SW`` configuration) * `S2SWA `__ (coupled GOCART in the S2SAW configuration) * `ATM-LND `__ (ATML configuration) diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index bbe458cf54..e7c00bd318 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -69,12 +69,9 @@ # The master toctree document. master_doc = 'index' -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -# -# This is also used if you do content translation via gettext catalogs. -# Usually you set "language" from the command line for these cases. -language = None +# The language for content autogenerated by Sphinx. +# Not set because default is 'en'. +# language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. @@ -84,6 +81,15 @@ # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' +# Avoid a 403 Forbidden error when accessing certain links (e.g., noaa.gov) +user_agent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36" + +# Ignore anchor tags for links that show Not Found even when they exist. +linkcheck_anchors_ignore = [r"L\d*", + ] +# Ignore working links that cause a linkcheck 403 error. +linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', + ] # -- Options for HTML output ------------------------------------------------- @@ -100,6 +106,7 @@ # # html_theme_options = {} html_theme_options = {"body_max_width": "none"} +html_logo="https://github.com/ufs-community/ufs/wiki/images/ufs-epic-logo.png" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib index 92a6d96b98..0015b43304 100644 --- a/doc/UsersGuide/source/references.bib +++ b/doc/UsersGuide/source/references.bib @@ -16,6 +16,6 @@ @article{BengtssonEtAl2020 title={A Stochastic Parameterization of Organized Tropical Convection Using Cellular Automata for Global Forecasts in NOAA's Unified Forecast System}, author={L. Bengtsson and J. Dias and S. Tulich and M. Gehne and J. Bao}, journal={Journal of Advances in Modeling Earth Systems}, - url={https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002260}, + url={https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2020MS002260}, year={2020}, } diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 641bb1eb78..5ab7c2b923 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Feb 16 23:35:21 UTC 2024 +Thu Feb 22 20:53:25 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 286.838063 - 0: The maximum resident set size (KB) = 1310900 + 0: The total amount of wall time = 280.439468 + 0: The maximum resident set size (KB) = 1305520 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 901.459527 - 0: The maximum resident set size (KB) = 1284480 + 0: The total amount of wall time = 909.185427 + 0: The maximum resident set size (KB) = 1287316 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.691945 - 0: The maximum resident set size (KB) = 1279076 + 0: The total amount of wall time = 248.211050 + 0: The maximum resident set size (KB) = 1280512 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.381682 - 0: The maximum resident set size (KB) = 1281444 + 0: The total amount of wall time = 251.581934 + 0: The maximum resident set size (KB) = 1264336 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.909525 - 0: The maximum resident set size (KB) = 1280000 + 0: The total amount of wall time = 250.725287 + 0: The maximum resident set size (KB) = 1280612 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.556867 - 0: The maximum resident set size (KB) = 1284028 + 0: The total amount of wall time = 289.617565 + 0: The maximum resident set size (KB) = 1277316 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_141337/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_19232/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 261.471265 - 0: The maximum resident set size (KB) = 1280040 + 0: The total amount of wall time = 248.771012 + 0: The maximum resident set size (KB) = 1279892 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Feb 17 10:33:22 UTC 2024 -Elapsed time: 10h:58m:02s. Have a nice day! +Thu Feb 22 22:13:07 UTC 2024 +Elapsed time: 01h:19m:42s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index 98e09e571e..92f9a7c5d4 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Feb 19 14:50:19 UTC 2024 +Fri Feb 23 14:47:29 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1252.713120 - 0: The maximum resident set size (KB) = 1390364 + 0: The total amount of wall time = 1267.233553 + 0: The maximum resident set size (KB) = 1405904 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 384.439726 - 0: The maximum resident set size (KB) = 1385248 + 0: The total amount of wall time = 391.689198 + 0: The maximum resident set size (KB) = 1402796 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_78955/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_31571/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 385.798138 - 0: The maximum resident set size (KB) = 1402428 + 0: The total amount of wall time = 387.349272 + 0: The maximum resident set size (KB) = 1402180 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 19 15:48:40 UTC 2024 -Elapsed time: 00h:58m:22s. Have a nice day! +Fri Feb 23 16:15:36 UTC 2024 +Elapsed time: 01h:28m:07s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e5ae1412cf..b1caca193e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Feb 19 14:05:32 UTC 2024 +Fri Feb 23 14:04:50 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -14,14 +14,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 514.940897 - 0: The maximum resident set size (KB) = 588032 + 0: The total amount of wall time = 524.440233 + 0: The maximum resident set size (KB) = 589460 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -33,14 +33,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 514.782298 - 0: The maximum resident set size (KB) = 587896 + 0: The total amount of wall time = 512.660107 + 0: The maximum resident set size (KB) = 590144 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_283438/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_18796/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -51,11 +51,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 515.415577 - 0: The maximum resident set size (KB) = 587940 + 0: The total amount of wall time = 516.695763 + 0: The maximum resident set size (KB) = 591548 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Feb 19 14:42:44 UTC 2024 -Elapsed time: 00h:37m:13s. Have a nice day! +Fri Feb 23 14:41:20 UTC 2024 +Elapsed time: 00h:36m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 197ca0d90c..92b2f84a32 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -681a70733ad51929905514527b6d5a497cd17776 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,263 +25,272 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_101438 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_2497 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:47, 21:25] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:17, 05:02](3072 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:44, 23:00] -PASS -- TEST 'cpld_control_gfsv17_intel' [17:09, 13:52](1677 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:35, 15:18](1822 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [18:38, 07:19](950 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 15:52](1653 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:50, 11:12] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:05, 21:46](1699 MB) - -PASS -- COMPILE 's2swa_intel' [40:42, 20:54] -PASS -- TEST 'cpld_control_p8_intel' [10:41, 05:44](3091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:55, 05:42](3090 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:46, 03:21](3149 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 05:42](3122 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 03:26](3174 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:42, 05:38](3089 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:53, 04:44](3383 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:43](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:14, 09:04](3635 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:50, 05:56](3616 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 05:21](3065 MB) - -PASS -- COMPILE 's2sw_intel' [39:46, 20:20] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:18](1678 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:06, 04:20](1722 MB) - -PASS -- COMPILE 's2swa_debug_intel' [30:46, 11:36] -PASS -- TEST 'cpld_debug_p8_intel' [11:40, 07:49](3151 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:33, 10:39] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:48, 05:16](1703 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [34:51, 15:36] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:21](1732 MB) - -PASS -- COMPILE 's2s_intel' [34:51, 15:21] -PASS -- TEST 'cpld_control_c48_intel' [41:34, 06:37](2663 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [41:52, 21:02] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:09, 14:09](1694 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:10, 07:29](1016 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:06, 16:04](1669 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:21, 10:23] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 22:39](1707 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:22, 12:47] -PASS -- TEST 'control_flake_intel' [17:56, 03:28](664 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:10, 02:06](615 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:24, 02:12](1389 MB) -PASS -- TEST 'control_latlon_intel' [10:53, 02:10](616 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:16, 02:11](615 MB) -PASS -- TEST 'control_c48_intel' [31:56, 05:15](731 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [31:55, 05:15](730 MB) -PASS -- TEST 'control_c192_intel' [22:39, 07:53](739 MB) -PASS -- TEST 'control_c384_intel' [17:18, 08:26](1052 MB) -PASS -- TEST 'control_c384gdas_intel' [20:31, 07:36](1194 MB) -PASS -- TEST 'control_stochy_intel' [15:53, 01:28](623 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:48, 00:56](434 MB) -PASS -- TEST 'control_lndp_intel' [16:04, 01:25](622 MB) -PASS -- TEST 'control_iovr4_intel' [17:21, 02:07](618 MB) -PASS -- TEST 'control_iovr5_intel' [17:22, 02:09](616 MB) -PASS -- TEST 'control_p8_intel' [14:03, 02:34](1594 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:50, 02:32](1601 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:57, 02:33](1599 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:28](795 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:41, 02:33](1585 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:33, 01:28](799 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:32, 02:37](1592 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:25, 04:24](1597 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 03:22](1655 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:54, 02:37](1605 MB) -PASS -- TEST 'merra2_thompson_intel' [05:58, 03:05](1599 MB) -PASS -- TEST 'regional_control_intel' [06:23, 04:31](622 MB) -PASS -- TEST 'regional_restart_intel' [04:03, 02:31](796 MB) -PASS -- TEST 'regional_decomp_intel' [06:16, 04:45](1389 MB) -PASS -- TEST 'regional_noquilt_intel' [07:19, 04:26](1157 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:27, 04:33](621 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:18, 04:34](626 MB) -PASS -- TEST 'regional_wofs_intel' [08:15, 05:41](1597 MB) - -PASS -- COMPILE 'rrfs_intel' [52:44, 11:44] -PASS -- TEST 'rap_control_intel' [08:15, 06:09](1006 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:34, 03:58](1195 MB) -PASS -- TEST 'rap_decomp_intel' [09:14, 06:25](1007 MB) -PASS -- TEST 'rap_restart_intel' [05:15, 03:15](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:10, 06:11](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:27, 06:23](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:22, 04:36](883 MB) -PASS -- TEST 'hrrr_control_intel' [06:06, 03:15](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:04, 03:20](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 02:53](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:50, 01:48](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:24, 06:03](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:40, 07:26](1958 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:46, 07:10](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [49:35, 10:52] -PASS -- TEST 'control_csawmg_intel' [07:15, 05:14](692 MB) -PASS -- TEST 'control_csawmgt_intel' [07:16, 05:10](687 MB) -PASS -- TEST 'control_ras_intel' [04:34, 02:56](656 MB) - -PASS -- COMPILE 'wam_intel' [48:44, 10:32] -PASS -- TEST 'control_wam_intel' [04:01, 01:59](384 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [51:37, 13:52] -PASS -- TEST 'control_p8_faster_intel' [04:42, 02:24](1594 MB) -PASS -- TEST 'regional_control_faster_intel' [06:16, 04:18](627 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [44:43, 09:40] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:26, 02:34](791 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:26, 02:36](793 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:21, 02:55](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:19, 02:37](800 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:49, 03:58](834 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [07:49, 03:59](833 MB) -PASS -- TEST 'control_ras_debug_intel' [06:19, 02:42](807 MB) -PASS -- TEST 'control_diag_debug_intel' [07:05, 02:45](854 MB) -PASS -- TEST 'control_debug_p8_intel' [06:48, 02:44](1624 MB) -PASS -- TEST 'regional_debug_intel' [18:52, 15:45](661 MB) -PASS -- TEST 'rap_control_debug_intel' [08:23, 04:44](1177 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:26, 04:34](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 04:47](1176 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:25, 04:47](1175 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 04:50](1177 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:55, 04:57](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:19, 04:53](1178 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 04:43](1180 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:31, 04:45](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:24, 04:46](1176 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:24, 04:36](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:25, 04:44](1176 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:19, 07:49](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:44, 04:37](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:45, 05:36](1179 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:45, 04:38](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:55](1180 MB) - -PASS -- COMPILE 'wam_debug_intel' [40:41, 06:21] -PASS -- TEST 'control_wam_debug_intel' [06:33, 04:38](416 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:33, 10:46] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:10, 03:39](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:22, 05:09](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:01, 02:47](881 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:00, 02:58](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 03:55](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:36](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:32, 12:46] -PASS -- TEST 'conus13km_control_intel' [04:51, 01:58](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:04](1081 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:12, 01:11](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [38:31, 10:34] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:40](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [32:34, 06:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:41, 04:39](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:28](1389 MB) -PASS -- TEST 'conus13km_debug_intel' [16:55, 13:25](1130 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:49, 13:30](1196 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:22, 06:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:43, 04:37](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [21:30, 16:57] -PASS -- TEST 'hafs_regional_atm_intel' [08:57, 04:41](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 05:32](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:20, 06:33](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:52, 11:00](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:22, 12:10](805 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 04:46](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:09, 05:53](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:26, 02:26](389 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:53, 06:33](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:34, 03:26](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:12, 03:10](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:56, 03:59](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:48, 01:20](426 MB) -PASS -- TEST 'gnv1_nested_intel' [05:27, 03:29](785 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:17] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:37, 12:14](611 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:21, 20:18] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:41, 07:13](628 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:51, 07:28](677 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:29, 17:19] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:00, 05:26](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:28, 14:59] -PASS -- TEST 'hafs_regional_docn_intel' [09:30, 05:41](754 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:40, 05:44](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:24, 16:11](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:25, 08:31] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:30](762 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:35, 01:35](749 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:45, 02:21](639 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:50, 02:23](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:47, 02:24](639 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:31](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:34, 02:32](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:43, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:48, 05:43](685 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 05:38](670 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:36, 02:29](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 03:56](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:32, 04:00](2017 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 05:55] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:00, 05:07](1389 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:19, 08:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:52, 02:31](762 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:48] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:17](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:12](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:51, 00:50](455 MB) - -PASS -- COMPILE 'atml_intel' [14:24, 13:45] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 06:58](1622 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:46, 07:28](1639 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:11, 03:33](842 MB) - -PASS -- COMPILE 'atmw_intel' [14:29, 13:41] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:37](1627 MB) - -PASS -- COMPILE 'atmwm_intel' [14:29, 13:16] -PASS -- TEST 'control_atmwav_intel' [03:08, 01:31](637 MB) - -PASS -- COMPILE 'atmaero_intel' [13:20, 12:17] -PASS -- TEST 'atmaero_control_p8_intel' [06:00, 03:44](2944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:19](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:33, 04:34](3012 MB) - -PASS -- COMPILE 'atmaq_intel' [13:21, 11:52] +PASS -- COMPILE 's2swa_32bit_intel' [40:32, 22:08] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:43, 05:04](3076 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:32, 22:31] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:40, 13:55](1688 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:25](1825 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:22, 07:37](953 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:50, 15:51](1656 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [30:38, 12:02] +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:15, 21:47](1694 MB) + +PASS -- COMPILE 's2swa_intel' [40:42, 21:36] +PASS -- TEST 'cpld_control_p8_intel' [09:30, 05:44](3089 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 05:43](3090 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:27, 03:31](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 05:44](3120 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 03:31](3176 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:12, 05:40](3088 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:12, 04:47](3383 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:46, 05:42](3102 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:28, 09:11](3632 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:35, 06:28](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [31:52, 10:03](4342 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:48, 07:08](4646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 05:24](3062 MB) + +PASS -- COMPILE 's2sw_intel' [39:38, 20:47] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:01, 04:16](1677 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:11, 04:21](1728 MB) + +PASS -- COMPILE 's2swa_debug_intel' [29:36, 11:36] +PASS -- TEST 'cpld_debug_p8_intel' [10:05, 07:45](3151 MB) + +PASS -- COMPILE 's2sw_debug_intel' [29:37, 11:01] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:54, 05:23](1696 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [34:39, 16:13] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:31, 04:25](1721 MB) + +PASS -- COMPILE 's2s_intel' [34:37, 15:58] +PASS -- TEST 'cpld_control_c48_intel' [08:25, 06:39](2663 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:47, 24:57] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:55, 05:44](3097 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:32, 21:20] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:17, 14:11](1697 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:45, 07:26](1012 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:19, 16:11](1663 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:29, 10:38] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:34, 22:48](1712 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:28, 13:56] +PASS -- TEST 'control_flake_intel' [04:50, 03:29](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:11](616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:08, 02:20](625 MB) +PASS -- TEST 'control_latlon_intel' [03:49, 02:11](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:56, 02:16](618 MB) +PASS -- TEST 'control_c48_intel' [06:56, 05:17](736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:56, 05:16](740 MB) +PASS -- TEST 'control_c192_intel' [11:04, 08:09](737 MB) +PASS -- TEST 'control_c384_intel' [15:41, 08:37](1064 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 07:39](1198 MB) +PASS -- TEST 'control_stochy_intel' [02:44, 01:31](625 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:44, 00:58](436 MB) +PASS -- TEST 'control_lndp_intel' [02:45, 01:26](625 MB) +PASS -- TEST 'control_iovr4_intel' [03:56, 02:11](621 MB) +PASS -- TEST 'control_iovr5_intel' [03:47, 02:10](618 MB) +PASS -- TEST 'control_p8_intel' [04:51, 02:34](1602 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:56, 02:38](1592 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 02:35](1602 MB) +PASS -- TEST 'control_restart_p8_intel' [03:49, 01:32](801 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:02, 02:41](1595 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:27](805 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:50, 02:42](1597 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 04:30](1600 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:58, 03:28](1658 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:48, 02:37](1603 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:07](1602 MB) +PASS -- TEST 'regional_control_intel' [06:36, 04:35](631 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:35](798 MB) +PASS -- TEST 'regional_decomp_intel' [06:35, 04:46](631 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:26, 04:35](627 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:37](631 MB) +PASS -- TEST 'regional_wofs_intel' [07:22, 05:42](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [13:28, 12:11] +PASS -- TEST 'rap_control_intel' [08:39, 06:08](999 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:27, 03:59](1188 MB) +PASS -- TEST 'rap_decomp_intel' [09:00, 06:33](1003 MB) +PASS -- TEST 'rap_restart_intel' [05:38, 03:18](876 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:57, 06:13](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:30](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:41, 04:39](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:51, 03:20](995 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:22](1000 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:53, 02:53](1089 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:14, 01:59](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:30, 06:05](996 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:30](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:54, 07:12](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [12:28, 11:17] +PASS -- TEST 'control_csawmg_intel' [07:40, 05:20](691 MB) +PASS -- TEST 'control_csawmgt_intel' [07:36, 05:13](689 MB) +PASS -- TEST 'control_ras_intel' [04:48, 02:59](658 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:39] +PASS -- TEST 'control_wam_intel' [03:37, 01:56](380 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:25, 13:43] +PASS -- TEST 'control_p8_faster_intel' [05:05, 02:29](1598 MB) +PASS -- TEST 'regional_control_faster_intel' [06:24, 04:20](628 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:30, 09:53] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:38](792 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:01, 02:37](796 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:45, 02:56](802 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:49, 02:43](801 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:26, 03:57](838 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:32, 03:59](836 MB) +PASS -- TEST 'control_ras_debug_intel' [03:49, 02:44](803 MB) +PASS -- TEST 'control_diag_debug_intel' [05:12, 02:47](855 MB) +PASS -- TEST 'control_debug_p8_intel' [04:31, 02:39](1624 MB) +PASS -- TEST 'regional_debug_intel' [17:27, 15:54](664 MB) +PASS -- TEST 'rap_control_debug_intel' [05:51, 04:51](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:50, 04:39](1402 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:50, 04:41](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:44, 04:47](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:43, 04:43](1178 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:04, 05:00](1265 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:45, 04:49](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:43, 04:53](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:53, 04:48](1181 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:54, 04:52](1178 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:53, 04:43](1174 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 04:41](1179 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:46, 07:47](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:49, 04:38](1171 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:55, 05:28](1182 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:41](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:27, 07:55](1179 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:25, 06:11] +PASS -- TEST 'control_wam_debug_intel' [15:41, 04:38](423 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:26, 10:39] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:47](1059 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [16:16, 05:11](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:05, 02:51](881 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:24, 02:57](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:12, 03:53](794 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:44, 01:34](775 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:29, 12:46] +PASS -- TEST 'conus13km_control_intel' [12:26, 01:55](1081 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:31, 01:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:02, 01:11](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:30, 10:57] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:14, 03:41](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:29, 07:05] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [13:57, 04:36](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [13:46, 04:26](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [23:36, 13:24](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [22:38, 13:31](820 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:25, 13:40](1385 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:25, 07:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:47, 04:41](1081 MB) + +PASS -- COMPILE 'hafsw_intel' [18:24, 17:43] +PASS -- TEST 'hafs_regional_atm_intel' [13:08, 04:48](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:21, 05:23](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:26, 06:31](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:43, 11:00](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:02, 12:12](809 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:44, 04:45](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:58, 05:54](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:29, 02:27](389 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:12, 06:26](460 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:14, 03:25](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:59, 03:12](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:43, 03:56](586 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:53, 01:19](428 MB) +PASS -- TEST 'gnv1_nested_intel' [12:33, 03:30](787 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:19, 08:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:36, 12:02](610 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [21:32, 21:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:02, 07:18](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:17, 07:20](687 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:26, 18:27] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:20, 05:30](675 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:29, 15:50] +PASS -- TEST 'hafs_regional_docn_intel' [13:53, 05:46](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:53, 05:45](736 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 16:11](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:29, 09:04] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:08, 02:30](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [24:47, 01:35](749 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:36, 02:21](642 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:48, 02:23](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:40, 02:24](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:42, 02:31](1405 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:02, 02:30](1215 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:39, 02:20](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:19, 05:42](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:46, 05:42](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:30, 02:29](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:07, 03:53](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:57, 03:54](2017 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:25, 06:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:43, 05:06](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 08:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:51, 02:31](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:23, 02:54] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:17](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:43, 01:12](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [21:57, 00:52](451 MB) + +PASS -- COMPILE 'atml_intel' [15:28, 14:18] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [31:47, 07:28](1624 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [32:45, 07:46](1628 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 04:50](853 MB) + +PASS -- COMPILE 'atmw_intel' [14:26, 14:00] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [26:19, 01:37](1635 MB) + +PASS -- COMPILE 'atmwm_intel' [14:26, 13:38] +PASS -- TEST 'control_atmwav_intel' [03:06, 01:33](635 MB) + +PASS -- COMPILE 'atmaero_intel' [13:25, 12:06] +PASS -- TEST 'atmaero_control_p8_intel' [27:09, 03:46](2946 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [28:10, 04:24](2995 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [28:34, 04:38](3013 MB) + +PASS -- COMPILE 'atmaq_intel' [36:34, 11:45] + +PASS -- COMPILE 'atmaq_debug_intel' [32:37, 07:22] +PASS -- TEST 'regional_atmaq_debug_intel' [39:42, 22:28](4531 MB) SYNOPSIS: -Starting Date/Time: 20240220 21:47:19 -Ending Date/Time: 20240220 23:47:50 -Total Time: 02h:02m:03s -Compiles Completed: 37/37 -Tests Completed: 170/170 +Starting Date/Time: 20240222 14:58:31 +Ending Date/Time: 20240222 17:18:46 +Total Time: 02h:21m:07s +Compiles Completed: 39/39 +Tests Completed: 175/175 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 49c76eba5f..593a36407a 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,277 +25,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/FV3_RT/rt_35653 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/FV3_RT/rt_55800 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:54] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:20, 05:14](3075 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:06] -PASS -- TEST 'cpld_control_gfsv17_intel' [16:08, 13:20](1692 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:03, 14:05](1809 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:01, 06:30](945 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:01, 14:30](1662 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:08, 07:23] -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:07, 24:43](1698 MB) - -PASS -- COMPILE 's2swa_intel' [14:09, 12:34] -PASS -- TEST 'cpld_control_p8_intel' [08:15, 06:01](3098 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:23, 05:58](3097 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:10, 03:33](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:59](3124 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:10, 03:40](3177 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:09, 05:24](3410 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:09, 05:56](3098 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:16, 05:02](3022 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:23, 06:00](3098 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:07, 09:54](3271 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:47](3602 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 12:14](4036 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:10, 08:38](4347 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:15, 05:42](3068 MB) - -PASS -- COMPILE 's2sw_intel' [13:09, 11:54] -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:23](1688 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:03, 04:36](1732 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:08, 07:18] -PASS -- TEST 'cpld_debug_p8_intel' [11:01, 08:28](3129 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:08, 06:30] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:44](1698 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:09, 10:55] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1731 MB) - -PASS -- COMPILE 's2s_intel' [12:09, 10:53] -PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2659 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 15:52] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:08, 05:52](3098 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:39] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:07, 14:41](1702 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:02, 07:10](1001 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:10, 17:03](1679 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:08, 06:58] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:08, 26:38](1711 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:09, 10:26] -PASS -- TEST 'control_flake_intel' [07:27, 03:28](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:31, 02:19](617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:33, 02:20](625 MB) -PASS -- TEST 'control_latlon_intel' [04:24, 02:18](620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:33, 02:19](620 MB) -PASS -- TEST 'control_c48_intel' [07:35, 05:35](726 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:35](720 MB) -PASS -- TEST 'control_c192_intel' [12:33, 08:31](737 MB) -PASS -- TEST 'control_c384_intel' [19:54, 16:16](1039 MB) -PASS -- TEST 'control_c384gdas_intel' [18:39, 13:58](1182 MB) -PASS -- TEST 'control_stochy_intel' [04:24, 01:37](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:59](428 MB) -PASS -- TEST 'control_lndp_intel' [03:24, 01:31](626 MB) -PASS -- TEST 'control_iovr4_intel' [05:27, 02:20](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:27, 02:19](620 MB) -PASS -- TEST 'control_p8_intel' [06:43, 02:44](1608 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 02:45](1608 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 02:39](1610 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:34](791 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:41](1596 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:32](793 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:43, 02:48](1596 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:46, 02:24](1680 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:39, 04:44](1608 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:45, 03:38](1658 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:44, 02:44](1614 MB) -PASS -- TEST 'merra2_thompson_intel' [05:44, 03:15](1615 MB) -PASS -- TEST 'regional_control_intel' [06:29, 04:36](619 MB) -PASS -- TEST 'regional_restart_intel' [04:26, 02:29](791 MB) -PASS -- TEST 'regional_decomp_intel' [06:29, 04:49](617 MB) -PASS -- TEST 'regional_2threads_intel' [04:29, 02:50](761 MB) -PASS -- TEST 'regional_noquilt_intel' [06:30, 04:31](1156 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:36](618 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:27, 04:39](619 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 05:59](1593 MB) - -PASS -- COMPILE 'rrfs_intel' [11:09, 09:31] -PASS -- TEST 'rap_control_intel' [08:37, 06:33](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:56](1177 MB) -PASS -- TEST 'rap_decomp_intel' [08:36, 06:32](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:40, 05:55](1093 MB) -PASS -- TEST 'rap_restart_intel' [05:37, 03:27](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:41, 06:26](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:43](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:51](876 MB) -PASS -- TEST 'hrrr_control_intel' [05:38, 03:26](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:29](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:33, 03:00](1076 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:54](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:27](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:26, 07:42](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:25, 07:31](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [11:09, 09:08] -PASS -- TEST 'control_csawmg_intel' [07:30, 05:32](696 MB) -PASS -- TEST 'control_csawmgt_intel' [07:29, 05:28](693 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:07](658 MB) - -PASS -- COMPILE 'wam_intel' [10:09, 08:42] -PASS -- TEST 'control_wam_intel' [04:19, 02:09](369 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 11:55] -PASS -- TEST 'control_p8_faster_intel' [04:43, 02:39](1606 MB) -PASS -- TEST 'regional_control_faster_intel' [06:28, 04:24](613 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:30] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:25, 02:43](778 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:27, 02:43](782 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:03](785 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:09, 13:21] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:08, 05:13](3072 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:10, 18:35] +PASS -- TEST 'cpld_control_gfsv17_intel' [16:09, 13:31](1696 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:19](1808 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:59, 06:35](946 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:05, 14:34](1670 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:07, 07:32] +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:02, 24:05](1699 MB) + +PASS -- COMPILE 's2swa_intel' [14:09, 13:00] +PASS -- TEST 'cpld_control_p8_intel' [08:17, 06:01](3098 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:00](3098 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 03:35](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:04](3122 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 03:38](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:17, 05:28](3411 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:17, 05:54](3097 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:03](3021 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:27, 05:59](3099 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:12, 09:54](3271 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:58, 06:50](3599 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:18, 12:11](4038 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 08:32](4346 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:18, 05:47](3067 MB) + +PASS -- COMPILE 's2sw_intel' [14:09, 12:21] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:19, 04:23](1691 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:23, 04:38](1737 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:07, 06:55] +PASS -- TEST 'cpld_debug_p8_intel' [11:06, 08:13](3130 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:07, 06:42] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:32](1700 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:08, 11:20] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:03, 04:38](1727 MB) + +PASS -- COMPILE 's2s_intel' [13:08, 11:11] +PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:53](2660 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:14] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:09, 05:57](3099 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:10, 18:02] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:14, 14:29](1704 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:03, 07:04](1003 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:05, 17:00](1684 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:07, 07:14] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 26:52](1711 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:23] +PASS -- TEST 'control_flake_intel' [05:24, 03:34](674 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:19](619 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:30, 02:26](627 MB) +PASS -- TEST 'control_latlon_intel' [04:24, 02:21](622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:25](623 MB) +PASS -- TEST 'control_c48_intel' [07:34, 05:41](722 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:38](721 MB) +PASS -- TEST 'control_c192_intel' [10:32, 08:40](739 MB) +PASS -- TEST 'control_c384_intel' [18:50, 16:15](1041 MB) +PASS -- TEST 'control_c384gdas_intel' [16:38, 14:03](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:38](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](430 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:34](628 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:21](622 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](623 MB) +PASS -- TEST 'control_p8_intel' [04:53, 02:41](1606 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 02:45](1609 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:54, 02:41](1609 MB) +PASS -- TEST 'control_restart_p8_intel' [03:42, 01:35](790 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:53, 02:41](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:42, 01:34](793 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:44, 02:43](1594 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:43, 02:25](1679 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:43](1606 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:46, 03:33](1657 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:47](1615 MB) +PASS -- TEST 'merra2_thompson_intel' [05:45, 03:14](1616 MB) +PASS -- TEST 'regional_control_intel' [06:29, 04:34](615 MB) +PASS -- TEST 'regional_restart_intel' [04:26, 02:29](789 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:44](615 MB) +PASS -- TEST 'regional_2threads_intel' [04:27, 02:49](757 MB) +PASS -- TEST 'regional_noquilt_intel' [06:31, 04:29](1153 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:33](614 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:33](615 MB) +PASS -- TEST 'regional_wofs_intel' [07:29, 05:54](1591 MB) + +PASS -- COMPILE 'rrfs_intel' [11:08, 09:44] +PASS -- TEST 'rap_control_intel' [08:42, 06:33](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:57](1182 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 06:47](1009 MB) +PASS -- TEST 'rap_2threads_intel' [07:36, 05:52](1099 MB) +PASS -- TEST 'rap_restart_intel' [05:37, 03:28](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:24](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:38, 06:42](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:38, 04:51](879 MB) +PASS -- TEST 'hrrr_control_intel' [05:40, 03:29](1005 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 03:33](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:00](1079 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:55](837 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:41, 06:25](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:27, 07:40](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:27, 07:24](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [11:08, 09:25] +PASS -- TEST 'control_csawmg_intel' [07:28, 05:32](695 MB) +PASS -- TEST 'control_csawmgt_intel' [07:28, 05:29](693 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:08](657 MB) + +PASS -- COMPILE 'wam_intel' [10:08, 09:06] +PASS -- TEST 'control_wam_intel' [04:20, 02:09](369 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:09, 12:10] +PASS -- TEST 'control_p8_faster_intel' [04:45, 02:40](1608 MB) +PASS -- TEST 'regional_control_faster_intel' [06:31, 04:25](614 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:07, 06:58] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:27, 02:43](779 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:40](781 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:58](785 MB) PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:46](789 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:26, 04:03](823 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:28, 04:08](823 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:47](796 MB) -PASS -- TEST 'control_diag_debug_intel' [04:24, 02:49](843 MB) -PASS -- TEST 'control_debug_p8_intel' [04:26, 02:51](1619 MB) -PASS -- TEST 'regional_debug_intel' [17:36, 16:12](632 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:55](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:57](1164 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:53](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:57](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:21, 05:00](1165 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:06](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:21, 05:06](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:01](1167 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:59](1165 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:47](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:55](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:50](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:49](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:23, 04:59](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:25](1170 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:07, 05:04] -PASS -- TEST 'control_wam_debug_intel' [06:20, 05:02](391 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:08, 08:49] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:51, 03:46](1053 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:36, 05:29](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 02:57](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:39, 05:00](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:38](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:05](888 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:09](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:39](765 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 11:26] -PASS -- TEST 'conus13km_control_intel' [04:02, 01:57](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:02](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 09:15] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:55](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:08, 05:21] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:21, 04:42](1048 MB) -PASS -- TEST 'conus13km_debug_intel' [16:04, 13:31](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:03, 13:44](802 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:07](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:50, 13:53](1195 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:53](1068 MB) - -PASS -- COMPILE 'hafsw_intel' [12:09, 11:06] -PASS -- TEST 'hafs_regional_atm_intel' [08:09, 05:16](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:27](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:18, 06:38](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:09, 11:33](787 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:20, 12:56](795 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:56, 05:14](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:40](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 02:55](373 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:03, 07:52](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:41](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:27](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:51, 04:25](567 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:41](404 MB) -PASS -- TEST 'gnv1_nested_intel' [05:52, 03:53](771 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:08, 06:23] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:15](583 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 14:24] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:00, 07:40](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:41](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:10, 11:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:00](787 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:10, 10:42] -PASS -- TEST 'hafs_regional_docn_intel' [08:15, 05:58](747 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:06, 06:03](731 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:10, 16:08](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:09, 09:41] +PASS -- TEST 'control_csawmg_debug_intel' [06:27, 04:07](825 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [06:27, 04:05](826 MB) +PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](795 MB) +PASS -- TEST 'control_diag_debug_intel' [04:24, 02:46](844 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 02:44](1619 MB) +PASS -- TEST 'regional_debug_intel' [18:35, 16:49](634 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 04:51](1167 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:41](1166 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:46](1168 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:48](1168 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:28, 05:01](1251 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 05:02](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 04:54](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 04:51](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:47](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:48](1167 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 04:52](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 07:51](1167 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:45](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 05:43](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:54](1167 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:41, 08:14](1170 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:08, 05:28] +PASS -- TEST 'control_wam_debug_intel' [08:22, 04:52](394 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:18] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:55, 03:43](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:37, 05:27](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:33, 02:58](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:44, 05:06](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:38, 02:37](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:36, 03:08](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:37, 04:11](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:24, 01:44](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:35] +PASS -- TEST 'conus13km_control_intel' [04:03, 01:57](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:43, 01:05](1075 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:43, 01:17](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:11] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 03:52](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:07, 05:11] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:48](1050 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1048 MB) +PASS -- TEST 'conus13km_debug_intel' [16:09, 14:01](1129 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:44](804 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:50, 07:57](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 14:01](1195 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:07, 05:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:48](1066 MB) + +PASS -- COMPILE 'hafsw_intel' [13:08, 11:35] +PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:15](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 04:32](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:20, 06:46](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:09, 11:42](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 12:46](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 05:20](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:19, 06:42](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:54, 03:04](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:10, 07:55](434 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:50, 03:45](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:58, 03:32](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 04:38](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:49](405 MB) +PASS -- TEST 'gnv1_nested_intel' [07:55, 03:59](765 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:07, 06:31] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:02, 13:01](582 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:09, 14:44] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 07:37](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 07:45](780 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 12:00] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:04, 06:02](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:08, 11:04] +PASS -- TEST 'hafs_regional_docn_intel' [09:10, 06:06](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:07, 06:03](731 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:09, 16:10](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:08, 10:58] PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:18, 02:30](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:30](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](637 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:21](637 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:31](745 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:20](636 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:20](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:22](637 MB) PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:19](637 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:53, 05:49](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:49, 05:48](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:28](756 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:38](2014 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 02:29](755 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:19](636 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:49](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 05:45](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:38](2013 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 04:38](2015 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:08, 05:36] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:23](739 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:07, 05:17] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 05:23](741 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:10, 10:02] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:28](744 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:09, 10:04] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:27](756 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 02:01] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:16](319 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 01:07](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:52](456 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:58] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:17](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:33, 01:08](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 00:53](456 MB) -PASS -- COMPILE 'atml_intel' [13:08, 11:22] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:04, 06:15](1642 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:00, 06:16](1642 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:34, 03:29](837 MB) +PASS -- COMPILE 'atml_intel' [12:09, 10:47] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:08, 06:14](1640 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:06, 06:20](1640 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:33, 03:27](836 MB) -PASS -- COMPILE 'atmw_intel' [12:08, 10:20] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:43](1648 MB) +PASS -- COMPILE 'atmw_intel' [12:09, 10:15] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:43](1649 MB) -PASS -- COMPILE 'atmwm_intel' [11:08, 10:01] -PASS -- TEST 'control_atmwav_intel' [03:34, 01:39](638 MB) +PASS -- COMPILE 'atmwm_intel' [12:09, 10:20] +PASS -- TEST 'control_atmwav_intel' [03:36, 01:38](640 MB) -PASS -- COMPILE 'atmaero_intel' [11:09, 09:29] -PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:24](2942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:48, 04:52](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:41, 05:01](3018 MB) +PASS -- COMPILE 'atmaero_intel' [11:09, 09:45] +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:14](2944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:47, 04:51](3013 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:41, 05:09](3019 MB) -PASS -- COMPILE 'atmaq_intel' [11:08, 09:35] +PASS -- COMPILE 'atmaq_intel' [11:08, 09:40] -PASS -- COMPILE 'atmaq_debug_intel' [07:07, 05:51] -PASS -- TEST 'regional_atmaq_debug_intel' [21:11, 18:21](4483 MB) +PASS -- COMPILE 'atmaq_debug_intel' [07:08, 05:38] +PASS -- TEST 'regional_atmaq_debug_intel' [21:13, 18:12](4480 MB) SYNOPSIS: -Starting Date/Time: 20240219 09:48:12 -Ending Date/Time: 20240219 11:12:09 -Total Time: 01h:24m:16s +Starting Date/Time: 20240222 16:32:44 +Ending Date/Time: 20240222 17:55:46 +Total Time: 01h:23m:24s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 646ee765d0..b4ddf7103f 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,366 +25,366 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_5902 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_29067 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:07, 12:14] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:14](3105 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:07, 15:39] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:03, 16:10](1756 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:15, 16:55](2008 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:10, 07:35](1086 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 18:10](1596 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:27] -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 22:19](1661 MB) - -PASS -- COMPILE 's2swa_intel' [14:07, 12:17] -PASS -- TEST 'cpld_control_p8_intel' [08:15, 05:38](3187 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:25, 05:38](3192 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:28, 03:20](3221 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:15, 05:38](3175 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:28, 03:25](3256 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:26](3498 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:10, 05:40](3150 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:39](3026 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:21, 05:43](3148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:09, 09:43](3316 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:45, 06:05](3571 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:25, 09:59](4120 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:57, 06:38](4342 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:28](3114 MB) - -PASS -- COMPILE 's2sw_intel' [13:07, 11:41] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:28](1728 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:01, 04:29](1731 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:07, 05:35] -PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:04](3171 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:48] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:00, 05:39](1709 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:07, 10:50] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:58, 04:31](1716 MB) - -PASS -- COMPILE 's2s_intel' [12:07, 10:38] -PASS -- TEST 'cpld_control_c48_intel' [11:45, 09:18](2816 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:07, 16:00] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:16](3208 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:06, 15:03] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:16](1753 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 07:40](1142 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:00, 18:35](1663 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:06, 03:52] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:56, 24:45](1701 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:06, 10:33] -PASS -- TEST 'control_flake_intel' [06:21, 03:17](674 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:23](617 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:29](644 MB) -PASS -- TEST 'control_latlon_intel' [04:21, 02:24](647 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:27, 02:27](650 MB) -PASS -- TEST 'control_c48_intel' [08:22, 06:12](873 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:23, 06:15](874 MB) -PASS -- TEST 'control_c192_intel' [11:35, 09:00](844 MB) -PASS -- TEST 'control_c384_intel' [12:21, 09:07](1283 MB) -PASS -- TEST 'control_c384gdas_intel' [12:42, 08:03](1368 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:37](652 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:00](496 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:33](617 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:25](641 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:27](616 MB) -PASS -- TEST 'control_p8_intel' [05:01, 02:58](1616 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:05, 02:56](1591 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:02, 02:50](1602 MB) -PASS -- TEST 'control_restart_p8_intel' [03:47, 01:36](886 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:58, 02:55](1586 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:54, 01:35](895 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 02:57](1597 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:51, 02:46](1707 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:48, 05:09](1616 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:48](1670 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:00](1605 MB) -PASS -- TEST 'merra2_thompson_intel' [05:53, 03:28](1600 MB) -PASS -- TEST 'regional_control_intel' [07:38, 05:03](849 MB) -PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1007 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 05:24](817 MB) -PASS -- TEST 'regional_2threads_intel' [05:36, 03:12](839 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 05:05](1360 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:04](845 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 05:05](847 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 06:37](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [11:07, 09:55] -PASS -- TEST 'rap_control_intel' [09:42, 07:40](1065 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:06, 04:07](1274 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:02](991 MB) -PASS -- TEST 'rap_2threads_intel' [09:35, 07:11](1176 MB) -PASS -- TEST 'rap_restart_intel' [05:36, 04:00](1076 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:40, 07:37](1094 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:32, 08:02](1018 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:46](1111 MB) -PASS -- TEST 'hrrr_control_intel' [05:34, 03:56](1030 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 04:03](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:36](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:21, 02:08](1000 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:42, 07:34](1059 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:00](1991 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:53](2029 MB) - -PASS -- COMPILE 'csawmg_intel' [11:07, 09:24] -PASS -- TEST 'control_csawmg_intel' [07:38, 05:47](709 MB) -PASS -- TEST 'control_csawmgt_intel' [07:37, 05:47](734 MB) -PASS -- TEST 'control_ras_intel' [05:18, 03:15](712 MB) - -PASS -- COMPILE 'wam_intel' [11:07, 09:04] -PASS -- TEST 'control_wam_intel' [04:16, 02:00](656 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:07, 10:15] -PASS -- TEST 'control_p8_faster_intel' [04:49, 02:36](1601 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 04:37](852 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:12] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:20, 02:38](794 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:37](802 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:59](788 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:40](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:00](829 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:38, 04:00](858 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:42](788 MB) -PASS -- TEST 'control_diag_debug_intel' [04:26, 02:48](864 MB) -PASS -- TEST 'control_debug_p8_intel' [04:41, 02:48](1574 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 16:10](837 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:46](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:18, 04:40](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:41](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:47](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:16, 04:41](1196 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:05](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:51](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:53](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:48](1194 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:42](1201 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:36](1188 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:47](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:45](1193 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:46](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:19, 06:01](1200 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:47](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:34, 08:09](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 02:57] -PASS -- TEST 'control_wam_debug_intel' [07:17, 04:43](514 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:07, 09:13] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:59, 03:53](1127 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:18](1034 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 03:22](978 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:29, 05:59](1084 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:30, 03:05](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:27, 03:32](900 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:33, 04:47](1010 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:51](927 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:07, 11:22] -PASS -- TEST 'conus13km_control_intel' [04:51, 02:02](1194 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 00:51](1112 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:11](1068 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:20] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:36, 04:12](954 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:20, 04:39](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:18, 04:38](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [16:45, 13:49](1219 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:46, 13:59](895 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:41, 07:45](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 13:39](1284 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:06, 02:58] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:23, 04:45](1116 MB) - -PASS -- COMPILE 'hafsw_intel' [12:06, 10:47] -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 04:51](730 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:28, 06:01](1086 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:25, 06:55](826 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:03](839 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:22, 14:45](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 05:22](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:25](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:38, 02:33](349 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:06, 07:09](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:36](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 03:29](504 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:06](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:25, 01:11](404 MB) -PASS -- TEST 'gnv1_nested_intel' [07:43, 03:55](796 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:27] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:50, 12:17](545 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:06, 10:47] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:52, 08:35](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:32](700 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:07, 11:00] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 06:18](663 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:18] -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:17](800 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:12, 06:18](803 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:52, 16:11](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:10] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:39](1113 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:39](1073 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:37](997 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:35](1005 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:57](982 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:12, 02:38](1127 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:37](1122 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:12, 02:33](1008 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:19, 06:28](1045 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 06:39](1040 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:39](1121 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:14, 03:51](2464 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:14, 03:54](2480 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 02:46] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:14, 06:08](1044 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:06, 05:57] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:39](1116 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:06, 00:59] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:44](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:44](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:21, 00:34](312 MB) - -PASS -- COMPILE 'atml_intel' [12:07, 10:54] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:06, 04:15](1581 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 04:12](1586 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:47, 02:16](877 MB) - -PASS -- COMPILE 'atmw_intel' [11:07, 09:58] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 01:45](1646 MB) - -PASS -- COMPILE 'atmwm_intel' [12:07, 10:04] -PASS -- TEST 'control_atmwav_intel' [03:29, 01:41](628 MB) - -PASS -- COMPILE 'atmaero_intel' [11:06, 09:50] -PASS -- TEST 'atmaero_control_p8_intel' [06:02, 03:56](2976 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:00, 04:42](3036 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:42, 05:00](3068 MB) - -PASS -- COMPILE 'atmaq_intel' [11:06, 09:32] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:11] -PASS -- TEST 'regional_atmaq_debug_intel' [23:51, 20:27](4341 MB) - -PASS -- COMPILE 'atm_gnu' [05:06, 03:23] -PASS -- TEST 'control_c48_gnu' [13:23, 11:36](792 MB) -PASS -- TEST 'control_stochy_gnu' [05:17, 04:02](552 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:53](560 MB) -PASS -- TEST 'control_p8_gnu' [06:56, 04:54](1300 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:57, 04:40](1304 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 05:51](592 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:06, 03:27] -PASS -- TEST 'rap_control_gnu' [13:30, 11:36](895 MB) -PASS -- TEST 'rap_decomp_gnu' [13:31, 11:39](894 MB) -PASS -- TEST 'rap_2threads_gnu' [12:37, 10:27](974 MB) -PASS -- TEST 'rap_restart_gnu' [08:38, 06:04](623 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:38, 11:34](894 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 11:54](894 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:38, 08:56](629 MB) -PASS -- TEST 'hrrr_control_gnu' [07:35, 05:57](889 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:59](878 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [07:27, 05:14](974 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:28, 05:56](892 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:24, 03:14](609 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:11](706 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:38, 11:15](888 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:06, 03:21] -PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:36](584 MB) -PASS -- TEST 'regional_debug_gnu' [09:36, 07:37](593 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:22, 02:28](905 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:32](899 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:16, 02:31](906 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:34](904 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:32, 02:44](987 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:59](896 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:33](901 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:21, 02:35](898 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:31](537 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:47](536 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:36](1287 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](907 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:46](908 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:04](909 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:06, 01:40] -PASS -- TEST 'control_wam_debug_gnu' [04:15, 02:24](239 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:05, 03:24] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [13:27, 11:47](754 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:25, 06:05](746 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [12:36, 10:35](803 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:29, 05:17](805 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:28, 06:01](746 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [10:34, 08:47](596 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:21, 03:19](579 MB) -PASS -- TEST 'conus13km_control_gnu' [07:52, 04:12](897 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:49](936 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:40, 02:16](595 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [06:06, 05:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:37, 06:54](777 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:06, 03:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:19, 02:29](774 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:17, 02:28](768 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:43, 07:11](911 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:42, 07:04](634 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:39, 04:22](956 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [09:38, 07:07](977 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:06, 03:19] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:33](789 MB) - -PASS -- COMPILE 's2swa_gnu' [15:07, 14:03] -PASS -- TEST 'cpld_control_p8_gnu' [13:09, 10:59](1505 MB) - -PASS -- COMPILE 's2s_gnu' [15:07, 13:41] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:00, 06:34](1402 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:21] -PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:09](1520 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [15:07, 13:53] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [24:56, 22:02](1375 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:06, 02:08] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:52, 13:06](1390 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:06, 13:26] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:13, 03:03](692 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:09, 12:07] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:31, 05:16](3153 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:10, 16:03] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:12, 16:14](1735 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 16:51](2001 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 08:05](1092 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:12, 18:23](1630 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:08, 04:18] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:12, 22:24](1689 MB) + +PASS -- COMPILE 's2swa_intel' [14:09, 12:06] +PASS -- TEST 'cpld_control_p8_intel' [08:22, 05:43](3183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:36, 05:41](3194 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:44, 03:28](3199 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:47](3161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:43, 03:28](3275 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:19, 05:29](3491 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:18, 05:39](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:37](3049 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:33, 05:42](3191 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:22, 09:48](3327 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:42, 05:58](3605 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:55, 09:51](4059 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:01, 07:25](4344 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:23, 05:17](3157 MB) + +PASS -- COMPILE 's2sw_intel' [13:09, 11:23] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:00, 04:30](1716 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:08, 04:28](1743 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:08, 04:17] +PASS -- TEST 'cpld_debug_p8_intel' [11:17, 08:13](3209 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:08, 04:14] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 05:36](1741 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:10, 10:43] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:27](1764 MB) + +PASS -- COMPILE 's2s_intel' [13:10, 10:59] +PASS -- TEST 'cpld_control_c48_intel' [11:47, 09:25](2808 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 16:45] +PASS -- TEST 'cpld_control_p8_faster_intel' [08:23, 05:22](3183 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:08, 14:47] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:16, 16:23](1727 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:17, 08:17](1152 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:04, 19:20](1656 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:10] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:04, 24:36](1703 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:08, 10:21] +PASS -- TEST 'control_flake_intel' [05:24, 03:20](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:30, 02:24](646 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:32, 02:30](653 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:28](619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:32, 02:28](640 MB) +PASS -- TEST 'control_c48_intel' [08:32, 06:14](874 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:34, 06:17](871 MB) +PASS -- TEST 'control_c192_intel' [11:40, 09:10](820 MB) +PASS -- TEST 'control_c384_intel' [13:43, 09:12](1261 MB) +PASS -- TEST 'control_c384gdas_intel' [14:05, 08:11](1383 MB) +PASS -- TEST 'control_stochy_intel' [03:18, 01:38](650 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:34, 00:59](504 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:36](651 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:27](642 MB) +PASS -- TEST 'control_iovr5_intel' [04:23, 02:27](646 MB) +PASS -- TEST 'control_p8_intel' [07:04, 03:04](1624 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:08, 03:05](1616 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:09, 03:06](1620 MB) +PASS -- TEST 'control_restart_p8_intel' [03:46, 01:40](880 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:08, 03:04](1596 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:55, 01:39](926 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:07, 03:07](1597 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:04, 02:50](1685 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:07, 05:14](1616 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:10, 03:51](1681 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:13, 02:59](1626 MB) +PASS -- TEST 'merra2_thompson_intel' [05:54, 03:27](1633 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:17](846 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 02:44](986 MB) +PASS -- TEST 'regional_decomp_intel' [07:40, 05:31](839 MB) +PASS -- TEST 'regional_2threads_intel' [05:43, 03:18](846 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 05:13](1338 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:40, 05:13](848 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 05:14](846 MB) +PASS -- TEST 'regional_wofs_intel' [08:43, 06:40](1890 MB) + +PASS -- COMPILE 'rrfs_intel' [11:08, 09:54] +PASS -- TEST 'rap_control_intel' [09:47, 07:43](1104 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:12, 04:09](1275 MB) +PASS -- TEST 'rap_decomp_intel' [10:36, 08:03](1024 MB) +PASS -- TEST 'rap_2threads_intel' [09:43, 07:16](1188 MB) +PASS -- TEST 'rap_restart_intel' [05:43, 04:00](1087 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 07:43](1103 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:35, 08:03](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:41, 06:21](1098 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 03:58](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:05](1001 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:38, 03:39](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:25, 02:09](984 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:47, 07:34](1106 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:29, 09:06](1981 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:54, 09:02](2060 MB) + +PASS -- COMPILE 'csawmg_intel' [11:07, 09:37] +PASS -- TEST 'control_csawmg_intel' [08:41, 05:54](733 MB) +PASS -- TEST 'control_csawmgt_intel' [07:41, 05:43](742 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:18](732 MB) + +PASS -- COMPILE 'wam_intel' [11:08, 09:17] +PASS -- TEST 'control_wam_intel' [04:20, 02:03](627 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:08, 09:50] +PASS -- TEST 'control_p8_faster_intel' [05:07, 02:39](1589 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:40](841 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:31] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:40](800 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:40](809 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:59](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:20, 02:42](790 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:41, 03:59](844 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:38, 03:57](853 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:40](792 MB) +PASS -- TEST 'control_diag_debug_intel' [04:27, 02:49](868 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:50](1638 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 16:31](841 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:46](1188 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:34](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:27](1200 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:28](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 05:14](1186 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:03, 05:39](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:01](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:17, 05:13](1169 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:01](1196 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:20, 04:55](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 05:00](1164 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:01](1176 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 07:58](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 05:16](1174 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:22, 06:04](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:22, 05:09](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:28](1197 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:08, 03:09] +PASS -- TEST 'control_wam_debug_intel' [06:20, 04:52](477 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:08, 09:12] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:30](1149 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 06:57](1011 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:34, 03:59](958 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:36](1075 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 03:08](953 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:25, 03:33](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:00](1044 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:23, 01:51](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:08, 11:44] +PASS -- TEST 'conus13km_control_intel' [03:51, 02:02](1180 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:37, 00:54](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:42, 01:15](1101 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:08, 09:24] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:17](954 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:25] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:26, 04:43](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:35](1073 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 13:56](1216 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:46, 13:45](911 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 07:48](1143 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:43, 13:50](1293 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:09, 03:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:49](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:55] +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 04:51](734 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:26, 05:48](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 06:46](806 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:14, 13:02](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:24, 14:44](845 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 05:20](473 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:21, 06:30](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:44, 02:45](351 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:06](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 03:40](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 03:26](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 04:10](584 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:18](404 MB) +PASS -- TEST 'gnv1_nested_intel' [05:45, 03:59](802 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:08, 04:02] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 12:16](538 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:01, 08:26](647 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:00, 08:28](696 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:09, 11:20] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:05, 06:17](664 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:09, 10:30] +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 06:16](819 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:12](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:15](1218 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:08, 06:03] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:41](1134 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:39](1058 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:36](1011 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:14, 02:30](992 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:36](1002 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:13, 02:43](1104 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:37](1113 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:34](1001 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:13, 06:55](1055 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:13](1029 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:38](1127 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](2421 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 03:52](2411 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:07, 03:01] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:58](1046 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:08, 05:52] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:38](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:09, 01:01] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:44](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:19, 00:47](318 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:20, 00:31](316 MB) + +PASS -- COMPILE 'atml_intel' [12:09, 10:53] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:09, 04:15](1584 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:05, 04:08](1606 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:45, 02:14](887 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:08] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:42](1647 MB) + +PASS -- COMPILE 'atmwm_intel' [12:15, 10:06] +PASS -- TEST 'control_atmwav_intel' [06:34, 01:39](638 MB) + +PASS -- COMPILE 'atmaero_intel' [11:09, 09:50] +PASS -- TEST 'atmaero_control_p8_intel' [08:58, 03:56](2967 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:57, 04:44](3080 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:44, 05:03](3061 MB) + +PASS -- COMPILE 'atmaq_intel' [11:08, 09:26] + +PASS -- COMPILE 'atmaq_debug_intel' [06:09, 03:34] +PASS -- TEST 'regional_atmaq_debug_intel' [23:57, 19:58](4345 MB) + +PASS -- COMPILE 'atm_gnu' [06:09, 03:30] +PASS -- TEST 'control_c48_gnu' [13:26, 11:41](790 MB) +PASS -- TEST 'control_stochy_gnu' [06:18, 03:54](548 MB) +PASS -- TEST 'control_ras_gnu' [07:18, 04:53](555 MB) +PASS -- TEST 'control_p8_gnu' [06:57, 04:50](1301 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:44](1304 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:52](596 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:06, 03:31] +PASS -- TEST 'rap_control_gnu' [13:33, 11:37](900 MB) +PASS -- TEST 'rap_decomp_gnu' [14:34, 12:01](894 MB) +PASS -- TEST 'rap_2threads_gnu' [12:41, 10:30](974 MB) +PASS -- TEST 'rap_restart_gnu' [08:38, 06:03](626 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:42, 11:36](895 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [14:34, 11:55](894 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:45, 08:43](620 MB) +PASS -- TEST 'hrrr_control_gnu' [07:32, 06:00](889 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:56](879 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:33, 05:24](969 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [08:32, 05:58](889 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [06:22, 03:13](608 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:23, 03:13](704 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [15:42, 11:28](898 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:07, 03:17] +PASS -- TEST 'control_diag_debug_gnu' [05:26, 01:42](588 MB) +PASS -- TEST 'regional_debug_gnu' [09:38, 07:33](593 MB) +PASS -- TEST 'rap_control_debug_gnu' [05:22, 02:43](907 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:18, 02:38](901 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [05:18, 02:40](903 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:36](903 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:34, 02:45](991 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 03:52](904 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:27](904 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:19, 02:31](900 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](541 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:26, 02:13](528 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1286 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:23, 02:32](905 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:22, 02:49](908 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:33, 04:07](907 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:05, 01:40] +PASS -- TEST 'control_wam_debug_gnu' [05:17, 02:27](238 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:06, 04:00] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [14:31, 11:42](751 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [08:31, 06:07](747 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [13:38, 10:40](803 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:33, 05:20](802 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:31, 06:05](745 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [15:48, 09:17](595 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [05:23, 03:18](579 MB) +PASS -- TEST 'conus13km_control_gnu' [06:54, 04:10](896 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:52, 01:55](930 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [04:52, 02:17](597 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [07:10, 05:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:41, 06:54](778 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [05:09, 03:35] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:32](760 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:31](753 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:45, 07:15](915 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:58, 07:10](634 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [06:45, 04:19](949 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:59](982 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:09, 03:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:26, 02:33](786 MB) + +PASS -- COMPILE 's2swa_gnu' [15:10, 13:52] +PASS -- TEST 'cpld_control_p8_gnu' [14:16, 11:04](1506 MB) + +PASS -- COMPILE 's2s_gnu' [15:08, 13:51] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:07, 06:30](1405 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:05, 02:59] +PASS -- TEST 'cpld_debug_p8_gnu' [08:01, 06:03](1513 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [15:08, 14:03] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:01, 22:28](1376 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:49] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:55, 12:58](1388 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:08, 13:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:57](695 MB) SYNOPSIS: -Starting Date/Time: 20240219 14:20:19 -Ending Date/Time: 20240219 15:59:27 -Total Time: 01h:39m:36s +Starting Date/Time: 20240222 18:39:16 +Ending Date/Time: 20240222 20:22:06 +Total Time: 01h:43m:23s Compiles Completed: 53/53 Tests Completed: 243/243 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 166dd6458a..2520164ea8 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +ffc1413d43ff54ebdbba9d04e8ab95109225f0b1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,357 +25,357 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1846065 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2262511 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:06, 12:13] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 07:28](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:06, 17:57] -PASS -- TEST 'cpld_control_gfsv17_intel' [26:06, 13:24](1767 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:19, 14:00](2184 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:12, 06:36](1184 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:45, 15:08](1695 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:05, 06:35] -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:13, 20:12](1734 MB) - -PASS -- COMPILE 's2swa_intel' [14:06, 12:27] -PASS -- TEST 'cpld_control_p8_intel' [09:52, 07:33](2091 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 07:41](2060 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:05, 04:18](1971 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:53, 07:37](1985 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:04, 04:16](1744 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:51, 08:59](2496 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 07:28](2074 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:23](1886 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 07:29](2095 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:32, 15:37](2815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 05:51](2920 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 08:49](3623 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:33, 06:09](3612 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:44, 04:59](2029 MB) - -PASS -- COMPILE 's2sw_intel' [13:05, 11:47] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:42, 07:09](1773 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:53, 03:52](1817 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:05, 06:17] -PASS -- TEST 'cpld_debug_p8_intel' [09:00, 06:49](2064 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:05, 06:05] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:52, 04:38](1792 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:05, 09:59] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:45, 03:57](1825 MB) - -PASS -- COMPILE 's2s_intel' [11:05, 09:56] -PASS -- TEST 'cpld_control_c48_intel' [09:34, 07:13](2839 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:06, 14:01] -PASS -- TEST 'cpld_control_p8_faster_intel' [15:59, 07:18](2065 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:07, 15:40] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:52, 14:00](1811 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:01, 06:42](1296 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:50, 15:27](1726 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:05, 04:05] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:53, 21:14](1781 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:06, 07:31] -PASS -- TEST 'control_flake_intel' [18:17, 02:50](728 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:18, 02:04](674 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:25, 02:18](677 MB) -PASS -- TEST 'control_latlon_intel' [18:17, 02:09](671 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:22, 02:11](667 MB) -PASS -- TEST 'control_c48_intel' [21:22, 05:45](859 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:20, 05:46](861 MB) -PASS -- TEST 'control_c192_intel' [21:26, 07:52](972 MB) -PASS -- TEST 'control_c384_intel' [16:11, 08:14](1462 MB) -PASS -- TEST 'control_c384gdas_intel' [21:49, 07:18](1532 MB) -PASS -- TEST 'control_stochy_intel' [15:17, 01:26](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [13:24, 00:58](545 MB) -PASS -- TEST 'control_lndp_intel' [17:20, 01:21](678 MB) -PASS -- TEST 'control_iovr4_intel' [17:19, 02:04](667 MB) -PASS -- TEST 'control_iovr5_intel' [16:21, 02:05](667 MB) -PASS -- TEST 'control_p8_intel' [13:47, 02:35](1635 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:48, 02:33](1644 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [12:52, 02:25](1652 MB) -PASS -- TEST 'control_restart_p8_intel' [09:44, 01:30](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [13:39, 02:27](1637 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 01:29](980 MB) -PASS -- TEST 'control_decomp_p8_intel' [14:42, 02:32](1628 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:37, 02:20](1738 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:34, 04:22](1648 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [17:55, 03:32](1712 MB) -PASS -- TEST 'control_p8_mynn_intel' [15:51, 02:38](1657 MB) -PASS -- TEST 'merra2_thompson_intel' [14:56, 03:03](1655 MB) -PASS -- TEST 'regional_control_intel' [11:28, 04:27](958 MB) -PASS -- TEST 'regional_restart_intel' [04:23, 02:35](1097 MB) -PASS -- TEST 'regional_decomp_intel' [11:27, 04:42](948 MB) -PASS -- TEST 'regional_2threads_intel' [09:27, 02:50](924 MB) -PASS -- TEST 'regional_noquilt_intel' [10:30, 04:20](1491 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:31, 04:27](959 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:26, 04:28](961 MB) -PASS -- TEST 'regional_wofs_intel' [11:25, 05:31](2096 MB) - -PASS -- COMPILE 'rrfs_intel' [09:05, 07:07] -PASS -- TEST 'rap_control_intel' [15:35, 06:39](1200 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:42, 03:45](1399 MB) -PASS -- TEST 'rap_decomp_intel' [14:33, 07:00](1143 MB) -PASS -- TEST 'rap_2threads_intel' [13:47, 06:20](1359 MB) -PASS -- TEST 'rap_restart_intel' [05:47, 03:26](1146 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:45, 06:43](1197 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:45, 06:57](1144 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 04:52](1195 MB) -PASS -- TEST 'hrrr_control_intel' [10:30, 03:25](1076 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:29](1058 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:43, 03:04](1120 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:47](1028 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:50, 06:25](1203 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:20, 07:39](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:22](2174 MB) - -PASS -- COMPILE 'csawmg_intel' [08:05, 06:54] -PASS -- TEST 'control_csawmg_intel' [07:22, 05:06](808 MB) -PASS -- TEST 'control_csawmgt_intel' [07:24, 05:05](824 MB) -PASS -- TEST 'control_ras_intel' [04:12, 02:54](802 MB) - -PASS -- COMPILE 'wam_intel' [07:05, 05:58] -PASS -- TEST 'control_wam_intel' [03:18, 01:50](789 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:07, 09:20] -PASS -- TEST 'control_p8_faster_intel' [04:49, 02:17](1634 MB) -PASS -- TEST 'regional_control_faster_intel' [06:25, 04:10](956 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:06, 03:34] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:17, 02:18](834 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:18, 02:15](828 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:30](837 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:13, 02:16](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:22](879 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [05:27, 03:18](873 MB) -PASS -- TEST 'control_ras_debug_intel' [04:15, 02:15](836 MB) -PASS -- TEST 'control_diag_debug_intel' [04:20, 02:16](885 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 02:20](1657 MB) -PASS -- TEST 'regional_debug_intel' [16:24, 14:03](898 MB) -PASS -- TEST 'rap_control_debug_intel' [05:15, 03:58](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:13, 03:53](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:13, 03:58](1226 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:58](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:14, 04:01](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:25, 04:08](1304 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:03](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:13, 04:02](1218 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:15, 04:03](1224 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 04:00](1222 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:50](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:58](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:15, 06:35](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:57](1210 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:16, 05:11](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:59](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:47, 06:48](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:05, 02:46] - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 06:58] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 03:14](1305 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:44, 05:25](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:50, 02:53](1025 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:31, 05:05](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:37](1042 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:32, 03:01](998 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:47, 04:03](1098 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:33](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:06, 09:28] -PASS -- TEST 'conus13km_control_intel' [03:45, 01:42](1302 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:21, 00:44](1201 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:23, 01:04](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:05, 07:06] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:29, 03:40](1075 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:07, 03:09] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:53](1107 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:13, 03:52](1093 MB) -PASS -- TEST 'conus13km_debug_intel' [13:30, 11:35](1342 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 11:44](1023 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:25, 06:39](1244 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:26, 11:34](1397 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:05, 03:03] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 04:02](1147 MB) - -PASS -- COMPILE 'hafsw_intel' [12:05, 10:00] -PASS -- TEST 'hafs_regional_atm_intel' [08:01, 05:15](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:16, 05:02](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:06, 06:18](968 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:59, 13:41](983 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 14:51](1012 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:49, 05:23](605 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:14, 06:46](616 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:41, 02:47](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:57, 07:40](581 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:42, 03:48](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:35, 03:36](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:46](677 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:21, 01:25](450 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:05, 03:15] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 11:17](638 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:06, 10:42] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:47, 17:00](761 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:49, 17:18](852 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:05, 10:39] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:52, 10:33](786 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:06, 10:02] -PASS -- TEST 'hafs_regional_docn_intel' [07:59, 05:23](950 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:59, 05:21](945 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:46, 16:26](1349 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:06, 06:00] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:05](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:10, 01:21](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:09, 02:03](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:09, 02:05](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:10, 02:05](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:09, 02:09](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:10, 02:08](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:10, 02:01](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:58, 04:53](1161 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:55, 04:48](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:08, 02:09](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 02:58](2434 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:10, 02:59](2378 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:06, 03:39] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:05](1066 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 06:11] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:09, 02:05](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 00:51] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:49](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:47](561 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:16, 00:33](558 MB) - -PASS -- COMPILE 'atml_intel' [09:06, 07:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:02, 05:52](1640 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:55, 05:40](1641 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:46, 02:50](956 MB) - -PASS -- COMPILE 'atmw_intel' [15:06, 09:02] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:29](1700 MB) - -PASS -- COMPILE 'atmwm_intel' [14:05, 08:57] -PASS -- TEST 'control_atmwav_intel' [03:39, 01:27](699 MB) - -PASS -- COMPILE 'atmaero_intel' [11:05, 06:47] -PASS -- TEST 'atmaero_control_p8_intel' [05:45, 03:34](1790 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:45, 04:16](1809 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:40, 04:29](1830 MB) - -PASS -- COMPILE 'atmaq_intel' [08:06, 06:52] - -PASS -- COMPILE 'atmaq_debug_intel' [07:05, 02:40] -PASS -- TEST 'regional_atmaq_debug_intel' [19:18, 16:33](4570 MB) - -PASS -- COMPILE 'atm_gnu' [08:06, 03:40] -PASS -- TEST 'control_c48_gnu' [11:27, 09:30](859 MB) -PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](726 MB) -PASS -- TEST 'control_ras_gnu' [05:15, 03:41](732 MB) -PASS -- TEST 'control_p8_gnu' [05:46, 03:38](1512 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1508 MB) -PASS -- TEST 'control_flake_gnu' [06:14, 04:27](791 MB) - -PASS -- COMPILE 'rrfs_gnu' [08:06, 03:41] -PASS -- TEST 'rap_control_gnu' [09:41, 07:38](1088 MB) -PASS -- TEST 'rap_decomp_gnu' [09:37, 07:48](1088 MB) -PASS -- TEST 'rap_2threads_gnu' [09:29, 07:11](1128 MB) -PASS -- TEST 'rap_restart_gnu' [05:34, 03:51](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:48, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:33, 07:59](1096 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:46, 05:40](884 MB) -PASS -- TEST 'hrrr_control_gnu' [06:32, 04:09](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:29, 04:05](1143 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:46, 03:39](1026 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:45, 03:59](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:15, 02:01](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:16, 02:00](932 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:47, 07:38](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [11:06, 03:45] -PASS -- TEST 'control_diag_debug_gnu' [03:19, 01:11](771 MB) -PASS -- TEST 'regional_debug_gnu' [08:27, 06:32](922 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:14, 01:55](1095 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:13, 01:55](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:13, 02:01](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:13, 01:58](1092 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:20, 02:04](1269 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:09](1094 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:16, 01:59](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:16, 01:57](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:13, 01:11](722 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:13, 01:20](720 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:27, 01:15](1505 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:14, 01:57](1099 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:16, 02:09](1101 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:45, 03:17](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [12:05, 03:24] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [11:05, 04:27] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:10](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:51, 03:46](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:39, 06:36](968 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:34](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:50](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:36, 05:23](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:14, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [04:37, 02:29](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:22, 01:09](1173 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:24, 01:25](926 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:06, 06:17] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:27, 04:20](987 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:05, 05:23] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:15, 02:03](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:14, 01:54](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:30, 05:23](1281 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 05:27](954 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:25, 03:14](1196 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:26, 05:21](1348 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:06, 05:23] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:04](1000 MB) - -PASS -- COMPILE 's2swa_gnu' [17:06, 15:29] - -PASS -- COMPILE 's2s_gnu' [16:05, 14:56] - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 04:42] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 14:15] - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:05, 02:40] - -PASS -- COMPILE 'datm_cdeps_gnu' [16:06, 14:20] +PASS -- COMPILE 's2swa_32bit_intel' [12:06, 10:17] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 07:44](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:06, 17:55] +PASS -- TEST 'cpld_control_gfsv17_intel' [49:15, 13:38](1764 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:27, 14:12](2184 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:14, 06:27](1172 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:01, 15:19](1689 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 04:50] +PASS -- TEST 'cpld_debug_gfsv17_intel' [11:13, 20:21](1724 MB) + +PASS -- COMPILE 's2swa_intel' [12:06, 09:54] +PASS -- TEST 'cpld_control_p8_intel' [39:05, 07:36](2065 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:15, 07:45](2058 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:10, 04:19](1973 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:05, 07:40](1969 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:10, 04:24](1733 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [41:09, 08:56](2488 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:58, 07:45](2078 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:31](1878 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:09, 07:31](2065 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [03:50, 15:44](2803 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:07, 05:46](2918 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [58:33, 08:47](3698 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:32, 06:06](3619 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [37:07, 04:58](2034 MB) + +PASS -- COMPILE 's2sw_intel' [12:06, 10:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [37:58, 07:17](1781 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [35:03, 04:00](1821 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:16] +PASS -- TEST 'cpld_debug_p8_intel' [52:04, 06:59](2053 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 04:56] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [44:55, 04:41](1793 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:06, 08:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [45:56, 03:59](1816 MB) + +PASS -- COMPILE 's2s_intel' [11:06, 09:06] +PASS -- TEST 'cpld_control_c48_intel' [13:33, 07:14](2835 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:06, 12:40] +PASS -- TEST 'cpld_control_p8_faster_intel' [15:21, 07:22](2068 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:06, 15:04] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [56:10, 13:56](1803 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:00, 06:57](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:54, 15:21](1725 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:06, 03:57] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:55, 21:37](1773 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:06, 07:32] +PASS -- TEST 'control_flake_intel' [43:28, 02:53](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [30:21, 02:05](662 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:39, 02:12](671 MB) +PASS -- TEST 'control_latlon_intel' [30:26, 02:08](660 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:27, 02:06](675 MB) +PASS -- TEST 'control_c48_intel' [09:20, 05:50](857 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:26, 05:43](861 MB) +PASS -- TEST 'control_c192_intel' [48:39, 07:55](999 MB) +PASS -- TEST 'control_c384_intel' [49:16, 08:18](1439 MB) +PASS -- TEST 'control_c384gdas_intel' [49:03, 07:24](1515 MB) +PASS -- TEST 'control_stochy_intel' [12:26, 01:30](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:55](534 MB) +PASS -- TEST 'control_lndp_intel' [09:21, 01:26](668 MB) +PASS -- TEST 'control_iovr4_intel' [07:22, 02:11](659 MB) +PASS -- TEST 'control_iovr5_intel' [06:24, 02:12](665 MB) +PASS -- TEST 'control_p8_intel' [03:49, 02:35](1644 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [56:02, 02:35](1637 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [43:57, 02:29](1656 MB) +PASS -- TEST 'control_restart_p8_intel' [03:43, 01:24](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [37:53, 02:29](1619 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:45, 01:23](989 MB) +PASS -- TEST 'control_decomp_p8_intel' [27:46, 02:36](1634 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:38, 02:22](1732 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:40, 04:28](1637 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [14:53, 03:36](1729 MB) +PASS -- TEST 'control_p8_mynn_intel' [13:01, 02:43](1659 MB) +PASS -- TEST 'merra2_thompson_intel' [13:06, 02:59](1653 MB) +PASS -- TEST 'regional_control_intel' [08:24, 04:33](954 MB) +PASS -- TEST 'regional_restart_intel' [18:23, 02:32](1105 MB) +PASS -- TEST 'regional_decomp_intel' [12:30, 05:05](946 MB) +PASS -- TEST 'regional_2threads_intel' [24:25, 02:55](912 MB) +PASS -- TEST 'regional_noquilt_intel' [24:24, 04:18](1487 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:24, 04:36](957 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:21, 04:30](955 MB) +PASS -- TEST 'regional_wofs_intel' [12:24, 05:35](2072 MB) + +PASS -- COMPILE 'rrfs_intel' [09:05, 07:20] +PASS -- TEST 'rap_control_intel' [12:49, 06:30](1209 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:43, 03:37](1401 MB) +PASS -- TEST 'rap_decomp_intel' [12:30, 06:49](1177 MB) +PASS -- TEST 'rap_2threads_intel' [08:31, 06:08](1381 MB) +PASS -- TEST 'rap_restart_intel' [09:50, 03:24](1125 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 06:29](1185 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:48](1160 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:50, 04:55](1200 MB) +PASS -- TEST 'hrrr_control_intel' [05:31, 03:28](1083 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:30, 03:27](1043 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:04](1121 MB) +PASS -- TEST 'hrrr_control_restart_intel' [09:29, 01:52](1019 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:50, 06:14](1187 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:35](2020 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:40](2157 MB) + +PASS -- COMPILE 'csawmg_intel' [13:05, 06:54] +PASS -- TEST 'control_csawmg_intel' [07:25, 05:07](810 MB) +PASS -- TEST 'control_csawmgt_intel' [07:23, 05:01](814 MB) +PASS -- TEST 'control_ras_intel' [04:15, 02:48](820 MB) + +PASS -- COMPILE 'wam_intel' [11:05, 06:29] +PASS -- TEST 'control_wam_intel' [03:19, 01:53](787 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:05, 09:10] +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:21](1649 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:05](962 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:06, 03:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:16, 02:14](819 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:13](828 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:13, 02:33](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:17](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:27, 03:21](880 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [11:30, 03:21](874 MB) +PASS -- TEST 'control_ras_debug_intel' [06:14, 02:21](834 MB) +PASS -- TEST 'control_diag_debug_intel' [09:25, 02:23](880 MB) +PASS -- TEST 'control_debug_p8_intel' [09:32, 02:27](1648 MB) +PASS -- TEST 'regional_debug_intel' [21:28, 14:08](890 MB) +PASS -- TEST 'rap_control_debug_intel' [11:18, 04:01](1211 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:14, 03:59](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:15, 04:02](1217 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:15, 04:04](1223 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:15, 04:04](1216 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:24, 04:14](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:16, 04:05](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:13, 04:06](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:15, 04:04](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:14, 04:03](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:17, 03:55](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:17, 03:59](1223 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:15, 06:26](1223 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:15, 04:01](1216 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:21, 04:59](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:15, 04:01](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 06:50](1234 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:05, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:05, 06:20] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:40, 03:19](1307 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:21](1161 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:51](1031 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:34, 05:07](1288 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:39, 02:38](1041 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:39, 03:07](978 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:46, 04:06](1097 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:31, 01:38](952 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:05, 08:51] +PASS -- TEST 'conus13km_control_intel' [13:39, 01:52](1309 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:50](1209 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:25, 01:04](1142 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:05, 06:35] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:35, 03:43](1059 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:05, 02:57] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [16:15, 04:01](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [16:13, 03:55](1089 MB) +PASS -- TEST 'conus13km_debug_intel' [23:37, 11:48](1339 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:35, 12:04](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:29, 06:39](1244 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:28, 11:56](1410 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:06, 02:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:16, 04:02](1166 MB) + +PASS -- COMPILE 'hafsw_intel' [20:05, 09:41] +PASS -- TEST 'hafs_regional_atm_intel' [16:00, 05:42](868 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:20, 05:21](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:06, 06:32](956 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:59, 14:01](992 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:08, 14:58](994 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:52, 05:21](607 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:22, 06:55](639 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:43, 02:48](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:01, 07:50](542 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [15:44, 03:55](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:50, 03:40](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:44, 04:55](671 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:22, 01:17](449 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:05, 03:06] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:40, 11:24](635 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:05, 10:38] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:50, 16:54](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:48, 17:54](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:05, 09:42] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:52, 10:17](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [24:05, 09:24] +PASS -- TEST 'hafs_regional_docn_intel' [11:02, 05:36](937 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:07, 05:47](948 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:40, 16:22](1337 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [20:05, 06:02] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:11, 02:07](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:12, 01:17](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:10, 02:04](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:10, 02:05](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:09, 02:05](1009 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:10, 02:07](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:11, 02:08](1154 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:10, 02:03](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:41, 04:59](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:42, 04:50](1139 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:09, 02:07](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:11, 03:02](2432 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:11, 03:02](2384 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:05, 02:37] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:10, 05:07](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:05, 05:45] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:11, 02:07](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [18:05, 00:45] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:22, 00:53](339 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:16, 00:49](561 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:17, 00:36](562 MB) + +PASS -- COMPILE 'atml_intel' [23:05, 07:43] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:12, 05:53](1632 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:08, 05:51](1644 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:34, 02:54](953 MB) + +PASS -- COMPILE 'atmw_intel' [21:05, 09:32] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:45, 01:40](1687 MB) + +PASS -- COMPILE 'atmwm_intel' [25:06, 09:39] +PASS -- TEST 'control_atmwav_intel' [03:40, 01:30](700 MB) + +PASS -- COMPILE 'atmaero_intel' [23:05, 07:09] +PASS -- TEST 'atmaero_control_p8_intel' [05:47, 03:37](1789 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:01, 04:11](1794 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:48, 04:25](1817 MB) + +PASS -- COMPILE 'atmaq_intel' [22:05, 06:57] + +PASS -- COMPILE 'atmaq_debug_intel' [16:06, 02:40] +PASS -- TEST 'regional_atmaq_debug_intel' [19:22, 16:27](4570 MB) + +PASS -- COMPILE 'atm_gnu' [22:06, 03:57] +PASS -- TEST 'control_c48_gnu' [11:28, 09:33](864 MB) +PASS -- TEST 'control_stochy_gnu' [04:20, 02:17](730 MB) +PASS -- TEST 'control_ras_gnu' [05:14, 03:42](731 MB) +PASS -- TEST 'control_p8_gnu' [07:51, 03:42](1514 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:40, 03:34](1518 MB) +PASS -- TEST 'control_flake_gnu' [08:15, 04:28](808 MB) + +PASS -- COMPILE 'rrfs_gnu' [20:05, 03:57] +PASS -- TEST 'rap_control_gnu' [12:30, 07:49](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [12:29, 07:41](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [11:45, 07:05](1151 MB) +PASS -- TEST 'rap_restart_gnu' [05:35, 03:53](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:41, 07:40](1089 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:32, 07:42](1085 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:49, 05:43](884 MB) +PASS -- TEST 'hrrr_control_gnu' [08:30, 03:54](1073 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [08:31, 03:58](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:40, 03:34](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 03:59](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:13, 02:03](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:14, 02:00](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:48, 07:34](1080 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [25:06, 05:05] +PASS -- TEST 'control_diag_debug_gnu' [05:21, 01:27](775 MB) +PASS -- TEST 'regional_debug_gnu' [08:26, 06:15](930 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:15, 01:58](1101 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:15, 01:55](1090 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:12, 01:57](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:03](1096 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:40, 02:09](1271 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:15, 03:04](1096 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:14, 02:00](1104 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:15, 01:55](1090 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:11, 01:12](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:12, 01:15](724 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:17](1505 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:16, 01:58](1098 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:15, 02:09](1107 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:44, 03:13](1099 MB) + +PASS -- COMPILE 'wam_debug_gnu' [17:05, 02:48] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [17:05, 04:19] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:31, 07:06](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:42](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:43, 06:37](970 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 03:27](891 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 03:48](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:34, 05:26](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:15, 01:58](859 MB) +PASS -- TEST 'conus13km_control_gnu' [04:38, 02:27](1265 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:20, 01:03](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:22, 01:25](949 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [19:05, 08:41] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:30, 04:20](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [17:05, 04:52] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:16, 01:58](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:13, 01:50](966 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:27, 05:24](1280 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:24, 05:39](971 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:24, 03:13](1194 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:24, 05:25](1351 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [15:05, 04:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:17, 01:55](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [29:07, 16:19] + +PASS -- COMPILE 's2s_gnu' [29:06, 16:03] + +PASS -- COMPILE 's2swa_debug_gnu' [15:06, 04:37] + +PASS -- COMPILE 's2sw_pdlib_gnu' [26:06, 15:59] + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [15:06, 02:51] + +PASS -- COMPILE 'datm_cdeps_gnu' [30:06, 14:15] SYNOPSIS: -Starting Date/Time: 20240219 08:33:37 -Ending Date/Time: 20240219 10:09:34 -Total Time: 01h:36m:17s +Starting Date/Time: 20240222 15:42:59 +Ending Date/Time: 20240222 20:52:32 +Total Time: 05h:10m:04s Compiles Completed: 53/53 Tests Completed: 234/234 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 11a58e0fe6..aba1035824 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,300 +25,246 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_75827 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_249843 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [37:20, 36:01] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:14, 07:11](1756 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [53:26, 51:44] -PASS -- TEST 'cpld_control_gfsv17_intel' [25:36, 21:15](1639 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:00, 22:13](1874 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:12, 10:07](977 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:06, 24:43](1611 MB) - -PASS -- COMPILE 's2swa_intel' [39:21, 37:53] -PASS -- TEST 'cpld_control_p8_intel' [10:27, 07:30](1800 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 07:31](1792 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:18](1693 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:28, 07:35](1823 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:26](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [25:35, 23:04](2182 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:24, 07:31](1792 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:51, 06:24](1753 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:53, 07:34](1801 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:09](1765 MB) - -PASS -- COMPILE 's2sw_intel' [36:19, 34:19] -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:44, 06:15](1643 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:03, 06:09](1695 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 05:37] -PASS -- TEST 'cpld_debug_p8_intel' [14:47, 10:28](1821 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:08, 05:09] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:37, 10:34](1648 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [33:17, 31:52] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 05:41](1693 MB) - -PASS -- COMPILE 's2s_intel' [32:17, 31:06] -PASS -- TEST 'cpld_control_c48_intel' [15:24, 12:53](2787 MB) - -PASS -- COMPILE 's2swa_faster_intel' [33:40, 32:19] -PASS -- TEST 'cpld_control_p8_faster_intel' [11:03, 07:05](1792 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:23, 45:56] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 21:05](1661 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:02, 09:52](1023 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:00, 23:56](1655 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:07, 04:51] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:49, 32:27](1666 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:18, 32:51] -PASS -- TEST 'control_flake_intel' [06:33, 04:47](638 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 03:23](594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:40, 03:54](595 MB) -PASS -- TEST 'control_latlon_intel' [05:28, 03:17](595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:26](594 MB) -PASS -- TEST 'control_c48_intel' [11:36, 10:07](842 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:36, 10:10](846 MB) -PASS -- TEST 'control_c192_intel' [16:59, 12:41](724 MB) -PASS -- TEST 'control_c384_intel' [21:02, 17:25](899 MB) -PASS -- TEST 'control_c384gdas_intel' [22:09, 16:34](1031 MB) -PASS -- TEST 'control_stochy_intel' [04:28, 02:15](597 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:25, 01:17](432 MB) -PASS -- TEST 'control_lndp_intel' [04:29, 02:11](594 MB) -PASS -- TEST 'control_iovr4_intel' [05:30, 03:26](597 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 03:22](593 MB) -PASS -- TEST 'control_p8_intel' [07:52, 04:08](1567 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:41, 03:49](1568 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:34, 03:47](1559 MB) -PASS -- TEST 'control_restart_p8_intel' [07:25, 02:08](804 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:14, 03:45](1546 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:23, 02:03](827 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:04](1545 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:13, 03:44](1647 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:56, 06:59](1561 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:41, 05:07](1618 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:32, 03:57](1565 MB) -PASS -- TEST 'merra2_thompson_intel' [07:57, 04:32](1566 MB) -PASS -- TEST 'regional_control_intel' [10:45, 09:04](752 MB) -PASS -- TEST 'regional_restart_intel' [05:43, 03:46](935 MB) -PASS -- TEST 'regional_decomp_intel' [10:44, 08:45](756 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 04:18](745 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:46, 08:57](758 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:44, 08:41](756 MB) - -PASS -- COMPILE 'rrfs_intel' [33:20, 31:23] -PASS -- TEST 'rap_control_intel' [13:40, 10:14](973 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:26, 05:55](1211 MB) -PASS -- TEST 'rap_decomp_intel' [13:03, 10:53](963 MB) -PASS -- TEST 'rap_2threads_intel' [12:39, 10:02](1063 MB) -PASS -- TEST 'rap_restart_intel' [08:15, 05:12](975 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:37, 10:29](973 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:08, 11:11](968 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:52, 08:24](982 MB) -PASS -- TEST 'hrrr_control_intel' [08:11, 05:36](962 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:10, 05:46](962 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:11, 05:14](1050 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:30, 02:49](907 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:40, 10:19](964 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:32, 12:43](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:33, 12:11](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [32:17, 30:19] -PASS -- TEST 'control_csawmg_intel' [10:46, 08:41](678 MB) -PASS -- TEST 'control_csawmgt_intel' [11:50, 09:53](682 MB) -PASS -- TEST 'control_ras_intel' [07:27, 05:13](652 MB) - -PASS -- COMPILE 'wam_intel' [31:18, 29:22] -PASS -- TEST 'control_wam_intel' [04:25, 02:40](494 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [32:17, 30:53] -PASS -- TEST 'control_p8_faster_intel' [06:55, 03:31](1556 MB) -PASS -- TEST 'regional_control_faster_intel' [08:55, 06:29](749 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:08, 06:08] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:29, 05:14](749 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 05:08](750 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:21, 04:49](755 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:21, 04:43](757 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:43, 05:14](802 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [08:43, 06:18](798 MB) -PASS -- TEST 'control_ras_debug_intel' [06:22, 04:10](760 MB) -PASS -- TEST 'control_diag_debug_intel' [06:37, 04:29](809 MB) -PASS -- TEST 'control_debug_p8_intel' [07:56, 05:27](1573 MB) -PASS -- TEST 'regional_debug_intel' [25:53, 22:41](769 MB) -PASS -- TEST 'rap_control_debug_intel' [09:32, 07:38](1139 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:00, 06:22](1134 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:54, 06:32](1137 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 06:03](1138 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:25, 06:02](1141 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:41, 06:25](1221 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:27, 06:12](1138 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 06:09](1143 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:09](1143 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:01](1132 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:27, 05:55](1138 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:29, 06:00](1139 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:34, 09:50](1146 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 05:58](1134 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:30, 07:25](1131 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:30, 06:05](1149 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:48, 10:39](1146 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:08, 04:14] -PASS -- TEST 'control_wam_debug_intel' [07:24, 06:05](453 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:17, 29:12] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:19, 05:23](1070 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 08:17](897 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:13, 04:24](856 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:44, 07:47](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:13, 04:04](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:13, 04:37](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:24, 06:08](884 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:29](840 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [45:31, 44:27] -PASS -- TEST 'conus13km_control_intel' [05:14, 02:45](1092 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:15](1045 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:37](1009 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 29:40] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:06, 05:32](892 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:07, 04:30] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:57](1009 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:27, 05:54](1010 MB) -PASS -- TEST 'conus13km_debug_intel' [20:14, 18:11](1123 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:15, 20:51](834 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [13:02, 10:31](1077 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:07, 18:12](1188 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:09, 04:28] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 06:07](1051 MB) - -PASS -- COMPILE 'hafsw_intel' [34:23, 32:59] -PASS -- TEST 'hafs_regional_atm_intel' [12:41, 09:37](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:49, 11:19](1076 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:35, 10:58](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:47, 17:03](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [23:40, 19:35](813 MB) -PASS -- TEST 'gnv1_nested_intel' [12:01, 08:38](771 MB) - -PASS -- COMPILE 'hafs_all_intel' [32:17, 30:53] -PASS -- TEST 'hafs_regional_docn_intel' [14:05, 09:44](767 MB) -FAIL TO COMPARE -- TEST 'hafs_regional_docn_oisst_intel' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:09, 08:15] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 03:32](1040 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:11](1002 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:21, 03:27](916 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:21, 03:28](914 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:21, 03:30](911 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:32](1038 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:34](1034 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:21, 03:26](918 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:56](869 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:52](843 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:18, 03:32](1047 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:54](2387 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:58](2391 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:24] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:22, 07:56](985 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:10, 08:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:35](1037 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:47] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 01:23](225 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:27, 01:12](246 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:35, 01:03](243 MB) - -PASS -- COMPILE 'atml_intel' [34:19, 32:27] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [16:03, 12:11](1585 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [15:04, 11:18](1578 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:54, 06:20](856 MB) - -PASS -- COMPILE 'atmw_intel' [32:20, 31:08] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:53, 02:24](1580 MB) - -PASS -- COMPILE 'atmwm_intel' [32:17, 30:40] -PASS -- TEST 'control_atmwav_intel' [05:26, 02:13](604 MB) - -PASS -- COMPILE 'atmaero_intel' [32:18, 31:08] -PASS -- TEST 'atmaero_control_p8_intel' [08:44, 05:12](1672 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:39, 06:26](1694 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:19, 06:42](1704 MB) +PASS -- COMPILE 's2swa_32bit_intel' [29:17, 27:42] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:57, 05:23](1764 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:23, 41:38] +PASS -- TEST 'cpld_control_gfsv17_intel' [22:11, 15:44](1642 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 17:09](1866 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:55, 09:21](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:35, 18:08](1603 MB) + +PASS -- COMPILE 's2swa_intel' [30:17, 28:56] +PASS -- TEST 'cpld_control_p8_intel' [17:37, 06:24](1801 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:58, 06:12](1796 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:05, 03:27](1690 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:38, 06:12](1826 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 03:29](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:26, 05:46](2195 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:26, 05:58](1797 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:47, 05:02](1758 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 06:06](1804 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 05:57](1772 MB) + +PASS -- COMPILE 's2sw_intel' [28:17, 27:03] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:29, 04:30](1639 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:46, 04:37](1686 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:31] +PASS -- TEST 'cpld_debug_p8_intel' [12:10, 08:20](1837 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:12] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:31, 05:35](1650 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:16, 24:26] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:56, 04:40](1689 MB) + +PASS -- COMPILE 's2s_intel' [26:15, 24:32] +PASS -- TEST 'cpld_control_c48_intel' [14:22, 09:17](2798 MB) + +PASS -- COMPILE 's2swa_faster_intel' [05:31, 03:39] +PASS -- TEST 'cpld_control_p8_faster_intel' [25:59, 05:43](1801 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [41:21, 39:29] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:35, 16:26](1662 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:46, 08:08](1019 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:39, 19:17](1654 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:15] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:41, 24:57](1671 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [28:15, 25:56] +PASS -- TEST 'control_flake_intel' [22:46, 03:27](639 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:48, 02:26](589 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:03, 02:32](595 MB) +PASS -- TEST 'control_latlon_intel' [21:50, 02:29](594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:51, 02:29](589 MB) +PASS -- TEST 'control_c48_intel' [12:58, 07:38](846 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:56, 07:20](841 MB) +PASS -- TEST 'control_c192_intel' [21:07, 09:11](721 MB) +PASS -- TEST 'control_c384_intel' [20:19, 12:02](901 MB) +PASS -- TEST 'control_c384gdas_intel' [39:19, 10:48](1018 MB) +PASS -- TEST 'control_stochy_intel' [20:46, 01:38](598 MB) +PASS -- TEST 'control_stochy_restart_intel' [20:39, 00:59](427 MB) +PASS -- TEST 'control_lndp_intel' [20:46, 01:37](593 MB) +PASS -- TEST 'control_iovr4_intel' [16:47, 02:30](592 MB) +PASS -- TEST 'control_iovr5_intel' [18:50, 02:28](590 MB) +PASS -- TEST 'control_p8_intel' [24:16, 03:07](1554 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [27:18, 03:00](1573 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [24:27, 03:02](1569 MB) +PASS -- TEST 'control_restart_p8_intel' [21:33, 01:35](819 MB) +PASS -- TEST 'control_noqr_p8_intel' [25:08, 02:59](1556 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [21:29, 01:33](836 MB) +PASS -- TEST 'control_decomp_p8_intel' [27:00, 03:04](1560 MB) +PASS -- TEST 'control_2threads_p8_intel' [25:04, 02:57](1646 MB) +PASS -- TEST 'control_p8_lndp_intel' [30:45, 05:20](1559 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [26:36, 04:00](1620 MB) +PASS -- TEST 'control_p8_mynn_intel' [27:25, 03:06](1585 MB) +PASS -- TEST 'merra2_thompson_intel' [23:46, 03:30](1581 MB) +PASS -- TEST 'regional_control_intel' [11:23, 05:30](757 MB) +PASS -- TEST 'regional_restart_intel' [25:59, 02:50](931 MB) +PASS -- TEST 'regional_decomp_intel' [10:25, 07:17](755 MB) +PASS -- TEST 'regional_2threads_intel' [23:14, 03:18](746 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:59, 05:30](758 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:52, 05:20](758 MB) + +PASS -- COMPILE 'rrfs_intel' [26:15, 24:32] +PASS -- TEST 'rap_control_intel' [27:55, 07:42](982 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:21, 04:23](1217 MB) +PASS -- TEST 'rap_decomp_intel' [28:30, 08:02](967 MB) +PASS -- TEST 'rap_2threads_intel' [25:15, 07:15](1071 MB) +PASS -- TEST 'rap_restart_intel' [14:34, 03:57](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [28:45, 07:39](969 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [27:12, 08:01](963 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [15:29, 05:52](987 MB) +PASS -- TEST 'hrrr_control_intel' [23:13, 04:01](964 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:42, 04:06](971 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:28, 03:36](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:27, 02:07](902 MB) +PASS -- TEST 'rrfs_v1beta_intel' [28:58, 07:32](964 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [28:40, 09:15](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [28:45, 08:57](1924 MB) + +PASS -- COMPILE 'csawmg_intel' [25:15, 23:14] +PASS -- TEST 'control_csawmg_intel' [24:56, 06:05](689 MB) +PASS -- TEST 'control_csawmgt_intel' [24:49, 06:01](688 MB) +PASS -- TEST 'control_ras_intel' [22:34, 03:23](656 MB) + +PASS -- COMPILE 'wam_intel' [23:14, 21:42] +PASS -- TEST 'control_wam_intel' [21:31, 02:05](493 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:22, 22:49] +PASS -- TEST 'control_p8_faster_intel' [13:50, 02:38](1562 MB) +PASS -- TEST 'regional_control_faster_intel' [13:51, 04:48](751 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:17, 05:03] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [21:31, 02:37](750 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:41, 02:36](749 MB) +PASS -- TEST 'control_stochy_debug_intel' [22:31, 02:55](763 MB) +PASS -- TEST 'control_lndp_debug_intel' [22:33, 02:37](759 MB) +PASS -- TEST 'control_csawmg_debug_intel' [22:53, 04:01](803 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [21:58, 04:01](801 MB) +PASS -- TEST 'control_ras_debug_intel' [20:34, 02:40](771 MB) +PASS -- TEST 'control_diag_debug_intel' [16:43, 02:47](808 MB) +PASS -- TEST 'control_debug_p8_intel' [16:06, 02:47](1576 MB) +PASS -- TEST 'regional_debug_intel' [28:06, 17:22](767 MB) +PASS -- TEST 'rap_control_debug_intel' [14:38, 04:48](1143 MB) +PASS -- TEST 'hrrr_control_debug_intel' [15:31, 04:45](1139 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [15:28, 04:48](1135 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:33, 04:51](1136 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [17:32, 04:50](1146 MB) +PASS -- TEST 'rap_diag_debug_intel' [18:50, 05:07](1230 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:35, 05:01](1133 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [18:31, 04:54](1143 MB) +PASS -- TEST 'rap_lndp_debug_intel' [17:32, 05:00](1146 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:32, 04:49](1144 MB) +PASS -- TEST 'rap_noah_debug_intel' [19:36, 04:41](1143 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [20:33, 04:48](1143 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [23:33, 07:48](1137 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:32, 04:41](1140 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [22:43, 05:56](1143 MB) +PASS -- TEST 'rap_flake_debug_intel' [21:41, 04:50](1145 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [25:53, 08:14](1144 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:17, 03:21] +PASS -- TEST 'control_wam_debug_intel' [22:33, 04:47](434 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [35:19, 21:28] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [20:40, 03:59](1076 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:50, 06:25](894 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:11, 03:24](859 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [24:18, 06:03](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:25, 03:08](906 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:34, 03:34](841 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [41:11, 05:48](897 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [37:46, 02:43](831 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [44:24, 30:19] +PASS -- TEST 'conus13km_control_intel' [23:18, 02:15](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [30:39, 01:22](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [31:37, 01:12](1017 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:18, 22:38] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [25:10, 04:23](895 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 03:36] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:39, 04:43](1023 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:35, 04:37](1022 MB) +PASS -- TEST 'conus13km_debug_intel' [32:18, 14:04](1130 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:03, 14:19](838 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:51, 08:12](1085 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [32:58, 14:16](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:11] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:38, 04:48](1050 MB) + +PASS -- COMPILE 'hafsw_intel' [36:22, 25:12] +PASS -- TEST 'hafs_regional_atm_intel' [23:32, 05:47](707 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [28:44, 05:55](1078 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [42:28, 07:56](766 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [38:27, 13:32](797 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [45:10, 15:52](819 MB) +PASS -- TEST 'gnv1_nested_intel' [31:50, 04:27](772 MB) + +PASS -- COMPILE 'hafs_all_intel' [33:28, 23:46] +PASS -- TEST 'hafs_regional_docn_intel' [26:41, 06:39](768 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [31:45, 06:39](752 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:09, 06:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:29, 02:41](1034 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [28:32, 02:19](1010 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:29, 02:32](914 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [23:32, 02:34](919 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [23:29, 02:35](919 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [23:28, 02:39](1040 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:27, 02:41](1043 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:26, 02:37](913 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [25:29, 06:35](875 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:20, 06:23](835 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [26:28, 02:43](1045 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [09:23, 03:55](2391 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [26:30, 04:01](2396 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:08, 03:03] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [20:32, 06:18](995 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 06:40] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:23, 02:41](1044 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [13:11, 01:23] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [35:51, 01:56](225 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:37, 01:01](245 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:36](248 MB) + +PASS -- COMPILE 'atml_intel' [40:22, 25:17] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [23:42, 08:48](1581 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [22:47, 07:59](1596 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:50, 04:10](853 MB) + +PASS -- COMPILE 'atmw_intel' [42:26, 22:57] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:39, 01:43](1576 MB) + +PASS -- COMPILE 'atmwm_intel' [40:25, 23:03] +PASS -- TEST 'control_atmwav_intel' [05:22, 01:38](597 MB) + +PASS -- COMPILE 'atmaero_intel' [43:37, 22:10] +PASS -- TEST 'atmaero_control_p8_intel' [06:33, 04:04](1670 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:30, 04:55](1709 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:23, 05:12](1711 MB) SYNOPSIS: -Starting Date/Time: 20240219 14:40:09 -Ending Date/Time: 20240219 18:32:24 -Total Time: 03h:52m:41s +Starting Date/Time: 20240223 07:51:38 +Ending Date/Time: 20240223 11:22:41 +Total Time: 03h:31m:27s Compiles Completed: 33/33 -Tests Completed: 160/161 -Failed Tests: -* TEST hafs_regional_docn_oisst_intel: FAIL TO COMPARE --- LOG: /mnt/lfs4/HFIP/hfv3gfs/Zachary.Shrader/rt-2061/tests/logs/log_jet/rt_hafs_regional_docn_oisst_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - 3d7067a523b8557058755289e4275f5f5c985daf CDEPS-interface/CDEPS (cdeps0.4.17-40-g3d7067a) - 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) - 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-1411-g624920d) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) - c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) - 0cd3e23ae5d35ef93e205e4d0c3b13ccc0d851f5 NOAHMP-interface/noahmp (v3.7.1-423-g0cd3e23) - 4ffc47e10e3d3f3bbee50251aacb28b7e0165b92 WW3 (6.07.1-344-g4ffc47e1) - a5561802021d89a9a1e2b52cb69393efcdc6f71c stochastic_physics (ufs-v2.0.0-199-ga556180) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_299389 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 'hafs_all_intel' [25:14, 23:54] -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:48, 07:05](749 MB) - -SYNOPSIS: -Starting Date/Time: 20240221 17:29:27 -Ending Date/Time: 20240221 18:09:29 -Total Time: 00h:40m:09s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 161/161 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 685e0a2ad6..bca26a96f8 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -0d31ac8854fee356e5409931c3cd5b85e9611a15 +9904889c8c39959060b801e0cb5965f869d2a0ee Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (heads/develop) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/feature/chunked_array_support) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,277 +25,277 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_403308 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_85130 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:07, 15:18] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:44, 05:13](3185 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:07, 20:01] -PASS -- TEST 'cpld_control_gfsv17_intel' [19:45, 16:24](1738 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:54, 17:38](2026 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:57, 08:07](1111 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:39, 18:29](1644 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:07, 05:56] -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 23:01](1681 MB) - -PASS -- COMPILE 's2swa_intel' [17:07, 15:18] -PASS -- TEST 'cpld_control_p8_intel' [08:20, 05:37](3217 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:44, 05:40](3206 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:51, 03:17](3253 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:44](3235 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:49, 03:29](3276 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:44, 06:08](3551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:16, 05:42](3198 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:33, 04:43](3070 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:42, 05:40](3211 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:40, 10:01](3335 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:23, 06:09](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:06, 11:07](4121 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:43, 06:47](4374 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:33, 05:26](3175 MB) - -PASS -- COMPILE 's2sw_intel' [16:07, 14:53] -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:29](1735 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:14, 04:26](1779 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:07, 04:51] -PASS -- TEST 'cpld_debug_p8_intel' [11:31, 08:31](3249 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:07, 04:43] -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:58](1749 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:07, 13:59] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:17, 04:17](1790 MB) - -PASS -- COMPILE 's2s_intel' [15:07, 13:16] -PASS -- TEST 'cpld_control_c48_intel' [10:52, 08:05](2828 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:07, 18:20] -PASS -- TEST 'cpld_control_p8_faster_intel' [08:25, 05:17](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:07, 17:24] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 16:29](1776 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:15, 08:01](1177 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:04, 18:27](1678 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:06, 04:55] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 24:18](1718 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:15] -PASS -- TEST 'control_flake_intel' [05:20, 03:31](699 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 02:29](649 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:36](650 MB) -PASS -- TEST 'control_latlon_intel' [04:20, 02:30](646 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:28, 02:31](650 MB) -PASS -- TEST 'control_c48_intel' [07:24, 06:01](871 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:32, 05:57](870 MB) -PASS -- TEST 'control_c192_intel' [11:34, 09:07](858 MB) -PASS -- TEST 'control_c384_intel' [13:41, 10:02](1245 MB) -PASS -- TEST 'control_c384gdas_intel' [13:47, 09:05](1348 MB) -PASS -- TEST 'control_stochy_intel' [03:19, 01:45](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:00](497 MB) -PASS -- TEST 'control_lndp_intel' [03:17, 01:40](656 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:26](646 MB) -PASS -- TEST 'control_iovr5_intel' [04:23, 02:25](652 MB) -PASS -- TEST 'control_p8_intel' [05:14, 02:59](1633 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 02:54](1632 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 02:50](1638 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:38](895 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:18, 02:54](1612 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:06, 01:39](929 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:59](1615 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:02](1715 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:52, 05:11](1621 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:32, 04:03](1687 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:22, 02:59](1627 MB) -PASS -- TEST 'merra2_thompson_intel' [06:38, 03:32](1640 MB) -PASS -- TEST 'regional_control_intel' [07:34, 05:14](855 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 02:42](1020 MB) -PASS -- TEST 'regional_decomp_intel' [07:30, 05:29](852 MB) -PASS -- TEST 'regional_2threads_intel' [05:34, 03:42](844 MB) -PASS -- TEST 'regional_noquilt_intel' [06:35, 05:01](1368 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:04](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:04](857 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 06:33](1919 MB) - -PASS -- COMPILE 'rrfs_intel' [14:06, 12:43] -PASS -- TEST 'rap_control_intel' [10:28, 07:47](1106 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:48](1295 MB) -PASS -- TEST 'rap_decomp_intel' [11:15, 08:07](1028 MB) -PASS -- TEST 'rap_2threads_intel' [10:26, 07:57](1177 MB) -PASS -- TEST 'rap_restart_intel' [06:18, 04:03](1098 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:27, 07:44](1108 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:25, 08:07](1025 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:24, 05:47](1134 MB) -PASS -- TEST 'hrrr_control_intel' [06:52, 04:11](1033 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 04:06](1019 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:18, 03:23](1111 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:19, 02:11](1002 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:12, 07:34](1099 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 09:08](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:51](2080 MB) - -PASS -- COMPILE 'csawmg_intel' [13:07, 12:00] -PASS -- TEST 'control_csawmg_intel' [07:41, 05:54](746 MB) -PASS -- TEST 'control_csawmgt_intel' [07:44, 05:45](745 MB) -PASS -- TEST 'control_ras_intel' [05:21, 03:17](742 MB) - -PASS -- COMPILE 'wam_intel' [12:07, 10:18] -PASS -- TEST 'control_wam_intel' [04:17, 02:03](657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:32] -PASS -- TEST 'control_p8_faster_intel' [05:29, 02:40](1636 MB) -PASS -- TEST 'regional_control_faster_intel' [06:40, 04:38](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:06, 04:32] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:45](815 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:25, 02:45](813 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:58](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:50](816 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:10](862 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [06:34, 04:06](864 MB) -PASS -- TEST 'control_ras_debug_intel' [04:21, 02:45](825 MB) -PASS -- TEST 'control_diag_debug_intel' [04:23, 02:59](873 MB) -PASS -- TEST 'control_debug_p8_intel' [04:43, 02:55](1643 MB) -PASS -- TEST 'regional_debug_intel' [19:41, 17:42](843 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:58](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:21, 04:48](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:51](1201 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:59](1202 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 04:55](1204 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:28, 05:11](1282 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 05:02](1199 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:01](1202 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:52](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:51](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:19, 05:02](1200 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:21, 08:05](1205 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:19, 04:47](1197 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:20, 06:05](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:54](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:20, 08:11](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:06, 02:51] -PASS -- TEST 'control_wam_debug_intel' [07:18, 05:04](517 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:07, 11:18] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:54, 04:23](1169 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:14, 06:25](1046 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:06, 03:25](985 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:48, 06:42](1092 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:35, 03:03](960 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:35](942 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:50](1028 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:52](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:07, 13:39] -PASS -- TEST 'conus13km_control_intel' [12:56, 02:05](1203 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:40, 01:03](1125 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:32, 01:15](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:06, 11:24] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:43, 04:13](990 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:06, 03:01] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:04](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:48](1082 MB) -PASS -- TEST 'conus13km_debug_intel' [16:46, 14:29](1223 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:38, 14:50](928 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:17](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:50](1293 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:06, 03:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:54](1130 MB) - -PASS -- COMPILE 'hafsw_intel' [15:07, 13:44] -PASS -- TEST 'hafs_regional_atm_intel' [08:06, 05:31](748 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:22, 05:58](1125 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:48](828 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:11, 12:49](858 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:18, 14:34](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:12](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:19, 07:34](525 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:44, 03:09](372 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:29, 08:10](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:39, 04:08](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:52, 03:49](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:56, 05:23](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:24, 01:25](403 MB) -PASS -- TEST 'gnv1_nested_intel' [06:56, 04:32](798 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:06, 03:49] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:44, 13:10](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:06, 12:34] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:00, 09:37](669 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:04, 09:37](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:07, 13:17] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:58, 06:59](724 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:07, 12:27] -PASS -- TEST 'hafs_regional_docn_intel' [09:13, 06:16](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 06:27](816 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:14](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:06, 08:03] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:14, 02:42](1143 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:43](1096 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:12, 02:32](1012 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:13, 02:37](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:12, 02:36](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 03:00](1125 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:42](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:35](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:57](1055 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 05:50](1039 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:11, 02:33](1128 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:13, 03:39](2439 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:13, 03:36](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:06, 03:00] -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:13, 05:57](1058 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:06, 07:16] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:13, 02:40](1128 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:12] -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:47](259 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:17, 00:49](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:33](317 MB) - -PASS -- COMPILE 'atml_intel' [13:06, 11:46] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:36, 04:14](1612 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:34, 04:14](1607 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:37, 02:21](896 MB) - -PASS -- COMPILE 'atmw_intel' [14:06, 12:22] -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 01:47](1673 MB) - -PASS -- COMPILE 'atmwm_intel' [13:06, 11:52] -PASS -- TEST 'control_atmwav_intel' [04:01, 01:42](670 MB) - -PASS -- COMPILE 'atmaero_intel' [13:06, 11:27] -PASS -- TEST 'atmaero_control_p8_intel' [06:08, 03:58](3017 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:15, 04:48](3091 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:58, 05:05](3105 MB) - -PASS -- COMPILE 'atmaq_intel' [12:06, 10:25] - -PASS -- COMPILE 'atmaq_debug_intel' [05:06, 03:55] -PASS -- TEST 'regional_atmaq_debug_intel' [23:46, 21:02](4576 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:07, 14:09] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:09, 05:09](3184 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:09, 19:36] +PASS -- TEST 'cpld_control_gfsv17_intel' [19:57, 16:25](1743 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:09, 17:22](2023 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:56, 08:06](1114 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:00, 18:27](1641 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:06, 05:38] +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:52, 23:07](1687 MB) + +PASS -- COMPILE 's2swa_intel' [16:07, 14:20] +PASS -- TEST 'cpld_control_p8_intel' [13:08, 05:41](3207 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:17, 05:57](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:06, 03:18](3249 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:08, 05:45](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:06, 03:28](3203 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:43, 06:06](3557 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:08, 05:47](3207 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:07, 04:41](3063 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:21, 05:45](3211 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 10:18](3267 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 06:42](3544 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:19, 11:13](4110 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:11, 07:03](4365 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:08, 05:29](3178 MB) + +PASS -- COMPILE 's2sw_intel' [16:07, 14:19] +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:42, 04:28](1737 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:07, 04:22](1775 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:06, 05:36] +PASS -- TEST 'cpld_debug_p8_intel' [11:28, 08:24](3251 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:06, 05:12] +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:05, 05:54](1758 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:07, 13:00] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:26, 04:42](1709 MB) + +PASS -- COMPILE 's2s_intel' [14:07, 12:32] +PASS -- TEST 'cpld_control_c48_intel' [09:55, 08:04](2833 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:09, 19:41] +PASS -- TEST 'cpld_control_p8_faster_intel' [09:00, 05:23](3208 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:08, 18:20] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 16:27](1775 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:12, 08:30](1177 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:13, 18:49](1684 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:06, 05:28] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:11, 24:28](1707 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:07, 12:54] +PASS -- TEST 'control_flake_intel' [05:20, 03:32](699 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 02:34](653 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:45](622 MB) +PASS -- TEST 'control_latlon_intel' [04:18, 02:40](656 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:41](655 MB) +PASS -- TEST 'control_c48_intel' [07:29, 06:00](879 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:42, 05:57](866 MB) +PASS -- TEST 'control_c192_intel' [11:35, 09:06](851 MB) +PASS -- TEST 'control_c384_intel' [14:41, 11:07](1244 MB) +PASS -- TEST 'control_c384gdas_intel' [13:53, 08:51](1352 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:45](662 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 01:02](502 MB) +PASS -- TEST 'control_lndp_intel' [03:26, 01:47](649 MB) +PASS -- TEST 'control_iovr4_intel' [04:25, 02:34](654 MB) +PASS -- TEST 'control_iovr5_intel' [04:25, 02:29](651 MB) +PASS -- TEST 'control_p8_intel' [05:21, 03:01](1585 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 02:56](1631 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 02:53](1639 MB) +PASS -- TEST 'control_restart_p8_intel' [04:24, 01:39](893 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 02:51](1616 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 01:43](930 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:13, 03:01](1620 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:04](1727 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:40, 05:18](1639 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 03:56](1695 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 02:59](1639 MB) +PASS -- TEST 'merra2_thompson_intel' [06:52, 03:24](1642 MB) +PASS -- TEST 'regional_control_intel' [07:46, 05:06](855 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 02:42](1022 MB) +PASS -- TEST 'regional_decomp_intel' [07:41, 05:28](849 MB) +PASS -- TEST 'regional_2threads_intel' [05:44, 03:45](841 MB) +PASS -- TEST 'regional_noquilt_intel' [06:46, 05:05](1365 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:53, 05:08](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:44, 05:06](862 MB) +PASS -- TEST 'regional_wofs_intel' [08:44, 06:34](1923 MB) + +PASS -- COMPILE 'rrfs_intel' [13:07, 11:45] +PASS -- TEST 'rap_control_intel' [10:24, 07:42](1107 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 04:39](1291 MB) +PASS -- TEST 'rap_decomp_intel' [11:16, 08:04](985 MB) +PASS -- TEST 'rap_2threads_intel' [11:13, 07:52](1184 MB) +PASS -- TEST 'rap_restart_intel' [07:19, 04:12](1103 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:35, 07:47](1112 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:24, 08:11](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:21, 05:55](1131 MB) +PASS -- TEST 'hrrr_control_intel' [06:55, 04:05](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:54, 04:06](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:07, 03:21](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 02:12](999 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:18, 07:37](1052 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:24, 09:15](1988 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:28, 09:07](2019 MB) + +PASS -- COMPILE 'csawmg_intel' [13:06, 11:16] +PASS -- TEST 'control_csawmg_intel' [08:47, 05:51](751 MB) +PASS -- TEST 'control_csawmgt_intel' [08:47, 05:46](751 MB) +PASS -- TEST 'control_ras_intel' [05:21, 03:18](742 MB) + +PASS -- COMPILE 'wam_intel' [12:07, 10:53] +PASS -- TEST 'control_wam_intel' [04:16, 02:05](654 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:07, 11:17] +PASS -- TEST 'control_p8_faster_intel' [06:35, 02:36](1623 MB) +PASS -- TEST 'regional_control_faster_intel' [06:43, 04:32](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:07, 04:42] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:25, 02:44](814 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:32, 02:37](813 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:05](817 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:17, 02:50](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:04](866 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [05:41, 04:02](863 MB) +PASS -- TEST 'control_ras_debug_intel' [05:18, 02:46](823 MB) +PASS -- TEST 'control_diag_debug_intel' [05:22, 03:00](838 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:58](1639 MB) +PASS -- TEST 'regional_debug_intel' [19:41, 17:45](846 MB) +PASS -- TEST 'rap_control_debug_intel' [07:25, 05:06](1150 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:24, 04:38](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:52](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:20, 05:09](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:18, 05:12](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:24](1281 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:13](1207 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 05:11](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 05:01](1209 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:41](1199 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:22, 05:08](1196 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:23, 08:05](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:51](1198 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:46](1210 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 04:49](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:27, 08:18](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:06, 03:40] +PASS -- TEST 'control_wam_debug_intel' [07:17, 05:06](510 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:06, 11:28] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 04:25](1173 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:24, 06:25](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:37, 03:23](945 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:13, 06:42](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:41, 03:05](965 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:22, 03:43](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:22, 04:50](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:18, 01:57](940 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:06, 13:49] +PASS -- TEST 'conus13km_control_intel' [05:05, 02:07](1200 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:45, 00:58](1124 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:40, 01:17](1109 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:06, 10:45] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:14](1003 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:06, 03:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:59](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1080 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 13:55](1187 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:45](931 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:43, 08:41](1108 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:19](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:07, 03:21] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:59](1128 MB) + +PASS -- COMPILE 'hafsw_intel' [14:07, 12:33] +PASS -- TEST 'hafs_regional_atm_intel' [08:15, 05:35](745 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:47](1122 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:21, 06:47](828 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:17, 12:57](863 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:20, 14:29](881 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:55, 06:07](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:23, 07:39](485 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:51, 03:09](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:27, 08:08](471 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:46, 04:10](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:01, 03:54](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:59, 05:19](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:26, 01:22](402 MB) +PASS -- TEST 'gnv1_nested_intel' [06:52, 04:28](803 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:06, 04:09] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:50, 12:56](568 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:07, 13:37] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:07, 09:31](667 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:59, 09:45](657 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:08, 14:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:01, 07:10](684 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:08, 13:26] +PASS -- TEST 'hafs_regional_docn_intel' [11:16, 06:26](829 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:31](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:51, 16:01](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:06, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:42](1136 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:43](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:13, 02:34](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:39](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:29](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:41](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:13, 02:34](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:34](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:16, 05:52](1059 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:58](1050 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:12, 02:46](1136 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:38](2433 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 03:45](2487 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:06, 03:15] +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:15](1057 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:06, 06:57] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:40](1128 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:06, 01:45] +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:52](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:54](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:20, 00:38](320 MB) + +PASS -- COMPILE 'atml_intel' [15:07, 13:36] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:32, 04:23](1608 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:33, 04:20](1602 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:42, 02:28](897 MB) + +PASS -- COMPILE 'atmw_intel' [16:08, 14:07] +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 01:47](1670 MB) + +PASS -- COMPILE 'atmwm_intel' [13:11, 12:03] +PASS -- TEST 'control_atmwav_intel' [04:09, 01:48](672 MB) + +PASS -- COMPILE 'atmaero_intel' [13:06, 11:32] +PASS -- TEST 'atmaero_control_p8_intel' [06:25, 04:00](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 04:45](3087 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:03, 05:14](3036 MB) + +PASS -- COMPILE 'atmaq_intel' [12:11, 10:32] + +PASS -- COMPILE 'atmaq_debug_intel' [05:05, 03:28] +PASS -- TEST 'regional_atmaq_debug_intel' [24:58, 21:02](4576 MB) SYNOPSIS: -Starting Date/Time: 20240219 08:28:47 -Ending Date/Time: 20240219 09:57:21 -Total Time: 01h:28m:54s +Starting Date/Time: 20240222 15:39:11 +Ending Date/Time: 20240222 17:12:31 +Total Time: 01h:33m:46s Compiles Completed: 39/39 Tests Completed: 182/182 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 12934ee963..907da481a6 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -681a70733ad51929905514527b6d5a497cd17776 +b675ab09f5d50068fdcc833fcce348b9df550362 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 620e48fe75d92aa607af7e21f2d8691baddd2851 CICE-interface/CICE (CICE6.0.0-445-g620e48f) 624920ddbd819c76ec37591c24e872308201810e CMEPS-interface/CMEPS (cmeps_v0.4.1-2304-g624920d) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0fe9ba3020ad2f744ead7323bda414497aa33632 FV3 (remotes/origin/HEAD) + 8e642bba26de02bbd28b8f18f5ea25f9de6e84b4 FV3 (remotes/origin/HEAD-16-g8e642bb) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) 35789c757766e07f688b4c0c7c5229816f224b09 HYCOM-interface/HYCOM (2.3.00-121-g35789c7) c8a7325c040b4cb1327c55c8248e8e66972239a5 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-9878-gc8a7325c0) @@ -25,235 +25,235 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240213 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_22069 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_170835 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:59, 22:35] -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:45, 01:38](2972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:25, 11:46] -PASS -- TEST 'cpld_control_gfsv17_intel' [51:27, 01:59](1597 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:26, 01:45](1716 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:21, 01:48](847 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [51:28, 01:15](1571 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:19, 10:17] -PASS -- TEST 'cpld_debug_gfsv17_intel' [52:34, 02:01](1603 MB) - -PASS -- COMPILE 's2swa_intel' [25:07, 24:31] -PASS -- TEST 'cpld_control_p8_intel' [38:46, 01:46](3002 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [38:46, 01:55](3003 MB) -PASS -- TEST 'cpld_restart_p8_intel' [29:59, 01:26](3060 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [38:45, 01:44](3030 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [29:59, 01:22](3079 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [38:41, 01:22](3314 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [38:39, 01:46](2999 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [38:03, 01:38](2924 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [37:49, 02:14](3001 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [37:56, 04:39](3950 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:43, 04:09](4252 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [37:22, 01:13](2969 MB) - -PASS -- COMPILE 's2sw_intel' [33:51, 32:36] -PASS -- TEST 'cpld_control_noaero_p8_intel' [29:59, 01:36](1587 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [29:53, 01:43](1633 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:18, 09:53] -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [53:35, 01:10](1630 MB) - -PASS -- COMPILE 's2s_intel' [14:31, 13:48] -PASS -- TEST 'cpld_control_c48_intel' [49:20, 01:08](2642 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:42, 16:34] -PASS -- TEST 'cpld_control_p8_faster_intel' [46:10, 01:18](3005 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:33] -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:15, 01:17](1603 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [29:34, 01:55](900 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:20, 01:58](1573 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:37, 15:48] -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [47:16, 01:07](1617 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:04, 10:43] -PASS -- TEST 'control_flake_intel' [42:30, 00:23](577 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [42:30, 00:54](522 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [42:30, 00:46](528 MB) -PASS -- TEST 'control_latlon_intel' [42:30, 00:47](522 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [42:30, 00:55](526 MB) -PASS -- TEST 'control_c48_intel' [42:29, 01:07](715 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [42:29, 01:03](715 MB) -PASS -- TEST 'control_c192_intel' [42:30, 00:46](642 MB) -PASS -- TEST 'control_c384_intel' [42:34, 01:15](952 MB) -PASS -- TEST 'control_c384gdas_intel' [42:34, 02:03](1092 MB) -PASS -- TEST 'control_stochy_intel' [42:30, 00:25](528 MB) -PASS -- TEST 'control_stochy_restart_intel' [39:57, 01:04](333 MB) -PASS -- TEST 'control_lndp_intel' [42:30, 00:30](529 MB) -PASS -- TEST 'control_iovr4_intel' [42:30, 00:51](522 MB) -PASS -- TEST 'control_iovr5_intel' [42:30, 00:53](524 MB) -PASS -- TEST 'control_p8_intel' [42:30, 01:48](1511 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [42:30, 02:05](1504 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [42:30, 02:05](1510 MB) -PASS -- TEST 'control_restart_p8_intel' [36:57, 01:13](690 MB) -PASS -- TEST 'control_noqr_p8_intel' [42:30, 01:43](1487 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [36:57, 01:11](698 MB) -PASS -- TEST 'control_decomp_p8_intel' [42:30, 01:41](1497 MB) -PASS -- TEST 'control_2threads_p8_intel' [42:30, 01:12](1594 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:30, 01:25](1498 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:30, 01:14](1570 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:30, 02:01](1511 MB) -PASS -- TEST 'merra2_thompson_intel' [39:56, 01:43](1516 MB) -PASS -- TEST 'regional_control_intel' [38:50, 00:25](605 MB) -PASS -- TEST 'regional_restart_intel' [32:52, 00:37](779 MB) -PASS -- TEST 'regional_decomp_intel' [36:56, 01:12](605 MB) -PASS -- TEST 'regional_2threads_intel' [36:41, 01:01](664 MB) -PASS -- TEST 'regional_noquilt_intel' [36:39, 00:33](1138 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [36:38, 00:31](606 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [36:37, 00:25](608 MB) -PASS -- TEST 'regional_wofs_intel' [35:25, 00:26](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [30:49, 30:04] -PASS -- TEST 'rap_control_intel' [21:38, 01:33](918 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:39, 01:33](1092 MB) -PASS -- TEST 'rap_decomp_intel' [21:29, 01:25](919 MB) -PASS -- TEST 'rap_2threads_intel' [21:19, 01:36](1007 MB) -PASS -- TEST 'rap_restart_intel' [12:41, 01:44](784 MB) -PASS -- TEST 'rap_sfcdiff_intel' [20:31, 02:05](916 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [20:31, 01:52](916 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:02, 02:11](787 MB) -PASS -- TEST 'hrrr_control_intel' [20:23, 01:37](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:07, 01:03](909 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [19:02, 01:49](994 MB) -PASS -- TEST 'hrrr_control_restart_intel' [14:47, 01:16](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:00, 02:08](911 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:00, 01:02](1876 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:43, 01:10](1863 MB) - -PASS -- COMPILE 'csawmg_intel' [18:29, 17:07] -PASS -- TEST 'control_csawmg_intel' [32:42, 00:46](598 MB) -PASS -- TEST 'control_csawmgt_intel' [32:15, 00:54](599 MB) -PASS -- TEST 'control_ras_intel' [31:48, 00:22](562 MB) - -PASS -- COMPILE 'wam_intel' [19:48, 18:43] -PASS -- TEST 'control_wam_intel' [29:07, 01:09](269 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [11:02, 09:42] -PASS -- TEST 'control_p8_faster_intel' [35:25, 01:08](1501 MB) -PASS -- TEST 'regional_control_faster_intel' [35:07, 00:48](612 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:41, 04:41] -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:04, 01:43](684 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [33:21, 01:35](690 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:34, 01:18](693 MB) -PASS -- TEST 'control_lndp_debug_intel' [30:57, 00:20](693 MB) -PASS -- TEST 'control_csawmg_debug_intel' [30:45, 01:34](731 MB) -PASS -- TEST 'control_csawmgt_debug_intel' [30:42, 01:38](729 MB) -PASS -- TEST 'control_ras_debug_intel' [30:39, 00:38](705 MB) -PASS -- TEST 'control_diag_debug_intel' [30:38, 00:41](744 MB) -PASS -- TEST 'control_debug_p8_intel' [30:32, 01:14](1518 MB) -PASS -- TEST 'regional_debug_intel' [30:21, 00:21](630 MB) -PASS -- TEST 'rap_control_debug_intel' [30:13, 00:34](1073 MB) -PASS -- TEST 'hrrr_control_debug_intel' [29:48, 01:23](1066 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [28:49, 01:10](1071 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [28:47, 01:11](1070 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [28:32, 01:20](1073 MB) -PASS -- TEST 'rap_diag_debug_intel' [28:28, 01:10](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:05, 00:23](1072 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [27:44, 01:24](1076 MB) -PASS -- TEST 'rap_lndp_debug_intel' [27:07, 01:14](1081 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [26:32, 01:51](1074 MB) -PASS -- TEST 'rap_noah_debug_intel' [26:31, 00:26](1072 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [26:25, 01:44](1078 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [25:28, 00:33](1068 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [25:27, 00:55](1066 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [25:19, 00:42](1074 MB) -PASS -- TEST 'rap_flake_debug_intel' [24:58, 00:34](1073 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [24:31, 02:03](1082 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:19, 16:17] -PASS -- TEST 'control_wam_debug_intel' [23:55, 01:18](297 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:49, 09:17] -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [23:56, 01:47](952 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [23:48, 01:42](793 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [23:20, 02:29](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:20, 01:42](854 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [22:34, 02:06](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:31, 02:31](784 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [15:46, 02:32](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:16, 00:51](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [22:26, 21:13] -PASS -- TEST 'conus13km_control_intel' [18:32, 01:36](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:56, 00:58](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [13:50, 00:54](888 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:18, 12:59] -PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:28, 01:53](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:10, 11:50] -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [22:19, 00:28](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [21:49, 00:35](954 MB) -PASS -- TEST 'conus13km_debug_intel' [18:09, 00:49](1034 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:16, 00:45](712 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:16, 00:39](1035 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 00:49](1101 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:21, 12:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:21, 01:34](981 MB) - -PASS -- COMPILE 'hafsw_intel' [11:13, 09:54] -PASS -- TEST 'hafs_regional_atm_intel' [16:24, 01:40](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:11, 01:10](970 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:05, 02:12](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:50, 01:47](695 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:48, 02:23](706 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:58, 01:23](387 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:48, 01:33](411 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:59, 01:58](283 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:15, 02:27](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:54, 01:50](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:52, 01:07](420 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [12:30, 00:55](490 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [11:36, 00:26](314 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:12, 15:07] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [11:05, 00:52](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [12:50, 11:51] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:51, 01:19](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:50, 00:58](707 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:39, 15:30] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:29, 01:22](715 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:38, 12:17] -PASS -- TEST 'hafs_regional_docn_intel' [09:25, 01:15](659 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:11, 01:37](645 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:01, 00:47](880 MB) - -PASS -- COMPILE 'atml_intel' [17:14, 16:48] -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:01, 01:23](1536 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 01:32](1549 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [01:03, 00:51](739 MB) - -PASS -- COMPILE 'atmaero_intel' [12:41, 12:06] -PASS -- TEST 'atmaero_control_p8_intel' [08:24, 01:52](2854 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:19, 01:23](2908 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 01:15](2925 MB) - -PASS -- COMPILE 'atmaq_intel' [16:00, 14:39] - -PASS -- COMPILE 'atmaq_debug_intel' [08:13, 06:55] -PASS -- TEST 'regional_atmaq_debug_intel' [08:09, 01:14](4443 MB) +PASS -- COMPILE 's2swa_32bit_intel' [33:31, 32:47] +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:23, 01:16](2972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:49, 16:01] +PASS -- TEST 'cpld_control_gfsv17_intel' [41:11, 02:27](1592 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:44, 02:08](1709 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:28, 01:22](845 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:12, 01:28](1569 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:21, 04:47] +PASS -- TEST 'cpld_debug_gfsv17_intel' [52:41, 02:12](1601 MB) + +PASS -- COMPILE 's2swa_intel' [11:33, 11:04] +PASS -- TEST 'cpld_control_p8_intel' [46:27, 01:25](3003 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [46:27, 01:39](3002 MB) +PASS -- TEST 'cpld_restart_p8_intel' [38:05, 01:45](3059 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [46:27, 01:20](3027 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [38:05, 01:31](3080 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [46:27, 01:12](3316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [46:27, 01:26](3000 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [46:28, 01:33](2924 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [46:27, 01:34](3004 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [46:36, 03:46](3951 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:22, 03:58](4254 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [46:27, 01:54](2970 MB) + +PASS -- COMPILE 's2sw_intel' [24:04, 23:24] +PASS -- TEST 'cpld_control_noaero_p8_intel' [33:57, 01:51](1585 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [33:57, 02:02](1636 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:31, 09:54] +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [47:29, 00:58](1633 MB) + +PASS -- COMPILE 's2s_intel' [24:04, 23:45] +PASS -- TEST 'cpld_control_c48_intel' [33:56, 00:47](2651 MB) + +PASS -- COMPILE 's2swa_faster_intel' [38:44, 37:27] +PASS -- TEST 'cpld_control_p8_faster_intel' [19:15, 01:56](3003 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [11:33, 11:16] +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:27, 01:43](1598 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:28, 00:55](900 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:41, 01:00](1581 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:29, 09:13] +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [48:31, 01:14](1617 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:38, 34:06] +PASS -- TEST 'control_flake_intel' [18:01, 00:37](576 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:01, 00:54](521 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 00:56](529 MB) +PASS -- TEST 'control_latlon_intel' [17:56, 00:53](522 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:49, 01:04](528 MB) +PASS -- TEST 'control_c48_intel' [17:46, 01:10](718 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:08, 00:58](714 MB) +PASS -- TEST 'control_c192_intel' [17:08, 00:28](641 MB) +PASS -- TEST 'control_c384_intel' [16:52, 02:03](952 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 01:55](1089 MB) +PASS -- TEST 'control_stochy_intel' [14:54, 00:28](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [12:19, 01:03](331 MB) +PASS -- TEST 'control_lndp_intel' [14:23, 00:32](527 MB) +PASS -- TEST 'control_iovr4_intel' [14:21, 00:46](525 MB) +PASS -- TEST 'control_iovr5_intel' [14:16, 00:44](525 MB) +PASS -- TEST 'control_p8_intel' [14:11, 01:38](1498 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [14:09, 02:01](1511 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [14:01, 02:01](1504 MB) +PASS -- TEST 'control_restart_p8_intel' [09:00, 01:03](692 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:46, 01:38](1495 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:38, 00:41](699 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:42, 01:33](1497 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:30, 01:09](1594 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:29, 01:11](1510 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:22, 01:01](1558 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:29, 01:49](1511 MB) +PASS -- TEST 'merra2_thompson_intel' [12:27, 01:32](1513 MB) +PASS -- TEST 'regional_control_intel' [12:21, 00:22](610 MB) +PASS -- TEST 'regional_restart_intel' [06:36, 00:30](779 MB) +PASS -- TEST 'regional_decomp_intel' [12:17, 01:07](607 MB) +PASS -- TEST 'regional_2threads_intel' [12:04, 01:01](666 MB) +PASS -- TEST 'regional_noquilt_intel' [11:57, 00:29](1141 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:24, 00:30](608 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:13, 00:23](609 MB) +PASS -- TEST 'regional_wofs_intel' [11:07, 01:04](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [18:54, 17:44] +PASS -- TEST 'rap_control_intel' [29:35, 01:45](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [29:36, 01:22](1089 MB) +PASS -- TEST 'rap_decomp_intel' [29:35, 01:31](917 MB) +PASS -- TEST 'rap_2threads_intel' [29:35, 01:42](1009 MB) +PASS -- TEST 'rap_restart_intel' [20:21, 01:25](786 MB) +PASS -- TEST 'rap_sfcdiff_intel' [29:35, 02:03](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [29:35, 01:49](916 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:01, 01:52](785 MB) +PASS -- TEST 'hrrr_control_intel' [29:35, 00:59](913 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [29:35, 00:55](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [29:36, 01:22](996 MB) +PASS -- TEST 'hrrr_control_restart_intel' [24:23, 01:04](742 MB) +PASS -- TEST 'rrfs_v1beta_intel' [29:35, 01:15](906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [29:35, 00:58](1878 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [29:35, 01:18](1862 MB) + +PASS -- COMPILE 'csawmg_intel' [09:29, 08:59] +PASS -- TEST 'control_csawmg_intel' [37:59, 00:30](600 MB) +PASS -- TEST 'control_csawmgt_intel' [37:59, 00:35](599 MB) +PASS -- TEST 'control_ras_intel' [37:59, 01:03](560 MB) + +PASS -- COMPILE 'wam_intel' [11:36, 10:31] +PASS -- TEST 'control_wam_intel' [34:51, 01:00](272 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 22:13] +PASS -- TEST 'control_p8_faster_intel' [23:10, 01:59](1508 MB) +PASS -- TEST 'regional_control_faster_intel' [21:10, 00:34](610 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:39, 11:08] +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [29:31, 01:17](691 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [29:31, 01:22](692 MB) +PASS -- TEST 'control_stochy_debug_intel' [29:31, 00:52](690 MB) +PASS -- TEST 'control_lndp_debug_intel' [29:31, 01:12](698 MB) +PASS -- TEST 'control_csawmg_debug_intel' [29:31, 00:33](732 MB) +PASS -- TEST 'control_csawmgt_debug_intel' [29:31, 00:47](730 MB) +PASS -- TEST 'control_ras_debug_intel' [29:31, 01:10](704 MB) +PASS -- TEST 'control_diag_debug_intel' [29:31, 01:13](747 MB) +PASS -- TEST 'control_debug_p8_intel' [29:31, 01:05](1518 MB) +PASS -- TEST 'regional_debug_intel' [26:25, 01:08](631 MB) +PASS -- TEST 'rap_control_debug_intel' [26:02, 01:06](1076 MB) +PASS -- TEST 'hrrr_control_debug_intel' [25:37, 01:03](1070 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [24:59, 00:58](1071 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [24:57, 01:01](1074 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [24:57, 01:00](1077 MB) +PASS -- TEST 'rap_diag_debug_intel' [24:54, 00:56](1158 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [24:52, 00:45](1076 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:51, 00:58](1076 MB) +PASS -- TEST 'rap_lndp_debug_intel' [24:44, 01:04](1075 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [24:23, 00:57](1072 MB) +PASS -- TEST 'rap_noah_debug_intel' [23:42, 01:05](1074 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [23:41, 01:00](1074 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:59, 01:03](1073 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [20:59, 01:15](1067 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [20:54, 00:19](1075 MB) +PASS -- TEST 'rap_flake_debug_intel' [20:21, 01:01](1076 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:01, 01:25](1077 MB) + +PASS -- COMPILE 'wam_debug_intel' [21:08, 20:19] +PASS -- TEST 'control_wam_debug_intel' [10:53, 01:06](300 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:50, 12:35] +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [19:48, 01:22](952 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [19:47, 01:23](793 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [18:55, 01:59](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:48, 01:59](849 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [18:14, 01:32](839 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [18:12, 02:09](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:52, 01:27](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [10:48, 00:23](667 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:08, 20:12] +PASS -- TEST 'conus13km_control_intel' [10:24, 01:06](1004 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:34, 00:56](1005 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 00:50](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:51, 12:43] +PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:11, 01:29](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:39, 12:54] +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:23, 01:09](951 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:51, 00:21](950 MB) +PASS -- TEST 'conus13km_debug_intel' [09:19, 00:49](1039 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [09:08, 00:44](711 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 00:46](1036 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [08:39, 00:44](1103 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [19:53, 18:55] +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 01:05](978 MB) + +PASS -- COMPILE 'hafsw_intel' [12:44, 11:41] +PASS -- TEST 'hafs_regional_atm_intel' [08:20, 02:13](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:59, 00:43](963 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:22, 01:57](665 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [07:21, 02:06](699 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:11, 02:07](705 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 01:24](383 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:49, 01:29](401 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:47, 01:41](283 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:40, 02:27](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:34, 01:40](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:34, 01:03](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:36, 00:54](488 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:34, 00:22](320 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:24, 05:48] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:35, 01:04](510 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:54, 17:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [04:08, 00:58](528 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [04:08, 00:53](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:40, 11:13] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [04:43, 01:02](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:51, 16:09] +PASS -- TEST 'hafs_regional_docn_intel' [02:26, 01:42](666 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [02:26, 01:46](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [02:24, 00:38](880 MB) + +PASS -- COMPILE 'atml_intel' [21:02, 19:54] +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:59, 01:18](1549 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [56:59, 01:16](1540 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [50:18, 00:18](740 MB) + +PASS -- COMPILE 'atmaero_intel' [13:47, 12:34] +PASS -- TEST 'atmaero_control_p8_intel' [03:03, 01:31](2855 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [03:03, 00:55](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [03:03, 01:47](2921 MB) + +PASS -- COMPILE 'atmaq_intel' [13:45, 12:50] + +PASS -- COMPILE 'atmaq_debug_intel' [08:43, 08:28] +PASS -- TEST 'regional_atmaq_debug_intel' [04:14, 01:46](4434 MB) SYNOPSIS: -Starting Date/Time: 20240220 12:55:51 -Ending Date/Time: 20240220 14:18:54 -Total Time: 01h:23m:34s +Starting Date/Time: 20240223 15:01:47 +Ending Date/Time: 20240223 16:22:18 +Total Time: 01h:20m:56s Compiles Completed: 31/31 Tests Completed: 157/157 diff --git a/tests/rt.conf b/tests/rt.conf index f8abbc4158..854c935c7a 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -46,8 +46,8 @@ RUN | cpld_mpi_p8 | - noaacloud RUN | cpld_control_ciceC_p8 | - noaacloud | baseline | RUN | cpld_control_c192_p8 | - wcoss2 jet acorn s4 noaacloud | baseline | RUN | cpld_restart_c192_p8 | - wcoss2 jet acorn s4 noaacloud | | cpld_control_c192_p8 -RUN | cpld_bmark_p8 | - s4 jet derecho acorn noaacloud | baseline | -RUN | cpld_restart_bmark_p8 | - s4 jet derecho acorn noaacloud | | cpld_bmark_p8 +RUN | cpld_bmark_p8 | - s4 jet acorn noaacloud | baseline | +RUN | cpld_restart_bmark_p8 | - s4 jet acorn noaacloud | | cpld_bmark_p8 # Aerosol, no Wave RUN | cpld_s2sa_p8 | - noaacloud | baseline | @@ -71,8 +71,8 @@ RUN | cpld_control_c48 | #RUN | cpld_warmstart_c48 | - noaacloud | baseline | #RUN | cpld_restart_c48 | - noaacloud | | cpld_warmstart_c48 -COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - derecho noaacloud | fv3 | -RUN | cpld_control_p8_faster | - derecho noaacloud | baseline | +COMPILE | s2swa_faster | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DFASTER=ON | - noaacloud | fv3 | +RUN | cpld_control_p8_faster | - noaacloud | baseline | # Unstructured WW3 mesh COMPILE | s2sw_pdlib | intel | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON | - noaacloud | fv3 | @@ -216,7 +216,7 @@ COMPILE | rrfs_dyn32_phy32_debug | intel | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_H RUN | rap_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | hrrr_control_debug_dyn32_phy32 | - noaacloud | baseline | RUN | conus13km_debug | - noaacloud | baseline | -RUN | conus13km_debug_qr | - derecho noaacloud | | +RUN | conus13km_debug_qr | - noaacloud | | RUN | conus13km_debug_2threads | - derecho noaacloud | | RUN | conus13km_radar_tten_debug | - noaacloud | baseline | @@ -314,8 +314,8 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud COMPILE | atmaq | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -D32BIT=ON | - jet s4 | fv3 | #RUN | regional_atmaq | - jet s4 | baseline | -COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud derecho s4 | fv3 | -RUN | regional_atmaq_debug | - jet derecho s4 noaacloud | baseline | +COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | +RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### diff --git a/tests/rt.sh b/tests/rt.sh index 8571bac483..62f49d459f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -9,7 +9,7 @@ die() { echo "$@" >&2; exit 1; } usage() { set +x echo - echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -r | -w" + echo "Usage: $0 -a | -b | -c | -d | -e | -h | -k | -l | -m | -n | -o | -r | -w" echo echo " -a to use on for HPC queue" echo " -b create new baselines only for tests listed in " @@ -21,6 +21,7 @@ usage() { echo " -l runs test specified in " echo " -m compare against new baseline results" echo " -n run single test " + echo " -o compile only, skip tests" echo " -r use Rocoto workflow manager" echo " -w for weekly_test, skip comparing baseline results" echo @@ -180,6 +181,7 @@ EOF [[ $DEFINE_CONF_FILE == true ]] && echo "* (-l) - USE CONFIG FILE: ${TESTS_FILE}" >> "${REGRESSIONTEST_LOG}" [[ $RTPWD_NEW_BASELINE == true ]] && echo "* (-m) - COMPARE AGAINST CREATED BASELINES" >> "${REGRESSIONTEST_LOG}" [[ $RUN_SINGLE_TEST == true ]] && echo "* (-n) - RUN SINGLE TEST: ${SINGLE_OPTS}" >> "${REGRESSIONTEST_LOG}" + [[ $COMPILE_ONLY == true ]]&& echo "* 9 (-o) COMPILE ONLY, SKIP TESTS" >> "${REGRESSIONTEST_LOG}" [[ $delete_rundir == true ]] && echo "* (-d) - DELETE RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" [[ $skip_check_results == true ]] && echo "* (-w) - SKIP RESULTS CHECK" >> "${REGRESSIONTEST_LOG}" [[ $KEEP_RUNDIR == true ]] && echo "* (-k) - KEEP RUN DIRECTORY" >> "${REGRESSIONTEST_LOG}" @@ -258,7 +260,11 @@ EOF fi elif [[ $line =~ RUN ]]; then - + + if [[ $COMPILE_ONLY == true ]]; then + continue + fi + RMACHINES=$(echo "$line" | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') TEST_NAME=$(echo "$line" | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') GEN_BASELINE=$(echo "$line" | cut -d'|' -f4 | sed -e 's/^ *//' -e 's/ *$//') @@ -497,6 +503,7 @@ TEST_35D=false export skip_check_results=false export delete_rundir=false SKIP_ORDER=false +COMPILE_ONLY=false RTPWD_NEW_BASELINE=false TESTS_FILE='rt.conf' NEW_BASELINES_FILE='' @@ -504,7 +511,7 @@ DEFINE_CONF_FILE=false RUN_SINGLE_TEST=false ACCNR=${ACCNR:-""} -while getopts ":a:b:cl:mn:dwkreh" opt; do +while getopts ":a:b:cl:mn:dwkreoh" opt; do case $opt in a) ACCNR=$OPTARG @@ -520,6 +527,9 @@ while getopts ":a:b:cl:mn:dwkreh" opt; do TESTS_FILE=$OPTARG grep -q '[^[:space:]]' < "$TESTS_FILE" || die "${TESTS_FILE} empty, exiting..." ;; + o) + COMPILE_ONLY=true + ;; m) # redefine RTPWD to point to newly created baseline outputs RTPWD_NEW_BASELINE=true @@ -1064,6 +1074,10 @@ while read -r line || [ "$line" ]; do elif [[ $line == RUN* ]] ; then + if [[ $COMPILE_ONLY == true ]]; then + continue + fi + TEST_NAME=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') MACHINES=$( echo $line | cut -d'|' -f3 | sed -e 's/^ *//' -e 's/ *$//') CB=$( echo $line | cut -d'|' -f4)