diff --git a/UFSATM b/UFSATM index f4d191edaf..6277c9e14d 160000 --- a/UFSATM +++ b/UFSATM @@ -1 +1 @@ -Subproject commit f4d191edaf4fd1dcaaeabdd45a2f81d001d21c4d +Subproject commit 6277c9e14d87fd02cb3b559aa2c4862c3ce5de2e diff --git a/doc/UsersGuide/Makefile b/doc/UsersGuide/Makefile index 2b79cf2c86..3ba1c5bd74 100644 --- a/doc/UsersGuide/Makefile +++ b/doc/UsersGuide/Makefile @@ -3,7 +3,7 @@ # You can set these variables from the command line, and also # from the environment for the first two. -SPHINXOPTS = -a -n +SPHINXOPTS = -a -n -W --keep-going SPHINXBUILD = sphinx-build SOURCEDIR = source BUILDDIR = build diff --git a/doc/UsersGuide/requirements.in b/doc/UsersGuide/requirements.in index 26c778f4aa..d4a3c97475 100644 --- a/doc/UsersGuide/requirements.in +++ b/doc/UsersGuide/requirements.in @@ -1,3 +1,4 @@ -sphinx>=6.0.0 +sphinx==7.4.7 sphinx_rtd_theme sphinxcontrib-bibtex +requests==2.32.2 diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 9e47095cca..b0c4c19e68 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with Python 3.11 +# This file is autogenerated by pip-compile with Python 3.13 # by the following command: # # pip-compile requirements.in @@ -40,15 +40,17 @@ pygments==2.17.2 # via sphinx pyyaml==6.0.1 # via pybtex -requests==2.32.0 - # via sphinx +requests==2.32.2 + # via + # -r requirements.in + # sphinx six==1.16.0 # via # latexcodec # pybtex snowballstemmer==2.2.0 # via sphinx -sphinx==7.2.6 +sphinx==7.4.7 # via # -r requirements.in # sphinx-rtd-theme diff --git a/doc/UsersGuide/source/AutomatedTesting.rst b/doc/UsersGuide/source/AutomatedTesting.rst deleted file mode 100644 index 8655532a17..0000000000 --- a/doc/UsersGuide/source/AutomatedTesting.rst +++ /dev/null @@ -1,128 +0,0 @@ -.. _AutomatedTesting: - -***************** -Automated Testing -***************** - -The UFS Weather Model repository on GitHub employs two types of automated testing: - - #. CI/CD (Continuous Integration/Continuous Development) testing on the cloud - #. AutoRT on NOAA R&D platforms - -Both are application level tests and utilize the regression testing framework -discussed in :numref:`Section %s `. - -===== -CI/CD -===== - -The UFS Weather Model (:term:`WM`) uses GitHub Actions (GHA), a GitHub-hosted continuous integration service, -to perform CI/CD testing. Build jobs are done on GHA-provided virtual machines. Test jobs are -performed on the Amazon Web Services (AWS) cloud platform using a number of EC2 instances. -Builds and tests are carried out in a Docker container. The container includes a pre-installed version of the -:term:`HPC-Stack`, which includes all prerequisite libraries. Input data needed to run the tests -are stored as a separate Docker container. - -When a developer makes a pull request (PR) to the UFS WM repository, a code -manager may add the `run-ci` label, which triggers the CI/CD workflow. -The CI/CD workflow then executes the following steps: - - #. A check is performed to make sure the UFS Weather Model and its first level - subcomponents are up to date with the top of the ``develop`` branch. - - #. If the check is successful, build jobs are started on GHA-provided virtual machines - by downloading the HPC-Stack Docker container stored in Docker Hub. - - #. Once all build jobs are successful, the created executable files are stored as - artifacts in GHA. - - #. A number of AWS EC2 instances are started. - - #. Test jobs are started on AWS after downloading the HPC-Stack Docker container, - the executable file from the build job, and the input-data Docker container. - - #. When all tests are complete, EC2 instances are stopped. Test results are reported - on GitHub. - - -The GHA-related ``yaml`` scripts are located in the ``.github/workflows/`` directory. -``build_test.yml`` is the main workflow file, and ``aux.yml`` is an auxiliary -file responsible for (1) checking that the PR branch is up-to-date and -(2) starting/stopping the EC2 instances. - -Other CI-related scrips are located in the ``tests/ci/`` directory. ``ci.sh`` is the main script that -invokes Docker build and run. ``Dockerfile`` is used to build the UFS Weather Model. -Other shell and python scripts help with various tasks. For example: - - * ``repo_check.sh`` checks that the PR branch is up-to-date. - * ``check_status.py`` checks the status of EC2 instances. - * ``setup.py`` and ``ci.test`` configure the test cases to execute in the CI/CD workflow. - -.. COMMENT: It sounds like aux.yml and repo_check.sh do the same thing... What's the difference? - -======= -Auto RT -======= - -The Automated Regression Testing (AutoRT) system is a python program that automates the process -of regression testing on NOAA HPC platforms. -It contains the files in :numref:`Table %s ` below: - -.. _autoRT-files: -.. table:: *Files for Automated Regression Testing (AutoRT) system* - - +-------------------+-----------------------------------------------------+ - | **File Name** | **Description** | - +===================+=====================================================+ - | start_rt_auto.sh | Verifies HPC name, sets the python paths | - +-------------------+-----------------------------------------------------+ - | rt_auto.py | Python interface between the HPC and the github API | - +-------------------+-----------------------------------------------------+ - | jobs/bl.py | Functions for the baseline job | - +-------------------+-----------------------------------------------------+ - | jobs/rt.py | Functions for the regression test job | - +-------------------+-----------------------------------------------------+ - ------------------ -AutoRT Workflow ------------------ - -On supported HPC systems, a :term:`cron job` runs the ``start_rt_auto.sh`` bash script every 15 minutes. -This script checks the HPC name and sets certain python paths. Then, it runs ``rt_auto.py``, -which uses the Github API (through pyGitHub) to check the labels on pull requests to -``ufs-weather-model``. If a PR label matches the HPC name -(e.g., hera-intel-RT or derecho-gnu-BL), the label provides the HPC -with the compiler and job information to run a test or task on the machine. -If no PR label matches HPC name, the script exits. - -For example, a PR labeled ``gaea-intel-BL`` will be recognized by the HPC machine 'Gaea'. -It will set the ``RT_COMPILER`` variable to 'intel' and run the baseline creation script (``bl.py``). -This script creats a job class that contains all information from the machine that the job will need to run. -That information is sent into the ``jobs/rt[bl].py`` script. - -``rt.py`` sets directories for storage, gets repo information, runs the regression test, and -completes any required post processing. - -.. code-block:: python3 - - def run(job_obj): - logger = logging.getLogger('RT/RUN') - workdir = set_directories(job_obj) - branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) - run_regression_test(job_obj, pr_repo_loc) - post_process(job_obj, pr_repo_loc, repo_dir_str, branch) - -``bl.py``: (similar to ``rt.py``) Adds functionality to create baselines before running regression testing. - -.. code-block:: python3 - :emphasize-lines: 5,6,7 - - def run(job_obj): - logger = logging.getLogger('BL/RUN') - workdir, rtbldir, blstore = set_directories(job_obj) - pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) - bldate = get_bl_date(job_obj, pr_repo_loc) - bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' - bldirbool = check_for_bl_dir(bldir, job_obj) - run_regression_test(job_obj, pr_repo_loc) - post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 406c528940..77fce82048 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -10,7 +10,7 @@ Supported Platforms & Compilers Before running the Weather Model (:term:`WM`), users should determine which of the :ref:`levels of support ` is applicable to their system. Generally, Level 1 & 2 systems are restricted to those with access -through NOAA and its affiliates. These systems are named (e.g., Hera, Orion, Derecho). +through NOAA and its affiliates. These systems are named (e.g., Ursa, Orion, Derecho). Level 3 & 4 systems include certain personal computers or non-NOAA-affiliated HPC systems. The prerequisite software libraries for building the WM already exist in a centralized location on Level 1/preconfigured systems, so users may skip directly to :ref:`getting the data ` and downloading the code. @@ -37,29 +37,28 @@ The WM uses two categories of libraries, which are available as a bundle via Common Modules ---------------- -As of February 24, 2025, the UFS WM Regression Tests (:term:`RTs `) on Level 1 systems use the following common modules: +As of October 20, 2025, the UFS WM Regression Tests (:term:`RTs `) on Level 1 systems use the following common modules: .. code-block:: console bacio/2.4.1 - crtm/2.4.0 - esmf/8.6.0 - fms/2024.01 + crtm/2.4.0.1 + esmf/8.8.0 + fms/2024.02 g2/3.5.1 g2tmpl/1.13.0 - gftl-shared/1.6.1 - hdf5/1.14.0 - ip/4.3.0 + gftl-shared/1.9.0 + hdf5/1.14.3 + ip/5.1.0 jasper/2.0.32 libpng/1.6.37 - mapl/2.40.3-esmf-8.6.0 + mapl/2.53.4-esmf-8.8.0 netcdf-c/4.9.2 netcdf-fortran/4.6.1 - parallelio/2.5.10 + parallelio/2.6.2 scotch/7.0.4 sp/2.5.0 w3emc/2.10.0 - zlib/1.2.13 The most updated list of common modules can be viewed in ``ufs_common.lua`` :wm-repo:`here `. @@ -91,8 +90,8 @@ the data required to run the WM RTs are already available at the following ``DIS - /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT/ * - Gaea-C6 - /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT - * - Hera - - /scratch2/NAGAPE/epic/UFS-WM_RT + * - Ursa + - /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT * - Hercules - /work/noaa/epic/hercules/UFS-WM_RT * - NOAA Cloud (Level 2) @@ -106,8 +105,8 @@ the data required to run the WM RTs are already available at the following ``DIS Within ``DISKNM``, input data for the UFS WM is located at the following locations: - * **INPUTDATA_ROOT**: ``${DISKNM}/NEMSfv3gfs/input-data-20240501`` - * **INPUTDATA_ROOT_WW3** ``${INPUTDATA_ROOT}/WW3_input_data_20250212`` + * **INPUTDATA_ROOT**: ``${DISKNM}/NEMSfv3gfs/input-data-20250507`` + * **INPUTDATA_ROOT_WW3** ``${INPUTDATA_ROOT}/WW3_input_data_20250807`` * **INPUTDATA_ROOT_BMIC**: ``${DISKNM}/NEMSfv3gfs/BM_IC-20220207`` * **INPUTDATA_LM4**: ``${INPUTDATA_ROOT}/LM4_input_data`` @@ -118,10 +117,10 @@ The regression testing script (``rt.sh``) has certain default data directories ( The corresponding data is publicly available in the data bucket. To view the data, users can visit https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html. Users can download the data and update the ``rt.sh`` script to point to the appropriate locations in order to run RTs on their own system: -* ``INPUTDATA_ROOT``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#input-data-20240501/ -* ``INPUTDATA_ROOT_WW3`` https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#input-data-20240501/WW3_input_data_20240214/ +* ``INPUTDATA_ROOT``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#input-data-20250507/ +* ``INPUTDATA_ROOT_WW3``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#input-data-20250507/WW3_input_data_20250807/ * ``INPUTDATA_ROOT_BMIC``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#BM_IC-20220207/ -* ``INPUTDATA_LM4``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#LM4_input_data +* ``INPUTDATA_LM4``: https://noaa-ufs-regtests-pds.s3.amazonaws.com/index.html#input-data-20250507/LM4_input_data/ To download data, users must select the files they want from the bucket and download them either in their browser, via a ``wget`` command, or through the AWS CLI. @@ -165,12 +164,12 @@ On NOAA Level 1 & 2 Systems Modulefiles for :ref:`preconfigured platforms ` are located in ``modulefiles/ufs_.``. For example, to load the modules from the -``ufs-weather-model`` directory on Hera: +``ufs-weather-model`` directory on Ursa: .. code-block:: console module use modulefiles - module load ufs_hera.intel + module load ufs_ursa.intel Note that loading this module file will also set the CMake environment variables shown in :numref:`Table %s `. @@ -180,15 +179,15 @@ Note that loading this module file will also set the CMake environment variables .. table:: *CMake environment variables required to configure the build for the Weather Model* +-------------------------+----------------------------------------------+----------------------+ - | **EnvironmentVariable** | **Description** | **Hera Intel Value** | + | **EnvironmentVariable** | **Description** | **Ursa Intel Value** | +=========================+==============================================+======================+ - | CMAKE_C_COMPILER | Name of C compiler | mpiicc | + | CMAKE_C_COMPILER | Name of C compiler | mpiicx | +-------------------------+----------------------------------------------+----------------------+ - | CMAKE_CXX_COMPILER | Name of C++ compiler | mpiicpc | + | CMAKE_CXX_COMPILER | Name of C++ compiler | mpiicpx | +-------------------------+----------------------------------------------+----------------------+ | CMAKE_Fortran_COMPILER | Name of Fortran compiler | mpiifort | +-------------------------+----------------------------------------------+----------------------+ - | CMAKE_Platform | String containing platform and compiler name | hera.intel | + | CMAKE_Platform | String containing platform and compiler name | ursa.intel | +-------------------------+----------------------------------------------+----------------------+ On Other Systems @@ -209,238 +208,23 @@ The UFS Weather Model can be built in one of several configurations (see :numref The ``CMAKE_FLAGS`` environment variable specifies which configuration to build using the ``-DAPP`` and ``-DCCPP_SUITES`` variables. Users set which components to build using ``-DAPP``. Users select the :term:`CCPP` suite(s) by setting the ``CCPP_SUITES`` environment variable at build time in order to have one or more CCPP physics suites available at runtime. -Multiple suites can be set. Additional variables, such as ``-D32BIT=ON``, -can be set if the user chooses. These options are documented in :numref:`Section %s `. -The following examples assume a bash shell. +Multiple suites can be set. Additional variables, such as ``-D32BIT=ON``, can be set if the user chooses. -ATM Configurations ---------------------- - -.. _atm: - -**Standalone ATM** - -For the ``ufs-weather-model ATM`` configuration (standalone :term:`ATM`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16" - -.. _atmw: - -**ATMW** - -For the ``ufs-weather-model ATMW`` configuration (standalone ATM coupled to :term:`WW3`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16" - -.. _atmaero: - -**ATMAERO** - -For the ``ufs-weather-model ATMAERO`` configuration (standalone ATM coupled to :term:`GOCART`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8" - -.. _atmaq: - -**ATMAQ** - -For the ``ufs-weather-model ATMAQ`` configuration (standalone ATM coupled to :term:`CMAQ`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2" - -.. _atml: - -**ATML** - -For the ``ufs-weather-model ATML`` configuration (standalone ATM coupled to :term:`LND`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATML -DCCPP_SUITES=FV3_GFS_v17_p8" - -.. _atmf: - -**ATMF** - -For the ``ufs-weather-model ATMF`` configuration (standalone ATM coupled to :term:`UFS Fire`): +For example, the ``ufs-weather-model ATMW`` configuration (standalone ATM coupled to :term:`WW3`) would look like: .. code-block:: console - export CMAKE_FLAGS="-DAPP=ATMF -DCCPP_SUITES=FV3_HRRR -D32BIT=ON" + export CMAKE_FLAGS="-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v17_p8" -.. _atm_ds2s: - -**ATM_DS2S** - -For the ``ufs-weather-model ATM_DS2S`` configuration (:term:`ATM`/:term:`DOCN`/:term:`DICE`): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATM_DS2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1" - - -.. _atm_ds2s-pcice: - -**ATM_DS2S-PCICE** - -For the ``ufs-weather-model ATM_DS2S-PCICE`` configuration (:term:`ATM`/:term:`DOCN`/:term:`CICE6` [prescribed ice mode]): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" - - -S2S Configurations ----------------------- - -.. _s2s: - -**S2S** - -For the ``ufs-weather-model S2S`` configuration (coupled atm/ice/ocean): +Other common examples include: .. code-block:: console - export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" + export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1" -To turn on debugging flags, add ``-DDEBUG=ON`` flag after ``-DAPP=S2S``. Users can allow verbose build messages by running: + export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1" -.. code-block:: console - - export BUILD_VERBOSE=1 - -To receive atmosphere-ocean fluxes from the CMEPS :term:`mediator`, add the argument ``-DCMEPS_AOFLUX=ON``. -For example: - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON" - -.. _s2sa: - -**S2SA** - -For the ``ufs-weather-model S2SA`` configuration (atm/ice/ocean/aerosols): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=S2SA -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp" - -.. _s2sw: - -**S2SW** - -For the ``ufs-weather-model S2SW`` configuration (atm/ice/ocean/wave): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" - -.. _s2swa: - -**S2SWA** - -For the ``ufs-weather-model S2SWA`` configuration (atm/ice/ocean/wave/aerosols): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp" - -.. _s2swal: - -**S2SWAL** - -For the ``ufs-weather-model S2SWAL`` configuration (atm/ice/ocean/wave/aerosols/land): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=S2SWAL -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1" - - -.. _ng-godas: - -NG-GODAS Configuration ------------------------- - -For the ``ufs-weather-model NG-GODAS`` configuration (atm/ocean/ice/data assimilation): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=NG-GODAS" - -HAFS Configurations ----------------------- - -.. _hafs: - -**HAFS** - -For the ``ufs-weather-model HAFS`` configuration (atm/ocean) in 32 bit: - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=HAFS -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf" - -.. _hafsw: - -**HAFSW** - -For the ``ufs-weather-model HAFSW`` configuration (atm/:term:`HYCOM`/wave) in 32-bit with moving nest: - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=HAFSW -D32BIT=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf" - -.. _hafs-mom6w: - -**HAFS-MOM6W** - -For the ``ufs-weather-model HAFS-MOM6`` configuration (atm/:term:`MOM6`/wave) in 32-bit with moving nest: - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=HAFS-MOM6W -DREGIONAL_MOM6=ON -DCDEPS_INLINE=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_thompson_nonsst -D32BIT=ON" - -.. _hafs-all: - -**HAFS-ALL** - -For the ``ufs-weather-model HAFS-ALL`` configuration (data/atm/ocean/wave) in 32 bit: - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=HAFS-ALL -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst" - -Land Configurations ----------------------- - -.. _lnd: - -**LND** - -For the ``ufs-weather-model LND`` configuration (:term:`DATM`/land [:term:`NOAHMP`]): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=LND" - -.. _lnd-lm4: - -**LM4** - -For the ``ufs-weather-model LND-LM4`` configuration (:term:`DATM`/land [:term:`LM4`]): - -.. code-block:: console - - export CMAKE_FLAGS="-DAPP=LND-LM4" +For the complete and most up-to-date list of ``-DAPP`` and ``DCCPP_SUITES`` options, see :ref:`Chapter 7 ` or the :wm-repo:`CMakeLists.txt ` file. ------------------ Building the Model @@ -454,7 +238,7 @@ If any of the environment variables have not been set, the ``build.sh`` script w .. code-block:: console - ./build.sh: line 11: CMAKE_Platform: Please set the CMAKE_Platform environment variable, e.g. [macosx.gnu|linux.gnu|linux.intel|hera.intel|...] + ./build.sh: line 11: CMAKE_Platform: Please set the CMAKE_Platform environment variable, e.g., [ufs_hercules.intel|ufs_hercules.gnu|ufs_ursa.intel|ufs_ursa.intelllvm|...] The WM can be built by running the following command from the ``ufs-weather-model`` directory: @@ -503,7 +287,11 @@ the defaults. * - Function Name - Description * - export_fv3_v16 - - Set variables to the FV3 default values for GFS v16 cases. This section will be removed once support for GFSv16 is officially depricated. + - Set variables to the FV3 default values for GFS v16 cases. This section will be removed once support for GFSv16 is officially deprecated. + * - export_mpas + - Set variables to the MPAS default values. + * - export_gfs_physics + - Set default values for GFS physics suite configurations. * - export_fv3 - Set variables to the FV3 default values. * - export_tiled @@ -643,7 +431,7 @@ The ``rt.conf`` file is a pipe-separated values (PSV) file grouped into sections #. **CMAKE Options** -- Provides all CMAKE options for the build. This typically includes the ``-DAPP`` and ``-DCCPP_SUITES`` flags; these flags set which components to build and which physics suites will be available at runtime. Additional options are documented in :numref:`Section %s `, but users can examine the :wm-repo:`CMakeLists.txt ` file for the most up-to-date list of options. #. **Machines** to run on (``-`` is used to ignore specified machines, ``+`` is used to run only on specified machines). For example: - * ``+ hera orion gaea``: Compile will only run on Hera, Orion, and Gaea machines + * ``+ ursa orion gaeac6``: Compile will only run on Ursa, Orion, and Gaea-C6 machines * ``- wcoss2 acorn``: Compile will NOT be run on WCOSS2 or Acorn #. ``fv3``: Set as fv3. Previously, this was used to run a test without compiling code (e.g., if FV3 was already present). @@ -667,12 +455,14 @@ in 32-bit mode and then runs the ``control`` test: RUN | cpld_control_gfsv17 | - noaacloud | baseline | RUN | cpld_control_gfsv17_iau | - noaacloud | baseline | cpld_control_gfsv17 RUN | cpld_restart_gfsv17 | - noaacloud | | cpld_control_gfsv17 + RUN | cpld_restart_gfsv17_iau | - noaacloud | | cpld_control_gfsv17_iau RUN | cpld_mpi_gfsv17 | - noaacloud | | The ``rt.conf`` file includes a large number of tests. If the user wants to run only specific tests, s/he can either (1) comment out the tests to be skipped (using the ``#`` prefix) -or (2) create a new file (e.g., ``my_rt.conf``), add the tests, and execute ``./rt.sh -l my_rt.conf``. +or (2) create a new file (e.g., ``my_rt.conf``), add the tests, and execute ``./rt.sh -a -l my_rt.conf``. +For the most up-to-date list of supported tests see the :wm-repo:`rt.conf ` file. .. _run-wm: @@ -694,7 +484,7 @@ Users can run a number of preconfigured regression test cases from the ``rt.conf using the regression test script ``rt.sh`` in the ``tests`` directory. ``rt.sh`` is the top-level script that calls lower-level scripts to build specified WM configurations, set up environments, and run tests. -Users should edit the ``rt.conf`` file to indicate which tests/configurations to run or create their own configuration file (e.g., ``my_tests.conf``) with the subset of tests they want to run. +Users should edit the ``rt.conf`` file to indicate which tests/configurations to run or create their own configuration file (e.g., ``my_tests.conf``) with the subset of tests from :wm-repo:`rt.conf `. On NOAA RDHPCS ------------------ @@ -706,7 +496,7 @@ regression tests by editing the ``rt.conf`` file and executing: ./rt.sh -a -l rt.conf -where ```` is to the account/project number where users submit their batch jobs. +where ```` is the account/project number where users submit their batch jobs. Users may need to add additional command line arguments or change information in the ``rt.sh`` file as well. This information is provided in :numref:`Section %s ` below. @@ -739,7 +529,7 @@ This section contains additional information on command line options and trouble Optional Arguments ^^^^^^^^^^^^^^^^^^^^^ -To display detailed information on how to use ``rt.sh``, users can simply run ``./rt.sh``, which will output the following options: +To display detailed information on how to use ``rt.sh``, users can simply run ``./rt.sh -h``, which will output the following options: .. code-block:: console @@ -774,7 +564,7 @@ create the configuration file (e.g. ``my_rt.conf``) based on the desired tests i .. code-block:: console - ./rt.sh -r -l my_rt.conf + ./rt.sh -a -r -l my_rt.conf adding additional arguments as desired. @@ -782,7 +572,7 @@ To run a single test, users can try the following command instead of creating a .. code-block:: console - ./rt.sh -r -k -n "control_p8 " + ./rt.sh -a -r -k -n "control_p8 " where ```` is ``gnu`` or ``intel``. @@ -796,8 +586,8 @@ correctly. If there is a problem with these or other variables (e.g., file paths .. code-block:: console :emphasize-lines: 5,6 - + echo 'Machine: ' hera.intel ' Account: ' nems - Machine: hera.intel Account: nems + + echo 'Machine: ' ursa.intel ' Account: ' nems + Machine: ursa.intel Account: nems + mkdir -p /scratch1/NCEPDEV/stmp4/First.Last mkdir: cannot create directory ‘/scratch1/NCEPDEV/stmp4/First.Last’: Permission denied ++ echo 'rt.sh error on line 370' @@ -811,67 +601,78 @@ Log Files ------------ The regression test generates a number of log files. The summary log file -``RegressionTests_..log`` in the ``tests`` directory compares -the results of the test against the baseline for a given platform and -reports the outcome: +``RegressionTests_.log`` in the ``tests`` directory provides a summary +of the regression test outcomes, which will look similar to this excerpt: + +.. code-block:: console + + PASS -- COMPILE 's2sw_pdlib_intel' [14:10, 12:22] ( 1 warnings 1036 remarks ) + PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:41, 11:00](2171 MB) + PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:49, 05:23](1636 MB) + PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:40, 15:30](2120 MB) + PASS -- TEST 'cpld_control_c48_5deg_intel' [13:30, 11:22](3029 MB) + FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c48_5deg_intel' [, ]( MB) + FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c48_5deg_intel' [, ]( MB) + +More detailed log files for each test are located in the ``tests/logs/log_`` directory: * ``'Missing file'`` results when the expected files from the simulation are not found and typically occurs when the simulation did not run to completion; * ``'OK'`` means that the simulation results are bit-for-bit identical to those of the baseline; * ``'NOT OK'`` when the results are **not** bit-for-bit identical; and - * ``'Missing baseline'`` when there is no baseline data to compare against. + * ``'Missing baseline'`` when there is no baseline data to compare against -More detailed log files are located in the ``tests/log_./`` directory. -The run directory path, which corresponds to the value of ``RUNDIR`` in the ``run_`` file, -is particularly useful. ``$RUNDIR`` is a self-contained (i.e., sandboxed) -directory with the executable file, initial conditions, model configuration files, -environment setup scripts and a batch job submission script. The user can run the test -by navigating into ``$RUNDIR`` and invoking the command: +The run directory also contains useful information. It is symlinked from the ``tests`` directory as ``run_dir``, +and the actual path is set in ``rt.sh`` via the ``$RUNDIR_ROOT`` variable. The run directory contains subdirectories +named ``run_`` for each test that is run via ``rt.sh``. These are self-contained +(i.e., sandboxed) directories with the executable file, initial conditions, model configuration files +(e.g., ``input.nml``, ``model_configure``, ``ufs.configure``), +environment setup scripts and a batch job submission script. +``err`` and ``out`` files in each ``run_`` directory contain information sent to standard error and standard out, +respectively. +Additionally, application-dependent files (e.g., ``ice_in`` for the Subseasonal-to-Seasonal Application) are included. +The user can rerun the test by navigating into the ``run_`` directory and invoking the command: .. code-block:: console sbatch job_card This can be particularly useful for debugging and testing code changes. Note that -``$RUNDIR`` is automatically deleted at the end of a successful regression test; -specifying the ``-k`` option retains the ``$RUNDIR``, e.g. ``./rt.sh -l rt.conf -k``. - -Inside the ``$RUNDIR`` directory are a number of model configuration files (``input.nml``, -``model_configure``, ``ufs.configure``) and other application -dependent files (e.g., ``ice_in`` for the Subseasonal-to-Seasonal Application). -These model configuration files are -generated by ``rt.sh`` from the template files in the ``tests/parm`` directory. +the run directory is automatically deleted at the end of a successful regression test; +specifying the ``-k`` option retains the run directory, e.g., ``./rt.sh -a -l rt.conf -k``. + +Model configuration files are generated by ``rt.sh`` from the template files in the ``tests/parm`` directory. Specific values used to fill in the template files are test-dependent and are set in two stages. First, default values are specified in ``tests/default_vars.sh``, and the default values are overriden if necessary by values specified in a test file ``tests/tests/``. For example, the variable ``DT_ATMOS`` is initially assigned 1800 in the function ``export_fv3`` of the script ``default_vars.sh``, but the test file -``tests/tests/control`` overrides this setting by reassigning 720 to the variable. +(e.g., ``tests/tests/control_p8_faster``) overrides this setting by reassigning 720 to the variable. -The files ``fv3_run`` and ``job_card`` also reside in the ``$RUNDIR`` directory. +The files ``fv3_run`` and ``job_card`` also reside in the run directory. These files are generated from the template files in the ``tests/fv3_conf`` directory. ``job_card`` is a platform-specific batch job submission script, while ``fv3_run`` prepares the initial conditions for the test by copying relevant data from the -input data directory of a given platform to the ``$RUNDIR`` directory. +input data directory of a given platform to the run directory. :numref:`Table %s ` summarizes the subdirectories discussed above. .. _RTSubDirs: -.. table:: *Regression Test Subdirectories* - - +-----------------+--------------------------------------------------------------------------------------+ - | **Name** | **Description** | - +=================+======================================================================================+ - | tests/ | Regression test root directory. Contains rt-related scripts and the summary log file | - +-----------------+--------------------------------------------------------------------------------------+ - | tests/tests/ | Contains specific test files | - +-----------------+--------------------------------------------------------------------------------------+ - | tests/parm/ | Contains templates for model configuration files | - +-----------------+--------------------------------------------------------------------------------------+ - | tests/fv3_conf/ | Contains templates for setting up initial conditions and a batch job | - +-----------------+--------------------------------------------------------------------------------------+ - | tests/log_*/ | Contains fine-grained log files | - +-----------------+--------------------------------------------------------------------------------------+ +.. list-table:: Regression Test Subdirectories + :widths: 25 75 + :header-rows: 1 + * - Name + - Description + * - ``tests/`` + - Regression test root directory. Contains rt-related scripts and the summary log file. + * - ``tests/tests/`` + - Contains specific test files. + * - ``tests/parm/`` + - Contains templates for model configuration files. + * - ``tests/fv3_conf/`` + - Contains templates for setting up initial conditions and a batch job. + * - ``tests/logs/log_/`` + - Contains fine-grained log files. .. _UsingOpnReqTest: @@ -883,9 +684,9 @@ tests in place of ``rt.sh``. Given the name of a test, ``opnReqTest`` carries ou Each test case addresses an aspect of the requirements that new operational implementations must satisfy. These requirements are shown in :numref:`Table %s `. For the following discussions on opnReqTest, the user should note the distinction between -``'test name'`` and ``'test case'``. Examples of test names are ``control``, ``cpld_control`` +``'test name'`` and ``'test case'``. Examples of test names are ``control_p8``, ``cpld_control_p8`` and ``regional_control`` which are all found in the ``tests/tests`` directory, whereas -test case refers to any one of the operational requirements: ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. +test case refers to any one of the operational requirements: ``thr``, ``fhz``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. .. _OperationalRequirement: @@ -906,6 +707,8 @@ test case refers to any one of the operational requirements: ``thr``, ``mpi``, ` +----------+-------------------------------------------------------------------------------+ | dbg | Model can be compiled and run to completion in debug mode | +----------+-------------------------------------------------------------------------------+ + | fhz | Early forecast output produces consistent results | + +----------+-------------------------------------------------------------------------------+ The operational requirement testing uses the same testing framework as the regression tests, so it is recommended that the user first read :numref:`Section %s `. @@ -960,12 +763,12 @@ executing ``./opnReqTest -h``, which produces the following results: Frequently used options are ``-e`` to use the ecFlow -workflow manager, and ``-k`` to keep the ``$RUNDIR``. The Rocoto workflow manager +workflow manager, and ``-k`` to keep the run directory. The Rocoto workflow manager is not used operationally and therefore is not an option. As discussed in :numref:`Section %s `, the variables and values used to configure model parameters and to set up initial conditions in the -``$RUNDIR`` directory are set up in two stages. First, ``tests/default_vars.sh`` +run directory are set up in two stages. First, ``tests/default_vars.sh`` define default values; then a specific test file in the ``tests/tests`` subdirectory either overrides the default values or creates new variables if required by the test. The regression test treats the different test cases shown in diff --git a/doc/UsersGuide/source/CAPE2020.rst b/doc/UsersGuide/source/CAPE2020.rst index 224de6f2fe..02b42616db 100644 --- a/doc/UsersGuide/source/CAPE2020.rst +++ b/doc/UsersGuide/source/CAPE2020.rst @@ -34,7 +34,7 @@ Users who have access to :term:`HPSS` can generate initial conditions (:term:`IC In order to generate all necessary configuration, data, input, and fix files to run a configuration similar to the July 2020 CAPE case for another date (still C48 resolution), the user first needs to run the base ``ufs_test.sh`` script for the default July 2020 CAPE case as described in :numref:`Section %s `. -To generate coldstart ICs via the UFS_UTILS ``gdas_init``/``chgres_cube`` utilities on an :term:`RDHPCS` with :term:`HPSS` access (e.g., Hera), the user can run the following commands: +To generate coldstart ICs via the UFS_UTILS ``gdas_init``/``chgres_cube`` utilities on an :term:`RDHPCS` with :term:`HPSS` access (e.g., Ursa), the user can run the following commands: .. code-block:: console @@ -45,7 +45,7 @@ To generate coldstart ICs via the UFS_UTILS ``gdas_init``/``chgres_cube`` utilit ./build_all.sh cd util/gdas_init -where ```` is Hera. +where ```` is ursa. Then, users will need to edit the ``config`` file to: @@ -100,7 +100,7 @@ The July 2020 CAPE case can be run as-is without adjusting the configuration. Us Different Date ^^^^^^^^^^^^^^^^ -Users may choose to run a similar UFS WM configuration for different dates with user-generated :term:`ICs` (see :numref:`Section %s ` for instructions on downloading this data from :term:`HPSS`). In this case, users will need to copy the ``gfs*.nc`` and ``sfc*.nc`` files from ``OUTDIR/gfs.YYYYMMDD/HH/model_data/atmos/input`` into the ``INPUT`` directory of a UFS WM run directory. (The run directory is set in ``create_xml.py`` as ``${PTMP}/${USER}/FV3_RT/rt_${pid}`` for HSD cases.) Note that this will only work when the run directory uses ICs of the same resolution. +Users may choose to run a similar UFS WM configuration for different dates with user-generated :term:`ICs` (see :numref:`Section %s ` for instructions on downloading this data from :term:`HPSS`). In this case, users will need to copy the ``gfs*.nc`` and ``sfc*.nc`` files from ``OUTDIR/gfs.YYYYMMDD/HH/model_data/atmos/input`` into the ``INPUT`` directory of a UFS WM run directory. (The run directory is set in ``${UFS_WM}/tests-dev/machine_config/create_xml.py`` as ``${PTMP}/${USER}/FV3_RT/rt_${pid}`` for HSD cases.) Note that this will only work when the run directory uses ICs of the same resolution. Additionally, users will need to adjust the model start time in the ``model_configure`` file. For example: diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index 2d3c344359..c5a3b064ee 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -24,11 +24,12 @@ Preconfigured (Level 1) systems for the UFS WM already have the required externa Currently, Level 1 (or Tier-1) platforms for regression testing are: * WCOSS2 (Intel) - * Gaea (Intel) - * Hera (Intel/GNU compilers) + * Gaea C6 (Intel) + * Ursa (Intel/GNU compilers) * Jet (Intel) * Orion (Intel) * Hercules (Intel/GNU compilers) + * Derecho (Intel/GNU compilers) * AWS Docker container (Intel) More information is available in the :wm-wiki:`UFS WM wiki `. @@ -46,52 +47,70 @@ Currently, Level 2 platforms for regression testing are: UFS Weather Model Hierarchical Repository Structure =================================================== -The UFS :term:`WM` repository supports the :term:`UFS` short- and medium-range weather applications (:term:`SRW` / :term:`MRW` Apps). The WM repository contains atmosphere, ocean, sea ice, land, and wave components, as well as some infrastructure components. Each of these subcomponents has its own repository. All the repositories are currently located in GitHub with public access to the broader community. :numref:`Table %s ` describes the list of repositories that comprise the UFS WM. +The UFS :term:`WM` repository supports the :term:`UFS` short-range weather applications (:term:`SRW`). The WM repository contains atmosphere, ocean, sea ice, land, and wave components, as well as some infrastructure components. Each of these subcomponents has its own repository. All the repositories are currently located in GitHub with public access to the broader community. :numref:`Table %s ` describes the list of repositories that comprise the UFS WM. .. _Repo_Structure: .. list-table:: *List of Repositories that comprise the ufs-weather-model* - :widths: 50 50 - :header-rows: 1 - - * - Repository Description - - Authoritative repository URL - * - Umbrella repository for the UFS Weather Model - - https://github.com/ufs-community/ufs-weather-model - * - Framework to connect the :term:`CCPP` library to a host model - - https://github.com/NCAR/ccpp-framework - * - CCPP library of physical parameterizations - - https://github.com/NCAR/ccpp-physics - * - Umbrella repository for the physics and dynamics of the atmospheric model (FV3) - - https://github.com/NOAA-EMC/fv3atm - * - :term:`FV3` dynamical core - - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere - * - Stochastic physics pattern generator - - https://github.com/NOAA-PSL/stochastic_physics - * - Modular Ocean Model (:term:`MOM6`) - - https://github.com/NOAA-EMC/MOM6 - * - HYbrid Coordinate Ocean Model (:term:`HYCOM`) - - https://github.com/NOAA-EMC/HYCOM-src - * - Los Alamos sea ice model (:term:`CICE6`) - - https://github.com/NOAA-EMC/CICE - * - NOAA/NCEP WAVEWATCH III Model (:term:`WW3`) - - https://github.com/NOAA-EMC/WW3 - * - The Goddard Chemistry Aerosol Radiation and Transport (:term:`GOCART`) - - https://github.com/GEOS-ESM/GOCART - * - NUOPC Community Mediator for Earth Prediction Systems (:term:`CMEPS`) - - https://github.com/NOAA-EMC/CMEPS - * - Community Data Models for Earth Prediction Systems (:term:`CDEPS`) - - https://github.com/NOAA-EMC/CDEPS - * - Air Quality Model (:term:`AQM`) - - https://github.com/NOAA-EMC/AQM - * - Noah-MP Land Surface Model (Noah-MP) - - https://github.com/NOAA-EMC/noahmp - * - NOAA-GFDL Land Model (:term:`LM4`) - - https://github.com/NOAA-GFDL/LM4-NUOPC-driver - * - Community Fire Behavior Model - - https://github.com/NOAA-EMC/fire_behavior - -In the table, the left-hand column contains a description of each repository, and the + :widths: 20 50 30 + :header-rows: 1 + + * - Repository name + - Repository Description + - Authoritative repository URL + * - UFS Weather Model + - Umbrella repository for the UFS Weather Model + - https://github.com/ufs-community/ufs-weather-model + * - CCPP Framework + - Framework to connect the :term:`CCPP` library to a host model + - https://github.com/NCAR/ccpp-framework + * - CCPP Physics + - CCPP library of physical parameterizations + - https://github.com/NCAR/ccpp-physics + * - UFSATM + - Umbrella repository for the physics and dynamics of the atmospheric model + - https://github.com/NOAA-EMC/ufsatm + * - GFDL_atmos_cubed_sphere + - :term:`FV3` dynamical core + - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere + * - Stochastic Physics + - Stochastic physics pattern generator + - https://github.com/NOAA-PSL/stochastic_physics + * - MOM6 + - Modular Ocean Model (:term:`MOM6`) + - https://github.com/NOAA-EMC/MOM6 + * - HYCOM-src + - HYbrid Coordinate Ocean Model (:term:`HYCOM`) + - https://github.com/NOAA-EMC/HYCOM-src + * - CICE + - Los Alamos sea ice model (:term:`CICE6`) + - https://github.com/NOAA-EMC/CICE + * - WW3 + - NOAA/NCEP WAVEWATCH III Model (:term:`WW3`) + - https://github.com/NOAA-EMC/WW3 + * - GOCART + - The Goddard Chemistry Aerosol Radiation and Transport (:term:`GOCART`) + - https://github.com/GEOS-ESM/GOCART + * - CMEPS + - NUOPC Community Mediator for Earth Prediction Systems (:term:`CMEPS`) + - https://github.com/NOAA-EMC/CMEPS + * - CDEPS + - Community Data Models for Earth Prediction Systems (:term:`CDEPS`) + - https://github.com/NOAA-EMC/CDEPS + * - AQM + - Air Quality Model (:term:`AQM`) + - https://github.com/NOAA-EMC/AQM + * - Noah-MP + - Noah-MP Land Surface Model (Noah-MP) + - https://github.com/NOAA-EMC/noahmp + * - LM4-NUOPC-driver + - NOAA-GFDL Land Model (:term:`LM4`) + - https://github.com/NOAA-GFDL/LM4-NUOPC-driver + * - Fire Behavior + - Community Fire Behavior Model + - https://github.com/NOAA-EMC/fire_behavior + +In the table, the left-hand column contains the name of each repository, the middle column contains the repository description and the right-hand column shows the GitHub location of the authoritative component repositories. The UFS WM currently uses Git submodules to manage these subcomponents. @@ -114,6 +133,7 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi │ ├── (datm) -------- CDEPS DATM │ ├── (docn) -------- CDEPS DOCN │ └── (dice) -------- CDEPS DICE + ├── ci ├── CICE-interface │ └── CICE -------- CICE6 sea ice model │ ├── (icepack) -------- Sea ice column physics @@ -127,21 +147,6 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi ├── doc -------- User Guide files ├── driver ├── fire_behavior -------- Community Fire Behavior Model - ├── FV3 -------- UFSAtm atmosphere model - │ ├── (atmos_cubed_sphere) -------- FV3 dynamical core - │ │ ├── (docs) - │ │ ├── (driver) - │ │ ├── (model) - │ │ └── (tools) - │ ├── (ccpp) -------- Common Community Physics Package - │ │ ├── (config) - │ │ ├── (driver) - │ │ ├── (framework) -------- CCPP framework - │ │ ├── (physics) -------- CCPP-compliant physics schemes - │ │ └── (suites) -------- CCPP physics suite definition files (SDFs) - │ ├── (cpl) -------- Coupling field data structures - │ ├── (io) -------- UFSAtm write grid comp code - │ └── (stochastic_physics) -------- Wrapper for stochastic physics ├── GOCART │ └── (ESMF) -------- GOCART model ├── HYCOM-interface @@ -171,6 +176,23 @@ The umbrella repository for the UFS WM is named ``ufs-weather-model``. Under thi ├── tests-dev -------- developmental testing framework │ ├── test_cases │ └── machine_config + ├── UFSATM -------- UFSATM atmosphere model + │ ├── (ccpp) -------- Common Community Physics Package + │ │ ├── (config) + │ │ ├── (driver) + │ │ ├── (framework) -------- CCPP framework + │ │ ├── (physics) -------- CCPP-compliant physics schemes + │ │ └── (suites) -------- CCPP physics suite definition files (SDFs) + │ ├── (cpl) -------- Coupling field data structures + │ ├── (fv3) + │ │ └── (atmos_cubed_sphere) -------- FV3 dynamical core + │ │ ├── (docs) + │ │ ├── (driver) + │ │ ├── (model) + │ │ └── (tools) + │ ├── (io) -------- UFSATM write grid component code + │ ├── (mpas) -------- MPAS dynamical core + │ └── (upp) -------- Unified Post Processor └── WW3 └── (model) -------- WW3 model └── (src) -------- NUOPC WW3 caps diff --git a/doc/UsersGuide/source/ConfigParameters.rst b/doc/UsersGuide/source/ConfigParameters.rst index ff24e8cb5f..0b394ef172 100644 --- a/doc/UsersGuide/source/ConfigParameters.rst +++ b/doc/UsersGuide/source/ConfigParameters.rst @@ -17,7 +17,7 @@ Configuration Options ``-DAPP``: Sets the :term:`WM` configuration to build. - Valid values: ``ATM``, ``ATMW``, ``ATMAERO``, ``ATMAQ``, ``ATMWM``, ``ATML``, ``ATMF``, ``ATM_DS2S``, ``ATM_DS2S-PCICE``, ``LND``, ``LND-LM4``, ``S2S``, ``S2SA``, ``S2SW``, ``S2SWA``, ``S2SL``, ``S2SWL``, ``S2SWAL``, ``NG-GODAS``, ``HAFS``, ``HAFSW``, ``HAFS-MOM6``, ``HAFS-MOM6W``, ``HAFS-ALL`` + Valid values: ``ATM``, ``ATMW``, ``ATMAERO``, ``ATMAQ``, ``ATML``, ``ATMF``, ``ATMMPAS``, ``ATM_DS2S``, ``ATM_DS2S-PCICE``, ``LND``, ``LND-LM4``, ``S2S``, ``S2SA``, ``S2SW``, ``S2SWA``, ``S2SL``, ``S2SWL``, ``S2SWAL``, ``NG-GODAS``, ``HAFS``, ``HAFSW``, ``HAFS-MOM6``, ``HAFS-MOM6W``, ``HAFS-ALL`` .. _suites: @@ -37,14 +37,15 @@ Physics Options | ``FV3_GFS_v17_p8_mynn`` | ``FV3_GFS_v17_p8_rrtmgp`` | ``FV3_GFS_v17_p8_ugwpv1`` + | ``FV3_GFS_v17_p8_ugwpv1_tempo`` | ``FV3_GFS_v16`` | ``FV3_GFS_v16_csawmg`` | ``FV3_GFS_v16_flake`` | ``FV3_GFS_v16_ras`` - | ``FV3_GFS_v15p2`` | ``FV3_GFS_v15_thompson_mynn_lam3km`` | ``FV3_global_nest_v1`` | ``FV3_HAFS_v1_gfdlmp_tedmf`` + | ``FV3_HAFS_v1_gfdlmpv3_tedmf`` | ``FV3_HAFS_v1_gfdlmp_tedmf_nonsst`` | ``FV3_HAFS_v1_thompson`` | ``FV3_HAFS_v1_thompson_nonsst`` @@ -52,6 +53,7 @@ Physics Options | ``FV3_HRRR`` | ``FV3_HRRR_c3`` | ``FV3_HRRR_gf`` + | ``FV3_ideal_mp_nssl`` | ``FV3_RAP`` | ``FV3_RAP_cires_ugwp`` | ``FV3_RAP_clm_lake`` @@ -63,56 +65,98 @@ Physics Options | ``FV3_RRFS_v1beta`` | ``FV3_RRFS_v1nssl`` | ``FV3_WoFS_v0`` + | ``MPAS_RRFS`` .. _other-build-options: Other Build Options ======================= -``-DCMEPS_AOFLUX``: (Default: OFF) - Enables atmosphere-ocean flux calculation in mediator. - Valid values: ``ON`` | ``OFF`` +``-D32BIT`` (Default: OFF) + Enable 32BIT (single precision arithmetic in dycore and fast physics). + Valid values: ``ON`` | ``OFF`` - .. COMMENT: But when/why would you do this? +``-DCCPP_32BIT`` (Default: OFF) + Enable CCPP_32BIT (single precision arithmetic in dycore and slow physics). + Valid values: ``ON`` | ``OFF`` -``-DDEBUG``: (Default: OFF) - Enables DEBUG mode. - Valid values: ``ON`` | ``OFF`` +``-DAVX2`` (Default: ON) + Enable AVX2 instruction set. + Valid values: ``ON`` | ``OFF`` - .. COMMENT: And what extras does DEBUG mode provide (that VERBOSE) doesn't? +``-DAVX`` (Default: OFF) + Enable AVX-I instruction set. + Valid values: ``ON`` | ``OFF`` -``-D32BIT``: (Default: OFF) - Enables 32-bit, single precision arithmetic in dycore and fast physics. - Valid values: ``ON`` | ``OFF`` +``-DSIMDMULTIARCH`` (Default: OFF) + Enable multi-target SIMD instruction sets. + Valid values: ``ON`` | ``OFF`` - .. COMMENT: But when/why would you do this? +``-DDEBUG`` (Default: OFF) + Enable DEBUG mode. + Valid values: ``ON`` | ``OFF`` -``-DCCPP_32BIT``: (Default: OFF) - Enables 32-bit, single precision arithmetic in slow physics. - Valid values: ``ON`` | ``OFF`` +``-DDISABLE_FMA`` (Default: OFF) + Disable Fused Multiply-Add instructions (workaround needed for AMD EPYC). + Valid values: ``ON`` | ``OFF`` - .. COMMENT: But when/why would you do this? +``-DINLINE_POST`` (Default: ON) + Enable inline post. + Valid values: ``ON`` | ``OFF`` -``-DMOVING_NEST``: (Default: OFF) - Enables moving nest code. - Valid values: ``ON`` | ``OFF`` +``-DMULTI_GASES`` (Default: OFF) + Enable MULTI_GASES. + Valid values: ``ON`` | ``OFF`` - .. COMMENT: But what does that mean? When/why is the moving nest used? +``-DMOVING_NEST`` (Default: OFF) + Enable moving nest code. + Valid values: ``ON`` | ``OFF`` -``-DMULTI_GASES``: (Default: OFF) - Enable ``MULTI_GASES``. - Valid values: ``ON`` | ``OFF`` +``-DREGIONAL_MOM6`` (Default: OFF) + Enable Regional MOM6. + Valid values: ``ON`` | ``OFF`` - .. COMMENT: But what does this DO?! And when/why is it used? +``-DOPENMP`` (Default: ON) + Enable OpenMP threading. + Valid values: ``ON`` | ``OFF`` +``-DPARALLEL_NETCDF`` (Default: OFF) + Enable parallel NetCDF. + Valid values: ``ON`` | ``OFF`` -.. COMMENT: Add any of the following options with -D in front??? - set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") - set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") - set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") - set(INLINE_POST OFF CACHE BOOL "Enable inline post") - set(OPENMP ON CACHE BOOL "Enable OpenMP threading") - set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") - set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +``-DJEDI_DRIVER`` (Default: OFF) + Enable JEDI as top level driver. + Valid values: ``ON`` | ``OFF`` +``-DCMEPS_AOFLUX`` (Default: OFF) + Enable atmosphere-ocean flux calculation in mediator. + Valid values: ``ON`` | ``OFF`` + +``-DPDLIB`` (Default: OFF) + Enable domain decomposition in WW3 via PDLIB with BT1. + Valid values: ``ON`` | ``OFF`` + +``-DPDLIB_BT4`` (Default: OFF) + Enable domain decomposition in WW3 via PDLIB with BT4. + Valid values: ``ON`` | ``OFF`` + +``-DCDEPS_INLINE`` (Default: OFF) + Enable CDEPS inline capability. + Valid values: ``ON`` | ``OFF`` + +``-DHYDRO`` (Default: OFF) + Enable hydrostatic set. + Valid values: ``ON`` | ``OFF`` + +``BUILD_WITH_IFI`` (Default: OFF) + Build UPP with In-Flight Icing (IFI) library if present. + Valid values: ``ON`` | ``OFF`` + +``REQUIRE_IFI`` (Default: OFF) + Abort if libIFI is not found ; enables BUILD_WITH_IFI=ON. + Valid values: ``ON`` | ``OFF`` + +``INTERNAL_IFI`` (Default: OFF) + Compile with IFI inside the executable, instead of a library. + Valid values: ``ON`` | ``OFF`` diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index 557750bd63..9a010498c8 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -78,7 +78,7 @@ For all systems, users will need to: .. code-block:: console - Job 7430255 finished for user Joe.Schmoe in partition hera with exit code 0:0 + Job 7430255 finished for user Joe.Schmoe in partition ursa with exit code 0:0 There is also a RESOURCE STATISTICS summary at the end of the test's ``out`` file. Errors will appear in the ``err`` file. Users can find log files with more detailed information in ``ufs-weather-model/tests/logs/log_`` (where platform is the name of the machine the user is running on, e.g., ``log_hercules``). @@ -224,10 +224,10 @@ tasks, as long as those components do not overlap (i.e., share the same PETs). An example of a global five-component coupled configuration ``ufs.configure`` appears at the end of this section. -FV3atm +UFSATM ^^^^^^ -The FV3atm component consists of one or more forecast grid components +The UFSATM component consists of one or more forecast grid components and write grid components. The MPI tasks for the forecast grid components are specified in the @@ -250,7 +250,7 @@ not support an ``8,8`` layout for a blocksize of 32. If ``layout = a ``blocksize=32``. A layout of ``4,6`` is supported for C96 with a blocksize of 32. -The FV3atm will utilize the write grid component if ``quilting`` is +The UFSATM will utilize the write grid component if ``quilting`` is set to .true. In this case, the required MPI tasks for the write grid component are the product of the ``write_groups`` and the ``write_tasks_per_group`` in the ``model_configure`` file. @@ -264,7 +264,7 @@ write grid component are the product of the ``write_groups`` and the In the above case, the write grid component requires 60 tasks. -The total number of MPI ranks for FV3atm is the sum of the forecast tasks and any +The total number of MPI ranks for UFSATM is the sum of the forecast tasks and any write grid component tasks. :: @@ -275,7 +275,7 @@ If ESMF-managed threading is used, the total number of PETs for the atmosphere component is given by the product of the number of threads requested and the total number of MPI ranks (both forecast and write grid component). If ``num_threads_atm`` is the number of threads -specified for the FV3atm component, in ``ufs.configure`` the ATM PET +specified for the UFSATM component, in ``ufs.configure`` the ATM PET bounds are given by: :: @@ -289,12 +289,12 @@ Note that in UFS WM, the ATM component is normally listed first in GOCART ^^^^^^ -GOCART shares the same grid and forecast tasks as FV3atm, but it does +GOCART shares the same grid and forecast tasks as UFSATM, but it does not have a separate write grid component in its NUOPC CAP. Also, while GOCART does not have threading capability, it shares the same data -structure as FV3atm and so it has to use the same number of threads -used by FV3atm. Therefore, the total number of MPI ranks and threads -in GOCART is the same as the those for the FV3atm forecast component +structure as UFSATM and so it has to use the same number of threads +used by UFSATM. Therefore, the total number of MPI ranks and threads +in GOCART is the same as the those for the UFSATM forecast component (i.e., excluding any write grid component). Currently, GOCART only runs on the global forecast grid component, for which only one namelist is needed. @@ -310,7 +310,7 @@ CMEPS ^^^^^ The mediator MPI tasks can overlap with other components and in UFS -the tasks are normally shared on the FV3atm forecast tasks. However, a +the tasks are normally shared on the UFSATM forecast tasks. However, a large number of tasks for the mediator is generally not recommended since it may cause slow performance. This means that the number of MPI tasks for CMEPS is given by @@ -620,7 +620,7 @@ Where can I find up-to-date documentation for the ``diag_table`` variables used =========================================================================================================== Information on ``diag_table`` variables has been added to the :ref:`diag_table section ` of the UFS Weather Model documentation. -Currently, only variables coming from fv3atm and MOM6 are included, but ``diag_table`` variables from other components will be added as time permits. +Currently, only variables coming from UFSATM and MOM6 are included, but ``diag_table`` variables from other components will be added as time permits. * :ref:`FV3ATM diag_table variables ` * `MOM6 diag_table variables `_ diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 8a0070b2eb..3cb92477db 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -36,7 +36,10 @@ Glossary CESM The `Community Earth System Model `_ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. - + + CFSR + The `Climate Forecast System Reanlysis `_ (CFSR) is a third generation reanalysis product. + chgres_cube The preprocessing software used to create initial and boundary condition files to "coldstart" the forecast model. It is part of :term:`UFS_UTILS`. @@ -113,6 +116,9 @@ Glossary ICs Initial conditions + + IMS + The `Interactive Multisensor Snow and Ice Mapping System `_. LM4 NUOPC NOAA-GFDL Land Model version 4 @@ -131,6 +137,9 @@ Glossary NCAR The `National Center for Atmospheric Research `_. + + NCEI + The `National Center for Environmental Information `_. NCEP National Centers for Environmental Prediction (NCEP) is a branch of the :term:`National Weather Service ` and consists of nine centers, including the :term:`Environmental Modeling Center `. More information can be found at https://www.weather.gov/ncep/. @@ -152,7 +161,10 @@ Glossary NG-GODAS Next Generation-Global Ocean Data Assimilation System. NG-GODAS is a UFS Weather Model configuration that couples ocean (:term:`MOM6`), sea ice (:term:`CICE6`), and Data Assimilation (DA) capabilities with the :term:`DATM` component of :term:`CDEPS`. - + + NIC + U.S. `National Ice Center `_. + NOAHMP Noah-MP The Noah Multi-Physics (Noah-MP) land surface model (LSM) is an open-source, community-developed LSM that has been incorporated into the UFS Weather Model (WM). It is a UFS WM land component. diff --git a/doc/UsersGuide/source/HSDcontainer.rst b/doc/UsersGuide/source/HSDcontainer.rst index 0cfbaac2b2..f6df08f136 100644 --- a/doc/UsersGuide/source/HSDcontainer.rst +++ b/doc/UsersGuide/source/HSDcontainer.rst @@ -7,7 +7,7 @@ Running UFS WM Idealized Cases in a Container ********************************************** -This chapter provides instructions for running the Unified Forecast System (:term:`UFS`) Weather Model (WM) Hierarchical System Develop (HSD) cases using a `Singularity/Apptainer `_ container. Normally, the details of building and running Earth system models will vary based on the computing platform because there are many possible combinations of operating systems, compilers, :term:`MPIs `, and package versions available. Installation via Singularity/Apptainer container reduces this variability and allows for a smoother experience building and running the UFS WM. This approach is recommended for users not running the UFS WM on a supported :wm-wiki:`Level 1 ` system (e.g., Hera, Orion). +This chapter provides instructions for running the Unified Forecast System (:term:`UFS`) Weather Model (WM) Hierarchical System Develop (HSD) cases using a `Singularity/Apptainer `_ container. Normally, the details of building and running Earth system models will vary based on the computing platform because there are many possible combinations of operating systems, compilers, :term:`MPIs `, and package versions available. Installation via Singularity/Apptainer container reduces this variability and allows for a smoother experience building and running the UFS WM. This approach is recommended for users not running the UFS WM on a supported :wm-wiki:`Level 1 ` system (e.g., Ursa, Orion). The container includes: spack-stack, Intel’s runtime environment, ufs-weather-model repository, and the prebuilt executables for the HSD cases. These are all the components needed to run the HSD cases besides the HSD data, which is discussed later in this chapter. @@ -113,7 +113,7 @@ On many NOAA :term:`RDHPCS`, a container named ``ubuntu22.04-intel-ue-1.6.0-wm-h +====================+========================================================+ | Gaea | /gpfs/f6/bil-fire8/world-shared/containers | +--------------------+--------------------------------------------------------+ - | Hera | /scratch3/NCEPDEV/nems/role.epic/containers | + | Ursa | /scratch3/NCEPDEV/nems/role.epic/containers | +--------------------+--------------------------------------------------------+ | NOAA Cloud [#fn]_ | /contrib/EPIC/containers | +--------------------+--------------------------------------------------------+ @@ -237,7 +237,7 @@ where: * ``-c`` is the compiler on the user's local machine (e.g., ``intel/2022.1.2``, ``intel-oneapi-compilers/2022.2.1``, ``intel/2023.2.0``) * ``-m`` is the :term:`MPI` on the user's local machine (e.g., ``impi/2022.1.2``, ``intel-oneapi-mpi/2021.7.1``, ``cray-mpich/8.1.28``) - * ``-p`` refers to the local machine/platform (e.g., ``hera``, ``gaea``, ``noaacloud``). Required for Gaea, Hercules, and Orion only. + * ``-p`` refers to the local machine/platform (e.g., ``ursa``, ``gaea``, ``noaacloud``). Required for Gaea, Hercules, and Orion only. * ``-i`` is the full path to the container image (e.g., ``$img`` or ``$HSD/ubuntu22.04-intel-ue-1.6.0-wm-hsd.img``). .. note:: diff --git a/doc/UsersGuide/source/IdealizedTC.rst b/doc/UsersGuide/source/IdealizedTC.rst index 6c04ccdd03..64c12376fb 100644 --- a/doc/UsersGuide/source/IdealizedTC.rst +++ b/doc/UsersGuide/source/IdealizedTC.rst @@ -3,9 +3,9 @@ .. _idealized-tc: -************************************** +******************************************* Idealized, Regional Tropical Cyclone Case -************************************** +******************************************* The idealized, regional tropical cyclone case is derived from the I-HAFS configuration (:cite:t:`Wang2024`) and is designed to support controlled studies of tropical cyclone dynamics and forecast development. It uses the ``FV3_HAFS_v1_thompson_nonsst`` physics suite, which is documented in the `DTC UFS HAFS v1 Scientific Documentation `_. The configuration used in this case removes real-world data assimilation and ocean coupling, focusing solely on atmospheric forecasts using idealized inputs. @@ -89,7 +89,7 @@ Change to something like: .. code-block:: console - WLCLK=08:00 + WLCLK=480 This allows enough time (6–8 hours recommended) for the full 120-hour simulation to run, depending on system performance. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index d73f500ebc..858c783237 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -4,6 +4,11 @@ Data: Input, Model Configuration, and Output Files ***************************************************** +.. attention:: + + The most up-to-date files are located in the `UFS Weather Model Regression Test Data Bucket `_ for the most recent dates listed. + File descriptions will appear below, but due to ongoing updates, we cannot guarantee that every file will appear, especially when running different configurations. + The UFS Weather Model can be run in one of several configurations (sometimes referred to as "applications"), from a single-component atmospheric model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice and mediator). Currently, supported configurations include: @@ -16,45 +21,45 @@ mediator). Currently, supported configurations include: * - Configuration Name - Description - * - :ref:`ATM ` + * - ATM - Standalone Atmospheric Model (:term:`ATM`) - * - :ref:`ATMW ` + * - ATMW - :term:`ATM` coupled to :term:`WW3` - * - :ref:`ATMAERO ` + * - ATMAERO - :term:`ATM` coupled to :term:`GOCART` - * - :ref:`ATMAQ ` + * - ATMAQ - :term:`ATM` coupled to :term:`CMAQ` - * - :ref:`ATML ` + * - ATML - :term:`ATM` coupled to :term:`NOAHMP` - * - :ref:`ATMF ` + * - ATMF - :term:`ATM` coupled to the Community Fire Behavior Model (aka :term:`UFS FIRE`) - * - :ref:`ATM_DS2S ` + * - ATM_DS2S - Coupled :term:`ATM` - :term:`DOCN` - :term:`DICE` - :term:`CDEPS` - * - :ref:`ATM_DS2S-PCICE ` + * - ATM_DS2S-PCICE - Coupled :term:`ATM` - :term:`DOCN` - :term:`CICE6` (prescribed ice mode) - :term:`CDEPS` - * - :ref:`S2S ` + * - S2S - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`CMEPS` - * - :ref:`S2SA ` + * - S2SA - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`GOCART` - :term:`CMEPS` - * - :ref:`S2SW ` + * - S2SW - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`WW3` - :term:`CMEPS` - * - :ref:`S2SWA ` + * - S2SWA - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`GOCART` - :term:`WW3` - :term:`CMEPS` - * - :ref:`S2SWAL ` + * - S2SWAL - Coupled :term:`ATM` - :term:`MOM6` - :term:`CICE6` - :term:`GOCART` - :term:`WW3` - :term:`CMEPS` - :term:`NOAHMP` - * - :ref:`NG-GODAS ` + * - NG-GODAS - Coupled :term:`CDEPS` - :term:`DATM` - :term:`MOM6` - :term:`CICE6` - :term:`CMEPS` - * - :ref:`LND ` + * - LND - Coupled :term:`CDEPS` - :term:`DATM` - :term:`NOAHMP` - * - :ref:`LND-LM4 ` + * - LND-LM4 - Coupled :term:`CDEPS` - :term:`DATM` - :term:`LM4` - * - :ref:`HAFS ` + * - HAFS - Coupled :term:`ATM` - :term:`HYCOM` - :term:`CMEPS` - * - :ref:`HAFSW ` + * - HAFSW - Coupled :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`CMEPS` - * - :ref:`HAFS-MOM6W ` - - Coupled :term:`ATM` - :term:`HYCOM` - :term:`CMEPS` - * - :ref:`HAFS-ALL ` + * - HAFS-MOM6W + - Coupled :term:`ATM` - :term:`MOM6`- :term:`WW3` - :term:`CMEPS` + * - HAFS-ALL - Coupled :term:`CDEPS` - :term:`ATM` - :term:`HYCOM` - :term:`WW3` - :term:`CMEPS` .. COMMENT: Should HAFS-ALL be DATM instead of ATM? @@ -97,8 +102,12 @@ The static input files for global configurations are listed and described in :nu - Description * - aerosol.dat - External aerosols data file + * - CCN_ACTIVATE.BIN + - Cloud condensation nuclei activation binary file * - CFSR.SEAICE.1982.2012.monthly.clim.grb - - CFS reanalysis of monthly sea ice climatology + - :term:`CFS ` reanalysis of monthly sea ice climatology + * - freezeH2O.dat + - Defines freezing behavior of water under different temperatures and pressures * - co2historicaldata_YYYY.txt - Monthly CO2 in PPMV data for year YYYY * - global_albedo4.1x1.grb @@ -136,6 +145,12 @@ The static input files for global configurations are listed and described in :nu - Climatological vegetation type * - global_zorclim.1x1.grb - Climatological surface roughness + * - IMS-NIC.blended.ice.monthly.clim.grb + - Monthly climatology of global sea ice concentration from blended :term:`IMS` and :term:`NIC` datasets + * - qr_acr_qgV2.dat + - Precomputed data for rain-graupel collection processes + * - qr_acr_qsV2.dat: + - Precomputed data for rain–snow collection processes * - RTGSST.1982.2012.monthly.clim.grb - Monthly, climatological, real-time global sea surface temperature * - seaice_newland.grb @@ -224,7 +239,7 @@ MOM6 Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The static input files for global configurations are listed and described in :numref:`Table %s `. +The static input files for global configurations are listed and described in :numref:`Table %s `. Note that not all files are required for all resolutions. .. _MOM6_FixFiles: @@ -235,33 +250,39 @@ The static input files for global configurations are listed and described in :nu * - Filename - Description - Used in resolution - * - runoff.daitren.clim.1440x1080.v20180328.nc + * - runoff.daitren.clim.1440x1080.v20180328.nc - climatological runoff - 0.25 - * - runoff.daitren.clim.720x576.v20180328.nc + * - runoff.daitren.clim.720x576.v20180328.nc - climatological runoff - 0.50 - * - seawifs-clim-1997-2010.1440x1080.v20180328.nc + * - runoff.daitren.iaf.720x576.v20180328.nc + - interannually varying runoff forcing + - 0.50 + * - seawifs-clim-1997-2010.1440x1080.v20180328.nc - climatological chlorophyll concentration in sea water - 0.25 - * - seawifs-clim-1997-2010.720x576.v20180328.nc + * - seawifs-clim-1997-2010.720x576.v20180328.nc - climatological chlorophyll concentration in sea water - 0.50 - * - seawifs_1998-2006_smoothed_2X.nc + * - seawifs_1998-2006_smoothed_2X.nc - climatological chlorophyll concentration in sea water - 1.00 - * - tidal_amplitude.v20140616.nc + * - tidal_amplitude.v20140616.nc - climatological tide amplitude - 0.25 - * - tidal_amplitude.nc + * - tidal_amplitude.nc - climatological tide amplitude - 0.50, 1.00 - * - geothermal_davies2013_v1.nc + * - geothermal_davies2013_v1.nc - climatological geothermal heat flow - 0.50, 0.25 - * - KH_background_2d.nc + * - KH_background_2d.nc - climatological 2-d background harmonic viscosities - 1.00 + * - salt_restore_PHC2.720x576.v20180405.nc + - climatological salinity restoring field (PHC source) + - 0.50 .. _mom-grid-ic-files: @@ -279,49 +300,105 @@ The input files containing grid information and the initial conditions for globa * - Filename - Description - - Valid RES options + - Valid resolution options - Date-dependent - * - ocean_hgrid.nc + * - ocean_hgrid.nc - horizonal grid information - - 1.00, 0.50, 0.25 + - 9.00, 5.00, 1.00, 0.50, 0.25 + - + * - oceanda_zgrid_25L.nc + - defines the vertical z-coordinate depth structure for 25 ocean layers used in data assimilation + - 5.00 - - * - ocean_mosaic.nc + * - vgrid_75_2m.nc + - vertical grid levels + - 1.00 + - + * - ocean_mosaic.nc - specify horizonal starting and ending points index - - 1.00, 0.50, 0.25 + - 9.00, 5.00, 1.00, 0.50, 0.25 - - * - ocean_topog.nc + * - ocean_topog.nc - ocean topography - - 1.00, 0.50, 0.25 + - 0.50, 0.25 - - * - ocean_mask.nc - - lans/sea mask - - 1.00, 0.50, 0.25 + * - ocean_mask.nc + - ocean mask + - 9.00, 5.00, 1.00, 0.50, 0.25 + - + * - ocean_static.nc + - static ocean grid and mask data + - 0.50 + - + * - land_mosaic_tile1Xocean_mosaic_tile1.nc + - land/ocean mosaic tiles + - 1.00, 0.50 + - + * - atmos_mosaic_tile1Xland_mosaic_tile1.nc + - atmosphere/land mosaic tiles + - 1.00 + - + * - atmos_mosaic_tile1Xocean_mosaic_tile1.nc + - atmosphere/ocean mosaic tiles + - 1.00 - - * - hycom1_75_800m.nc + * - land_mask.nc + - land mask + - 1.00, 0.50 + - + * - basin_codes.nc + - ocean basin classification grid + - 0.50 + - + * - hycom1_25.nc + - vertical coordinate thickness defining 25 vertical levels + - 9.00, 5.00 + - + * - hycom1_75_800m.nc - vertical coordinate level thickness - 1.00, 0.50, 0.25 - - * - layer_coord.nc + * - layer_coord.nc - vertical layer target potential density - 1.00, 0.50, 0.25 - - * - All_edits.nc + * - layer_coord25.nc + - vertical layer target potential density defining 25 vertical levels + - 9.00, 5.00 + - + * - All_edits.nc - specify grid points where topography are manually modified to adjust throughflow strength for narrow channels - 0.25 - - * - topo_edits_011818.nc + * - topo_edits_011818.nc - specify grid points where topography are manually modified to adjust throughflow strength for narrow channels - 1.00 - - * - MOM_channels_global_025 + * - ufs.topo_edits_011818.nc + - UFS specific grid points where topography are manually modified to adjust throughflow strength for narrow channels + - 1.00 + - + * - topog.nc + - topography + - 9.00, 1.00, 0.25 + - + * - MOM_channels_global_025 - specifies restricted channel widths - 0.50, 0.25 - - * - MOM_channel_SPEAR + * - MOM_layout + - specifies parameters for testing mask_tables in a non-FRE enviroment (production use is not recommended ) + - 0.50, 0.25 + - + * - MOM_override + - blank file for overriding default MOM6 parameters + - 9.00, 5.00, 1.00, 0.50, 0.25 + - + * - MOM_channels_SPEAR - specifies restricted channel widths - 1.00 - - * - interpolate_zgrid_40L.nc + * - interpolate_zgrid_40L.nc - specify target depth for output - 1.00, 0.50, 0.25 - @@ -330,10 +407,26 @@ The input files containing grid information and the initial conditions for globa - 0.25 - ✔ * - MOM6_IC_TS.nc - - ocean temperature and salinity initial conditions (from CFSR) + - ocean temperature and salinity initial conditions (from :term:`CFSR`) - 1.00, 0.50, 0.25 - ✔ - + * - woa18_decav_s00_01.nc + - global annual climatological average ocean salinity from 1955–2017 (from :term:`NCEI`) + - 1.00 + - ✔ + * - woa18_decav_t00_01.nc + - global annual climatological average ocean temperature from 1955–2017 (from :term:`NCEI`) + - 1.00 + - ✔ + * - mom6.mx050.2021032206.warmstart.nc + - MOM6 warm restart file + - 0.50 + - ✔ + * - mom6.mx100.2021032206.warmstart.nc + - MOM6 warm restart file + - 1.00 + - ✔ + .. _hycom-in: ------- @@ -530,14 +623,22 @@ The input files containing grid information and the initial conditions for globa - cice model IC or restart file - 1.00, 0.50, 0.25 - ✔ + * - cice.mxRES.YYYYMMDDHH.warmstart.nc + - warm restart file used to continue a previous CICE run from an existing model state + - 1.00, 0.50 + - ✔ * - grid_cice_NEMS_mxRES.nc - cice model grid at resolution RES - - 100, 050, 025 + - 9.00, 5.00, 1.00, 0.50, 0.25 - * - kmtu_cice_NEMS_mxRES.nc - cice model land mask at resolution RES - - 100, 050, 025 + - 9.00, 5.00, 1.00, 0.50, 0.25 - + * - mesh.mxRES.nc + - CICE mesh at resolution RES + - 9.00, 5.00, 1.00, 0.50, 0.25 + - .. _ww3-in: @@ -679,7 +780,7 @@ Coupled regional configurations require forcing files to fill regions that canno - Interpolated wind data from GFS - 6 min -The model driver input (ww3_multi.inp) includes the input, model and output grids definition, the starting and ending times for the entire model run and output types and intervals. The ww3_multi.inp.IN template is located under tests/parm/ directory. The inputs are described hereinafter: +The model driver input (ww3_shel.nml.IN) includes the input, model and output grids definition, the starting and ending times for the entire model run and output types and intervals. The ww3_multi.inp.IN template is located under tests/parm/ directory. The inputs are described hereinafter: .. _WW3_Driver: @@ -806,7 +907,7 @@ The input files containing grid information and the time-varying forcing files f .. note:: - Users can find atmospheric forcing files for use with the land (:ref:`LND `) component in the `Land Data Assimilation (DA) data bucket `_. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `_) dataset. + Users can find atmospheric forcing files for use with the Noah-MP land component (LND) in the `Land Data Assimilation (DA) data bucket `_. These files provide atmospheric forcing data related to precipitation, solar radiation, longwave radiation, temperature, pressure, winds, humidity, topography, and mesh data. Forcing files for the land component configuration come from the Global Soil Wetness Project Phase 3 (`GSWP3 `_) dataset. .. code-block:: console @@ -1267,7 +1368,7 @@ Registration of diagnostic fields is done using the following syntax diag_id = register_diag_field(module_name, diag_name, axes, ...) -in file ``FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90``. As an example, the sea level pressure is registered as: +in file ``ufsatm/FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90``. As an example, the sea level pressure is registered as: .. code-block:: console @@ -1330,13 +1431,12 @@ Each WM component has its own ``diag_table`` with associated variables. :numref: * - WM Component - Diag Table - Source File - * - FV3 + * - UFSatm - :ref:`FV3 Variables ` - - `GFS_diagnostics.F90 `_ + - `GFS_diagnostics.F90 `_ * - MOM6 - `MOM6 Variables `_ - - `MOM_diagnostics.F90 `_ - + - `MOM_diagnostics.F90 `_ A brief example of the diag_table is shown below. ``"..."`` denotes where lines have been removed. @@ -2081,8 +2181,7 @@ A sample subset of this namelist is shown below: FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' / -Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/Interstitials/UFS_SCM_NEPTUNE/sfcsub.F`` file. - +Additional variables for the ``&namsfc`` namelist can be found in the ``ufsatm/ccpp/physics/physics/Interstitials/UFS_SCM_NEPTUNE/sfcsub.F`` file. .. _atmos_model_nml_section: ^^^^^^^^^^^^^^^^^^^^ @@ -2187,8 +2286,7 @@ A sample subset of this namelist is shown below: cplflx = .true. / -Additional variables for the ``&gfs_physics_nml`` namelist can be found in the ``FV3/ccpp/data/GFS_typedefs.F90`` -file. +Additional variables for the ``&gfs_physics_nml`` namelist can be found in the `GFS_typedefs.F90 `_ .. _OutputFiles: @@ -2196,10 +2294,10 @@ file. Output files ============= -.. _fv3atm-out: +.. _UFSatm-out: ------- -FV3Atm +UFSAtm ------- The output files generated when running ``fv3.exe`` are defined in the ``diag_table`` file. For the default global configuration, the following files are output (six files of each kind, corresponding to the six tiles of the model grid): diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index 5aef439eca..157f3e628f 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -6,7 +6,7 @@ Introduction The Unified Forecast System (:term:`UFS`) Weather Model (:term:`WM`) is a prognostic model that can be used for short- and medium-range research and operational forecasts, as exemplified by -its use in the operational Global Forecast System (GFS) of the National Oceanic and +its use in the operational Global Forecast System (GFS) and the Hurricane Analysis and Forecast System (HAFS) of the National Oceanic and Atmospheric Administration (NOAA). In addition to its use in NOAA's operational forecast systems, the UFS WM is the atmospheric model used in public UFS application releases, such as the most recent Short-Range Weather (SRW) Application releases. These releases represent a snapshot of a continuously evolving system undergoing open development. More information about the UFS can be found on the UFS Community Portal at https://ufs.epic.noaa.gov/ and on the Earth Prediction Innovation Center (EPIC) website at https://epic.noaa.gov/get-code/ufs-weather-model/. @@ -31,13 +31,13 @@ for those elements, are listed below: * The regression tests used to maintain software integrity as innovations are added. -The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v3.0.0 release (April 2025) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v3.0.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. +The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v3.0.0 release (April 2025) and the Land Data Assimilation (DA) System v2.0.0 release (November 2024). These UFS apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v3.0.0 documentation and details can be found `here `__. The Land DA v2.0.0 documentation and details can be found `here `__. -The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Hera system, the National Center for Atmospheric Research (:term:`NCAR`) Derecho system, the Mississippi State University (MSU) Hercules system, and Mac laptops. +The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Ursa system, the National Center for Atmospheric Research (:term:`NCAR`) Derecho system, and the Mississippi State University (MSU) Hercules system. .. note:: - At this time, the following aspects are unsupported: configurations in which a mediator is used to couple the atmospheric model to models of other earth domains (such as ocean, ice, and waves), horizontal resolutions other than the supported ones, different number or placement of vertical levels, the *cellular automata* stochastic scheme, and the use of different file formats for input and output. It is expected that the UFS WM supported capabilities will be expanded in future releases. + At this time, the following aspects are unsupported: horizontal resolutions other than the supported ones, different number or placement of vertical levels, the *cellular automata* stochastic scheme, and the use of different file formats for input and output. It is expected that the UFS WM supported capabilities will be expanded in future releases. .. COMMENT: Are coupled versions of the WM now supported? With 12 configurations it would seem that perhaps some are? .. COMMENT: Is the cellular automata stochastic scheme now supported? @@ -60,8 +60,6 @@ This WM User's Guide is organized as follows: * :numref:`Chapter %s ` (HSD Technical Documentation) provides detailed technical documentation for the HSD code. * :numref:`Chapter %s ` (Configuration Parameters) lists the purpose and valid values for various configuration parameters. - - * :numref:`Chapter %s ` (Automated Testing) describes UFS WM automated testing options. * :numref:`Chapter %s ` (FAQ) lists frequently asked questions and answers. diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index fa5fefafc8..d065b95f79 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -93,8 +93,7 @@ # Ignore anchor tags for links that show Not Found even when they exist. linkcheck_anchors_ignore = [r"L\d*", r"BM_IC-20220207", - r"input-data-20240501*", - #r"input-data-20240501/WW3_input_data_20240214", + r"input-data-20250507*", ] # Ignore working links that cause a linkcheck 403 error. linkcheck_ignore = [r'https://agupubs\.onlinelibrary\.wiley\.com/doi/10\.1029/2020MS002260', diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst index 78259b2bb9..360df71952 100644 --- a/doc/UsersGuide/source/index.rst +++ b/doc/UsersGuide/source/index.rst @@ -17,7 +17,6 @@ Welcome to the UFS Weather Model User's Guide HSD modules ConfigParameters - AutomatedTesting FAQ Acronyms Glossary diff --git a/stochastic_physics b/stochastic_physics index 97b24f8e40..42429caffe 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 97b24f8e40f1de0980388c8326c48b442e5a5e61 +Subproject commit 42429caffef8905bcab2b36692df1e0121e2e7de diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4c60f97703..0d53131c2f 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Sat Nov 1 20:45:45 UTC 2025 +Tue Nov 4 07:58:00 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 254.362904 - 0: The maximum resident set size (KB) = 1547956 + 0: The total amount of wall time = 252.018999 + 0: The maximum resident set size (KB) = 1567036 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 872.535161 - 0: The maximum resident set size (KB) = 1546100 + 0: The total amount of wall time = 871.292705 + 0: The maximum resident set size (KB) = 1550220 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 227.719248 - 0: The maximum resident set size (KB) = 1536204 + 0: The total amount of wall time = 230.040227 + 0: The maximum resident set size (KB) = 1531756 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 227.801885 - 0: The maximum resident set size (KB) = 1541728 + 0: The total amount of wall time = 232.007594 + 0: The maximum resident set size (KB) = 1515844 Test mpi PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 227.801918 - 0: The maximum resident set size (KB) = 1540988 + 0: The total amount of wall time = 228.891465 + 0: The maximum resident set size (KB) = 1514884 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 226.220403 - 0: The maximum resident set size (KB) = 1525700 + 0: The total amount of wall time = 225.951880 + 0: The maximum resident set size (KB) = 1526688 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_437930/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_429386/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 = 231.662299 - 0: The maximum resident set size (KB) = 1531412 + 0: The total amount of wall time = 230.282235 + 0: The maximum resident set size (KB) = 1509316 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Nov 1 21:49:00 UTC 2025 -Elapsed time: 01h:03m:15s. Have a nice day! +Tue Nov 4 09:01:19 UTC 2025 +Elapsed time: 01h:03m:19s. 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 9ff4868fac..361a31a134 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 @@ -Sat Nov 1 19:22:45 UTC 2025 +Tue Nov 4 06:34:31 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_173234/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_4066384/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 = 2228.969381 - 0: The maximum resident set size (KB) = 1649860 + 0: The total amount of wall time = 2295.955313 + 0: The maximum resident set size (KB) = 1638560 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_173234/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_4066384/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 = 585.433276 - 0: The maximum resident set size (KB) = 1637404 + 0: The total amount of wall time = 584.751676 + 0: The maximum resident set size (KB) = 1646544 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_173234/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_4066384/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 = 579.467014 - 0: The maximum resident set size (KB) = 1642208 + 0: The total amount of wall time = 573.420106 + 0: The maximum resident set size (KB) = 1631236 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Nov 1 20:45:45 UTC 2025 -Elapsed time: 01h:23m:00s. Have a nice day! +Tue Nov 4 07:58:00 UTC 2025 +Elapsed time: 01h:23m:30s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e1606d995a..0814aff90b 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Sat Nov 1 18:29:40 UTC 2025 +Tue Nov 4 05:40:59 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_102265/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3980725/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 609.693155 - 0: The maximum resident set size (KB) = 893324 + 0: The total amount of wall time = 611.775593 + 0: The maximum resident set size (KB) = 892308 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_102265/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3980725/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 491.714171 - 0: The maximum resident set size (KB) = 857680 + 0: The total amount of wall time = 486.577790 + 0: The maximum resident set size (KB) = 860576 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_102265/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3980725/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 497.924741 - 0: The maximum resident set size (KB) = 836516 + 0: The total amount of wall time = 487.952546 + 0: The maximum resident set size (KB) = 866920 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_102265/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_3980725/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 494.108568 - 0: The maximum resident set size (KB) = 865820 + 0: The total amount of wall time = 493.033923 + 0: The maximum resident set size (KB) = 852300 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Sat Nov 1 19:22:45 UTC 2025 -Elapsed time: 00h:53m:05s. Have a nice day! +Tue Nov 4 06:34:30 UTC 2025 +Elapsed time: 00h:53m:31s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 147f97ec21..d6089a53fb 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -137b9f51790e94234c0d706c446a0b67d5dc0ade +5a49b185c11aaedfd8b1ec2a219268f352baeb5d Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,283 +41,283 @@ 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-20251031 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3338920 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_762955 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:31, 16:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:41, 06:13](3330 MB) -PASS -- TEST 'cpld_control_gefs_intel' [47:40, 15:38](4106 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:02, 07:09](3918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 17:12] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:24, 13:08](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:21, 14:04](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:08, 06:24](1070 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:24, 06:25](1927 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:39, 15:12](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:33, 16:51] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:49, 13:22](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:09] ( 828 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:04, 20:22](1942 MB) - -PASS -- COMPILE 's2swa_intel' [18:33, 16:59] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:29, 07:54](3364 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:32, 07:51](3365 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:20, 04:31](3241 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:35, 08:06](3383 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:25, 04:35](3259 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [22:35, 07:23](3587 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:25, 07:48](3354 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [29:49, 06:31](3301 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:34, 07:54](3360 MB) - -PASS -- COMPILE 's2swal_intel' [18:31, 17:00] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [32:54, 08:04](3367 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:30, 04:44](3244 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:21, 07:55](3334 MB) - -PASS -- COMPILE 's2sw_intel' [16:30, 14:55] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:38, 04:32](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:58, 06:55](1972 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:32, 14:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 04:54](1975 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:37, 07:54](3361 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:33, 15:32] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:48, 13:10](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:53, 06:22](1098 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:59, 15:15](1894 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [08:34, 05:53](2888 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:26, 02:11](2896 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:05, 01:25](2312 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:55, 01:26](2110 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:55, 01:01](2115 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:47, 00:45](1458 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:54, 01:24](2112 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:54, 01:10](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:47, 00:43](1458 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:54, 01:05](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:54, 00:54](2041 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:46, 00:40](1395 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:45] ( 828 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:47, 24:03](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:25, 10:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:44, 03:54](683 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:46, 02:26](1576 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:52, 02:46](1584 MB) -PASS -- TEST 'control_latlon_intel' [10:37, 02:33](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:46, 02:29](1584 MB) -PASS -- TEST 'control_c48_intel' [14:53, 06:11](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:50, 05:33](721 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:50, 06:20](1599 MB) -PASS -- TEST 'control_c192_intel' [15:00, 06:58](1704 MB) -PASS -- TEST 'control_c384_intel' [27:24, 08:22](1997 MB) -PASS -- TEST 'control_c384gdas_intel' [37:04, 08:50](1174 MB) -PASS -- TEST 'control_stochy_intel' [08:40, 01:46](638 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:37, 01:12](401 MB) -PASS -- TEST 'control_lndp_intel' [08:38, 01:45](638 MB) -PASS -- TEST 'control_iovr4_intel' [08:38, 02:31](630 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:59, 02:52](918 MB) -PASS -- TEST 'control_iovr5_intel' [08:38, 02:30](633 MB) -PASS -- TEST 'control_p8_intel' [11:25, 03:00](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:38, 03:01](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:12, 02:52](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:16, 02:51](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:43, 03:04](1886 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:48, 02:13](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [06:13, 01:48](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:43, 02:49](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:33, 01:55](1013 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:37, 03:02](1862 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:41, 02:38](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:01, 04:51](1870 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:11, 03:46](1918 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:02, 03:05](1872 MB) -PASS -- TEST 'merra2_thompson_intel' [09:33, 03:22](1866 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [10:16, 04:35](1871 MB) -PASS -- TEST 'regional_control_intel' [06:57, 05:02](879 MB) -PASS -- TEST 'regional_restart_intel' [05:54, 02:46](882 MB) -PASS -- TEST 'regional_decomp_intel' [09:56, 05:08](881 MB) -PASS -- TEST 'regional_2threads_intel' [06:51, 03:04](990 MB) -PASS -- TEST 'regional_noquilt_intel' [06:54, 04:53](1168 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:53, 04:59](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:53, 06:30](1613 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:24, 09:50] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:14, 03:46](1888 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:51] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:11, 03:47](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [12:28, 04:09](1213 MB) -PASS -- TEST 'rap_decomp_intel' [08:28, 03:59](1013 MB) -PASS -- TEST 'rap_2threads_intel' [07:25, 03:33](1090 MB) -PASS -- TEST 'rap_restart_intel' [06:04, 02:13](764 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:13, 03:50](1014 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:28, 03:56](1012 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:36, 02:11](764 MB) -PASS -- TEST 'hrrr_control_intel' [07:43, 03:47](1008 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:35, 03:51](1009 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:18](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:38, 02:02](758 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:00, 06:41](1010 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:40, 08:32](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:41, 08:08](1967 MB) - -PASS -- COMPILE 'csawmg_intel' [10:23, 08:45] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:57, 06:22](960 MB) -PASS -- TEST 'control_ras_intel' [07:35, 03:19](670 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:13, 11:36](1668 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:31, 17:13] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [21:39, 06:15](3332 MB) +PASS -- TEST 'cpld_control_gefs_intel' [10:30, 15:39](4114 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [23:52, 07:17](3917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:31, 16:45] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:16, 13:21](1902 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:18, 14:11](1945 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:06, 06:14](1069 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:15, 06:27](1933 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:55, 15:25](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:33, 16:50] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:37, 13:27](1906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:04] ( 363 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:07, 20:00](1947 MB) + +PASS -- COMPILE 's2swa_intel' [18:33, 17:12] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [24:08, 07:56](3364 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:37, 07:59](3358 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:29, 04:33](3241 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:27, 07:55](3380 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:30, 04:37](3262 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:00, 07:13](3580 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:37, 07:47](3355 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [34:21, 06:36](3301 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:27, 07:57](3360 MB) + +PASS -- COMPILE 's2swal_intel' [19:34, 17:20] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [37:43, 08:12](3367 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:24, 04:46](3246 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [26:23, 07:56](3335 MB) + +PASS -- COMPILE 's2sw_intel' [16:31, 14:57] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:54, 04:30](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:07, 06:53](1973 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:31, 14:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:06, 04:49](1978 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:33, 16:54] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:35, 07:55](3362 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:31, 15:25] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:53, 13:12](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:53, 06:19](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:05, 15:08](1893 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:37, 05:48](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:26, 02:12](2897 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:07, 01:21](2312 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:54, 01:26](2114 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:53, 00:59](2109 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:47, 00:45](1459 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:53, 01:24](2110 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:53, 01:02](2108 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:45, 00:43](1457 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:54, 00:59](2039 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:53, 00:55](2041 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:45, 00:44](1394 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:00] ( 363 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:49, 23:58](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:25, 10:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [20:51, 03:49](683 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:51, 02:20](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:58, 02:35](1586 MB) +PASS -- TEST 'control_latlon_intel' [15:43, 02:30](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:49, 02:32](1585 MB) +PASS -- TEST 'control_c48_intel' [13:52, 06:15](1594 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:51, 05:34](723 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:52, 06:23](1600 MB) +PASS -- TEST 'control_c192_intel' [14:02, 06:54](1703 MB) +PASS -- TEST 'control_c384_intel' [15:12, 08:08](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [19:50, 08:43](1172 MB) +PASS -- TEST 'control_stochy_intel' [10:39, 01:50](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:35, 01:16](399 MB) +PASS -- TEST 'control_lndp_intel' [09:35, 01:45](637 MB) +PASS -- TEST 'control_iovr4_intel' [12:41, 02:32](636 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:58, 03:06](921 MB) +PASS -- TEST 'control_iovr5_intel' [10:42, 02:29](633 MB) +PASS -- TEST 'control_p8_intel' [12:25, 02:59](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:41, 03:05](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [12:14, 02:49](1865 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [13:20, 02:52](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [13:38, 02:52](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [11:49, 02:16](2436 MB) +PASS -- TEST 'control_restart_p8_intel' [07:14, 01:51](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [12:40, 02:51](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:37, 01:52](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [12:38, 03:00](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:56, 02:43](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:01, 04:45](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:12, 03:47](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:03, 02:58](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [10:32, 03:32](1867 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [11:15, 04:28](1872 MB) +PASS -- TEST 'regional_control_intel' [08:57, 04:49](879 MB) +PASS -- TEST 'regional_restart_intel' [04:55, 02:42](882 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:12](877 MB) +PASS -- TEST 'regional_2threads_intel' [08:51, 03:03](993 MB) +PASS -- TEST 'regional_noquilt_intel' [08:50, 04:59](1172 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 04:52](877 MB) +PASS -- TEST 'regional_wofs_intel' [09:52, 06:32](1610 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:25, 09:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:10, 03:36](1889 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:50] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:09, 03:45](1018 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:20, 04:12](1217 MB) +PASS -- TEST 'rap_decomp_intel' [07:29, 03:49](1014 MB) +PASS -- TEST 'rap_2threads_intel' [07:28, 03:21](1091 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 02:05](762 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:52, 03:48](1016 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:28, 03:55](1014 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:16, 02:07](764 MB) +PASS -- TEST 'hrrr_control_intel' [08:29, 03:36](1008 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:23, 03:40](1012 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:36, 03:22](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:38, 02:01](758 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:00, 06:33](1012 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:43, 08:32](1974 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:42, 08:13](1968 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:42] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:57, 06:18](968 MB) +PASS -- TEST 'control_ras_intel' [06:32, 03:20](674 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:02] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [16:14, 12:00](1668 MB) PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:14, 03:05](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [07:50, 04:51](878 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 04:49] ( 891 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:49, 02:41](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:53, 02:48](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [11:41, 03:35](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:41, 03:12](825 MB) -PASS -- TEST 'control_csawmg_debug_intel' [18:07, 04:47](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [13:46, 03:16](828 MB) -PASS -- TEST 'control_diag_debug_intel' [13:50, 03:14](1672 MB) -PASS -- TEST 'control_debug_p8_intel' [08:04, 03:06](1902 MB) -PASS -- TEST 'regional_debug_intel' [21:11, 18:11](953 MB) -PASS -- TEST 'rap_control_debug_intel' [08:35, 05:42](1193 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:41, 05:31](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:37, 05:37](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:41, 05:42](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:35, 05:47](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:44, 06:01](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:40, 05:52](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:38, 05:45](1192 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:39, 05:43](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:39, 05:40](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:39, 05:34](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:41, 05:34](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:43, 08:54](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:41, 05:41](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:39, 05:38](1193 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:30, 09:40](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:29] ( 849 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [23:21, 14:29](1698 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:10] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:22, 03:56](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:04, 03:07](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:56, 03:09](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:30, 02:58](936 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:41, 02:41](929 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:51, 03:11](884 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:52, 01:48](725 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 01:47](724 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 07:58] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:23, 02:56](1020 MB) -PASS -- TEST 'conus13km_2threads_intel' [10:14, 01:20](1145 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:08, 03:01](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [05:05, 01:51](690 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:57, 04:05](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:19, 03:38] ( 782 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:40, 05:23](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:15](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [26:29, 23:59](1083 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:34, 23:40](812 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:12, 13:12](1199 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [28:28, 24:13](1112 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:25, 23:46](1145 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 03:31] ( 782 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:37, 05:35](1107 MB) - -PASS -- COMPILE 'hafsw_intel' [14:30, 12:21] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:03, 04:21](707 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [13:12, 04:32](918 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:50, 03:27](1056 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:07, 11:36](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:11](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:07, 06:10](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:56, 02:52](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [29:13, 07:23](425 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:50, 03:44](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:04, 03:26](496 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [10:38, 01:32](408 MB) -PASS -- TEST 'gnv1_nested_intel' [09:12, 03:41](1696 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:26, 10:18] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:33, 05:32](779 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:28, 09:14] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:12, 06:03](761 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [16:10, 06:09](736 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:29, 13:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 03:04](1568 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 02:05](1567 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:00](685 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:27, 02:49](687 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:27, 02:55](685 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:27, 03:04](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:27, 03:06](1568 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:30, 02:57](685 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:34, 07:10](1365 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:29, 07:02](705 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:25, 03:03](1564 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:30, 05:15](4522 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:30, 05:16](4519 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:32, 13:18] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:06](1567 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:25, 00:56] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 01:07](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:33, 00:51](437 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:36, 00:43](438 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [25:40, 14:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:37, 03:45](1913 MB) - -PASS -- COMPILE 'atml_intel' [18:33, 10:04] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [09:18, 03:18](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:02, 02:02](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:26, 04:19] ( 896 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:25, 05:30](1909 MB) - -PASS -- COMPILE 'atmw_intel' [16:32, 09:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 02:04](1886 MB) - -PASS -- COMPILE 'atmaero_intel' [20:34, 15:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:52, 04:19](3239 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:37, 04:52](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:41, 04:55](3130 MB) - -PASS -- COMPILE 'atmaq_intel' [13:28, 08:48] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [22:03, 14:16](2393 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [24:54, 17:11](2462 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:21, 03:35] ( 866 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [48:10, 40:16](1971 MB) +PASS -- TEST 'control_p8_faster_intel' [08:09, 03:06](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:49, 04:50](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:20, 04:45] ( 426 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:56, 02:42](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:00, 02:41](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [16:46, 03:33](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:52, 03:11](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [21:08, 04:53](1119 MB) +PASS -- TEST 'control_ras_debug_intel' [19:46, 03:22](830 MB) +PASS -- TEST 'control_diag_debug_intel' [06:41, 03:23](1682 MB) +PASS -- TEST 'control_debug_p8_intel' [05:58, 03:10](1906 MB) +PASS -- TEST 'regional_debug_intel' [21:07, 18:14](937 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 05:40](1193 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:38, 05:38](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:36, 05:35](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:38, 05:43](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:40, 05:38](1198 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:50, 05:57](1287 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:40, 05:44](1198 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:34, 05:49](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:37, 05:45](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:38, 05:41](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:37, 05:37](1195 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [11:39, 05:46](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:43, 08:59](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:45](1201 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:39, 05:45](1197 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:31, 09:44](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:28] ( 388 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [28:29, 14:33](1696 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:13] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [13:24, 03:57](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:27, 03:10](896 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:20, 03:09](889 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:32, 02:58](933 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:46, 02:47](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:50, 03:22](891 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:21, 01:49](725 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:33, 01:49](723 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:24, 08:02] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:26, 02:58](1021 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:00, 01:22](1139 MB) +PASS -- TEST 'conus13km_decomp_intel' [07:06, 02:53](1029 MB) +PASS -- TEST 'conus13km_restart_intel' [05:03, 01:52](690 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:19] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:55, 04:07](914 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:33] ( 321 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:39, 05:31](1076 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:40, 05:22](1072 MB) +PASS -- TEST 'conus13km_debug_intel' [27:37, 23:45](1105 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:37, 24:00](815 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:18, 13:18](1209 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [28:21, 24:36](1114 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:19, 23:45](1170 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:18] ( 321 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:36, 05:47](1105 MB) + +PASS -- COMPILE 'hafsw_intel' [14:29, 12:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [26:23, 04:13](709 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [29:28, 04:36](920 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [26:01, 03:28](1054 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:08, 11:45](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:03, 05:21](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:06, 06:28](475 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:55, 03:01](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [42:28, 07:20](426 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:44](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:59, 03:31](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:35, 01:30](407 MB) +PASS -- TEST 'gnv1_nested_intel' [07:09, 03:50](1701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:26, 10:24] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:44, 05:24](786 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:25, 09:09] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:08, 06:11](763 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:06, 06:15](736 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:30, 13:46] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:29, 03:13](1564 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 02:04](1567 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:28, 02:51](684 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:29, 03:01](684 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:27, 03:00](685 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:28, 03:03](1565 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:31, 03:04](1567 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:28, 02:54](686 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:32, 07:16](1365 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:27, 07:05](702 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:09](1565 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:31, 05:18](4521 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:30, 05:20](4521 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:30, 13:29] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:26, 03:12](1567 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:18, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:06](303 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:35, 01:00](438 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:39, 00:40](438 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:33, 13:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:39, 03:51](1911 MB) + +PASS -- COMPILE 'atml_intel' [18:31, 10:03] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 03:30](1868 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:08, 02:04](1032 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:27, 04:20] ( 431 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:19, 05:41](1907 MB) + +PASS -- COMPILE 'atmw_intel' [18:33, 08:53] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:06, 02:11](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [24:40, 15:24] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:54, 04:27](3238 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:38, 04:52](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:42, 04:57](3129 MB) + +PASS -- COMPILE 'atmaq_intel' [15:29, 08:43] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [24:04, 14:46](2402 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [28:01, 17:37](2449 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:23, 03:37] ( 405 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:40, 40:20](1971 MB) SYNOPSIS: -Starting Date/Time: 20251103 12:26:32 -Ending Date/Time: 20251103 14:58:27 -Total Time: 02h:32m:26s +Starting Date/Time: 20251104 15:42:10 +Ending Date/Time: 20251104 18:36:40 +Total Time: 02h:54m:59s Compiles Completed: 37/37 Tests Completed: 193/193 diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index a21417983a..f73ecc8cd1 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -298ac307b99046cc0f13958805555536c87ce1f5 +e758964b9d7dbf1236816c4a7b664d53f11d1ded Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,298 +41,298 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251031 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_367031 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3085490 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:45] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:36, 03:46](2020 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:11, 13:59] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [10:29, 08:35](1901 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:29, 09:20](1939 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [05:31, 04:05](1056 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:33, 04:10](1917 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:27, 09:53](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:50] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:24, 08:39](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:29] ( 847 warnings 1727 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [14:40, 12:43](1936 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 11:15] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [06:42, 04:57](2047 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:42, 04:54](2050 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:32, 02:43](1596 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [06:39, 04:57](2079 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:36, 02:44](1455 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:33, 05:45](2219 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [06:36, 04:46](2049 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [05:35, 03:54](2008 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [06:42, 04:52](2061 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [07:58, 05:11](2386 MB) - -PASS -- COMPILE 's2swal_intel' [13:11, 11:14] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [06:39, 04:55](2053 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [04:37, 02:45](1589 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:33, 04:59](1911 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 11:27] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [04:33, 02:46](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:37, 04:21](1846 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:19] ( 846 warnings 988 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:37, 08:20](2085 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:25] ( 846 warnings 988 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:37, 03:53](1952 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:10, 10:06] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:26, 03:04](1967 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:45] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:35, 04:54](2047 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:49] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:32, 08:38](1917 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:29, 04:10](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [11:31, 09:57](1902 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [05:28, 03:55](2856 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:26, 01:14](2873 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:22, 00:44](2274 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:22, 00:45](2087 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:23, 00:26](2090 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:19, 00:21](1433 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:22, 00:44](2091 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:23, 00:26](2084 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:18, 00:20](1437 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:21, 00:27](2010 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:22, 00:21](2014 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:19, 00:18](1370 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:26] ( 847 warnings 1727 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:25, 16:10](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:25](527 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:16, 01:30](1418 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:16, 01:37](1429 MB) -PASS -- TEST 'control_latlon_intel' [03:17, 01:33](1427 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:18, 01:34](1422 MB) -PASS -- TEST 'control_c48_intel' [06:17, 04:11](1566 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:16, 04:01](693 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:17, 04:20](1567 MB) -PASS -- TEST 'control_c192_intel' [06:22, 04:27](1686 MB) -PASS -- TEST 'control_c384_intel' [10:35, 08:49](1975 MB) -PASS -- TEST 'control_c384gdas_intel' [12:47, 11:03](1179 MB) -PASS -- TEST 'control_stochy_intel' [03:14, 01:16](476 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:15, 00:41](279 MB) -PASS -- TEST 'control_lndp_intel' [02:14, 01:05](483 MB) -PASS -- TEST 'control_iovr4_intel' [03:14, 01:38](478 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:16, 01:55](774 MB) -PASS -- TEST 'control_iovr5_intel' [03:15, 01:40](481 MB) -PASS -- TEST 'control_p8_intel' [03:24, 01:52](1708 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:28, 01:58](1713 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:21, 01:53](1720 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:23, 01:52](1734 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:22, 01:56](1738 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:29, 05:24](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [03:21, 01:06](866 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:25, 02:21](1708 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:21, 01:05](865 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:20, 01:53](1709 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:19, 02:03](1795 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:19, 03:05](1712 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:23, 02:30](1768 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:23, 02:13](1720 MB) -PASS -- TEST 'merra2_thompson_intel' [04:24, 02:09](1718 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:19, 03:47](1724 MB) -PASS -- TEST 'regional_control_intel' [05:18, 03:07](857 MB) -PASS -- TEST 'regional_restart_intel' [03:19, 01:43](876 MB) -PASS -- TEST 'regional_decomp_intel' [05:18, 03:13](865 MB) -PASS -- TEST 'regional_2threads_intel' [04:17, 02:25](975 MB) -PASS -- TEST 'regional_noquilt_intel' [04:17, 03:06](1164 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:17, 03:05](861 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:18, 03:05](858 MB) -PASS -- TEST 'regional_wofs_intel' [06:19, 04:00](1589 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:30, 02:20](1753 MB) - -PASS -- COMPILE 'rrfs_intel' [07:10, 06:04] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [04:20, 02:24](860 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:31, 02:37](1209 MB) -PASS -- TEST 'rap_decomp_intel' [04:22, 02:26](862 MB) -PASS -- TEST 'rap_2threads_intel' [04:21, 02:42](936 MB) -PASS -- TEST 'rap_restart_intel' [03:21, 01:35](728 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:19, 02:22](866 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:19, 02:27](860 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 01:19](718 MB) -PASS -- TEST 'hrrr_control_intel' [04:21, 02:16](859 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:21](860 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:18, 02:34](937 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:15, 01:15](685 MB) -PASS -- TEST 'rrfs_v1beta_intel' [05:24, 04:02](858 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:15, 05:10](1809 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:15, 04:59](1802 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 05:58] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [05:16, 03:58](818 MB) -PASS -- TEST 'control_ras_intel' [04:14, 02:12](517 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 05:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:25, 07:15](1501 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:41] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:25, 01:52](1711 MB) -PASS -- TEST 'regional_control_faster_intel' [05:17, 03:07](858 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:27] ( 906 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:18, 01:32](1439 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:18, 01:36](1451 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:16, 02:06](645 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:14, 01:53](650 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:17, 03:04](954 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 01:59](657 MB) -PASS -- TEST 'control_diag_debug_intel' [03:21, 01:54](1505 MB) -PASS -- TEST 'control_debug_p8_intel' [03:22, 01:58](1741 MB) -PASS -- TEST 'regional_debug_intel' [13:21, 11:25](895 MB) -PASS -- TEST 'rap_control_debug_intel' [05:16, 03:26](1039 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:16, 03:22](1027 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:15, 03:26](1040 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:23](1030 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:15, 03:26](1032 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:17, 03:36](1111 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:15, 03:25](1030 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:29](1039 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:14, 03:25](1038 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:16, 03:23](1033 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:20](1029 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:24](1035 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:28](1025 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:23](1036 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:21](1034 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:20, 05:45](1037 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:10] ( 863 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:23, 08:40](1528 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:57] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:29, 02:30](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:19, 02:04](737 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:21, 02:01](742 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:20, 02:25](792 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:20, 02:19](784 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:08](731 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:19, 01:08](634 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:16, 01:08](615 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:12, 05:41] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:30, 01:53](1020 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:22, 00:58](1023 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:24, 01:51](1017 MB) -PASS -- TEST 'conus13km_restart_intel' [03:20, 01:06](888 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:56] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:36](787 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:13] ( 796 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:18](914 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:15](911 MB) -PASS -- TEST 'conus13km_debug_intel' [15:24, 13:47](1063 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:22, 13:46](759 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:20, 12:37](1059 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [16:21, 14:18](1057 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:20, 13:47](1128 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:04] ( 796 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:21](949 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:34] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:26, 02:28](831 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:47, 03:54](1045 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:17, 02:14](1058 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:25, 07:23](938 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:23, 03:11](453 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:26, 03:48](468 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:24, 01:35](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:46, 04:03](418 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:22, 02:19](486 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:24, 02:08](489 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:19, 00:51](416 MB) -PASS -- TEST 'gnv1_nested_intel' [04:33, 02:16](1692 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:12, 08:19] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:37, 03:16](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:12, 07:41] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:23, 03:47](885 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:26, 03:51](857 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 08:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 02:03](1550 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:22](1551 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:52](669 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:52](669 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:53](669 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:02](1550 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:03](1550 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:50](673 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:31, 05:00](1363 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:28, 04:46](706 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:03](1547 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 03:45](4504 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:16, 03:45](4504 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:28] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:14, 04:06](1548 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:14, 02:03](1550 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:38] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:20, 00:55](301 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:18, 00:39](429 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](430 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 09:10] ( 1 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:32, 02:20](1778 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:10] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:04](1761 MB) - -PASS -- COMPILE 'atml_intel' [08:10, 06:48] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:29, 02:18](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:21, 01:20](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 02:42] ( 911 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:28, 03:17](1881 MB) - -PASS -- COMPILE 'atmw_intel' [09:12, 07:36] ( 1 warnings 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:25, 01:14](1753 MB) - -PASS -- COMPILE 'atmaero_intel' [10:12, 08:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:36](1928 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:21, 03:00](1575 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:22, 03:06](1592 MB) - -PASS -- COMPILE 'atmaq_intel' [07:12, 06:00] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [14:54, 12:31](2968 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:49, 14:03](2967 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 02:20] ( 880 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:48, 25:47](2983 MB) - -PASS -- COMPILE 'atm_fbh_intel' [08:12, 06:04] ( 4 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:21, 06:00](795 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 11:24] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:31, 03:47](2025 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:52] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [10:26, 08:36](1908 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:29, 09:14](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:26, 04:05](1055 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:26, 04:08](1917 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [11:25, 09:56](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:11, 12:18] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:20, 08:41](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:29] ( 371 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [14:35, 12:43](1925 MB) + +PASS -- COMPILE 's2swa_intel' [15:11, 13:17] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:33, 04:55](2048 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:33, 04:52](2049 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:28, 02:40](1600 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:32, 04:56](2074 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 02:42](1450 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:30, 05:44](2224 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:30, 04:46](2056 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:31, 03:54](2003 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:32, 04:56](2054 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [09:57, 05:07](2381 MB) + +PASS -- COMPILE 's2swal_intel' [13:11, 11:31] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [06:31, 04:54](2059 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [06:30, 02:48](1587 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:27, 04:58](1912 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 10:55] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [04:29, 02:47](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:22](1850 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:35] ( 370 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:34, 08:29](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:28] ( 370 warnings 988 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:31, 03:49](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 10:34] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:31, 03:02](1968 MB) + +PASS -- COMPILE 's2swa_faster_intel' [13:11, 11:21] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:36, 04:53](2054 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:30] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:36, 08:42](1930 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:25, 04:09](1087 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:36, 10:00](1904 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [07:30, 03:57](2866 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:30, 01:16](2872 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:20, 00:43](2282 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:26, 00:45](2089 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:28](2081 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:16, 00:20](1436 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:28, 00:43](2082 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:28, 00:26](2091 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:17, 00:18](1435 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [03:28, 00:27](2023 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:28, 00:22](2011 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:18, 00:16](1369 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:38] ( 371 warnings 1727 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:25, 16:03](1952 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:11] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:16, 02:28](526 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 01:28](1417 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:16, 01:36](1427 MB) +PASS -- TEST 'control_latlon_intel' [03:14, 01:32](1423 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:16, 01:35](1421 MB) +PASS -- TEST 'control_c48_intel' [06:18, 04:11](1577 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:16, 04:00](685 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:16, 04:18](1570 MB) +PASS -- TEST 'control_c192_intel' [06:18, 04:25](1689 MB) +PASS -- TEST 'control_c384_intel' [10:34, 08:50](1963 MB) +PASS -- TEST 'control_c384gdas_intel' [11:50, 09:39](1178 MB) +PASS -- TEST 'control_stochy_intel' [03:15, 01:09](479 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:13, 00:41](282 MB) +PASS -- TEST 'control_lndp_intel' [03:15, 01:04](483 MB) +PASS -- TEST 'control_iovr4_intel' [03:14, 01:37](483 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [03:18, 01:55](776 MB) +PASS -- TEST 'control_iovr5_intel' [03:15, 01:38](478 MB) +PASS -- TEST 'control_p8_intel' [03:25, 01:48](1710 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:28, 01:52](1718 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:21, 01:47](1724 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:25, 01:45](1731 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:24, 01:51](1744 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:25, 01:22](2418 MB) +PASS -- TEST 'control_restart_p8_intel' [02:20, 01:05](868 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:21, 01:51](1711 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:06](847 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:20, 01:53](1709 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:20, 02:01](1790 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:21, 03:01](1725 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:21, 02:25](1777 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:22, 01:56](1725 MB) +PASS -- TEST 'merra2_thompson_intel' [03:21, 02:04](1711 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:18, 03:42](1724 MB) +PASS -- TEST 'regional_control_intel' [04:17, 03:05](855 MB) +PASS -- TEST 'regional_restart_intel' [03:17, 01:43](879 MB) +PASS -- TEST 'regional_decomp_intel' [05:16, 03:18](866 MB) +PASS -- TEST 'regional_2threads_intel' [04:16, 02:26](990 MB) +PASS -- TEST 'regional_noquilt_intel' [05:17, 03:05](1157 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [04:19, 03:03](855 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:16, 03:05](857 MB) +PASS -- TEST 'regional_wofs_intel' [05:17, 04:04](1591 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:35] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:21, 02:16](1753 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:08] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [04:19, 02:27](859 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:30, 02:36](1209 MB) +PASS -- TEST 'rap_decomp_intel' [04:21, 02:30](868 MB) +PASS -- TEST 'rap_2threads_intel' [04:20, 02:43](950 MB) +PASS -- TEST 'rap_restart_intel' [03:19, 01:21](733 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:20, 02:27](862 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:20, 02:29](865 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:20, 01:21](722 MB) +PASS -- TEST 'hrrr_control_intel' [04:21, 02:20](857 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:25](861 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:19, 02:36](941 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:14, 01:17](690 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:23, 04:14](859 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:16, 05:22](1816 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:15, 05:04](1807 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:03] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [05:17, 03:57](822 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:08](520 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [09:22, 07:11](1509 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:23, 01:52](1707 MB) +PASS -- TEST 'regional_control_faster_intel' [05:17, 03:05](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:32] ( 430 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:19, 01:33](1436 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:20, 01:36](1440 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:19, 02:05](651 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:14, 01:52](651 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:15, 02:50](958 MB) +PASS -- TEST 'control_ras_debug_intel' [03:14, 01:54](654 MB) +PASS -- TEST 'control_diag_debug_intel' [03:16, 01:54](1504 MB) +PASS -- TEST 'control_debug_p8_intel' [03:20, 01:51](1746 MB) +PASS -- TEST 'regional_debug_intel' [13:19, 11:17](899 MB) +PASS -- TEST 'rap_control_debug_intel' [05:15, 03:20](1043 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:15, 03:16](1030 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:21](1029 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:15, 03:23](1036 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:21](1036 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:19, 03:35](1115 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:14, 03:24](1034 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:14, 03:25](1032 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:15, 03:23](1040 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:14, 03:25](1036 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:15, 03:19](1033 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:14, 03:25](1031 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:24](1033 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:24](1033 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:22](1040 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:20, 05:42](1032 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:03] ( 391 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:29, 08:41](1535 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:41] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:31, 02:26](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:19, 02:03](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:18, 01:59](745 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [04:18, 02:25](795 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:19](788 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:19, 02:08](747 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:18, 01:08](631 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:07](618 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:44] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:30, 01:51](1014 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:24, 00:54](1023 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:23, 01:50](1026 MB) +PASS -- TEST 'conus13km_restart_intel' [02:20, 01:05](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:46] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:20, 02:33](787 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:17] ( 324 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:14, 03:17](911 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:13](907 MB) +PASS -- TEST 'conus13km_debug_intel' [15:30, 13:56](1065 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 13:57](762 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:24, 12:37](1070 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [16:23, 14:16](1063 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:22, 13:53](1127 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 02:10] ( 324 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:20](950 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:53] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:26, 02:27](830 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:45, 03:48](1052 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:16, 02:11](1056 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [09:26, 07:26](939 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [04:25, 03:04](453 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:28, 03:42](468 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:21, 01:32](381 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:42, 04:00](420 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:21, 02:17](491 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:21, 02:08](493 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:17, 00:51](411 MB) +PASS -- TEST 'gnv1_nested_intel' [04:34, 02:15](1697 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 08:27] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:41, 03:16](787 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 08:13] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [05:23, 03:48](880 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:25, 03:49](858 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 02:03](1555 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:15, 01:22](1552 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:51](668 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:51](674 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:53](671 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 02:01](1554 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:02](1548 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:13, 01:50](670 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:30, 04:58](1362 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:29, 04:42](708 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:03](1555 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:44](4505 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:46](4512 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:32] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 04:07](1548 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:44] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 02:01](1549 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:20, 00:57](300 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:18, 00:40](429 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:18, 00:30](429 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:20] ( 1 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:29, 02:18](1780 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:27, 03:03](1775 MB) + +PASS -- COMPILE 'atml_intel' [08:12, 06:44] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:27, 02:20](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:20, 01:22](1020 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 02:51] ( 435 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:24, 03:18](1888 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 07:48] ( 1 warnings 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:13](1741 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 08:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:25, 02:37](1925 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [04:23, 03:01](1577 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:22, 03:04](1590 MB) + +PASS -- COMPILE 'atmaq_intel' [08:10, 06:12] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [14:57, 12:11](2969 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:50, 13:59](2969 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:10] ( 408 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:50, 26:58](2985 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:32] ( 4 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:18, 05:59](789 MB) SYNOPSIS: -Starting Date/Time: 20251031 17:25:22 -Ending Date/Time: 20251031 18:40:58 -Total Time: 01h:15m:59s +Starting Date/Time: 20251104 00:06:34 +Ending Date/Time: 20251104 01:24:02 +Total Time: 01h:17m:49s Compiles Completed: 42/42 Tests Completed: 198/198 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 4a2bfcf4c7..c4d36213c0 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: -298ac307b99046cc0f13958805555536c87ce1f5 +e758964b9d7dbf1236816c4a7b664d53f11d1ded Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -14,10 +14,10 @@ Submodule hashes used in testing: c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -27,414 +27,414 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251031 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1972358 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_71411 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:43] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:05, 11:11](2223 MB) -PASS -- TEST 'cpld_control_gefs_intel' [26:45, 15:41](3031 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [17:52, 04:53](2742 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [26:13, 15:05](3074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:40] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:51, 17:05](2079 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:06, 18:13](2279 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:58, 06:53](1369 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:05, 07:56](2202 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:49, 20:50](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:39] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:37, 17:02](2056 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:15] ( 847 warnings 2765 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:41, 21:36](1938 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 18:17] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:13, 12:00](2293 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:15, 11:54](2287 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:11, 05:53](1888 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:07, 11:12](2311 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:17, 06:00](1887 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:05, 10:08](2345 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:07, 11:32](2216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:02, 11:07](2067 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:06, 11:00](2289 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:56, 13:57](2678 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:44, 08:27](2825 MB) - -PASS -- COMPILE 's2swal_intel' [19:11, 18:02] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [14:02, 12:07](2129 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:10, 05:56](1733 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:53, 06:54](2247 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 17:03] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:46, 11:34](2100 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:50, 06:01](2194 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:01] ( 846 warnings 2014 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:07, 13:20](2303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:39] ( 846 warnings 1996 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:49, 06:35](2063 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 17:09] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:53, 04:02](2170 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:52] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:01, 11:27](2274 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 17:55] ( 1 warnings 1037 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:47, 14:59](2132 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:00, 06:52](1372 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:51, 17:40](1945 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [08:36, 06:57](3081 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:37, 02:06](3084 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:33, 01:17](2529 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:31, 01:13](2263 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:43](2268 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:28, 00:35](1587 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:27, 01:12](2257 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:43](2263 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:31, 00:34](1591 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:31, 00:43](2194 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:35](2187 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:34, 00:31](1535 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:37] ( 847 warnings 2747 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:44](1992 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:47] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 03:16](823 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:23, 02:07](1719 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:25, 02:18](1736 MB) -PASS -- TEST 'control_latlon_intel' [04:22, 02:15](1723 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:25, 02:16](1730 MB) -PASS -- TEST 'control_c48_intel' [08:25, 06:14](1713 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:23, 06:01](853 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:25, 06:25](1728 MB) -PASS -- TEST 'control_c192_intel' [08:34, 06:40](1927 MB) -PASS -- TEST 'control_c384_intel' [10:14, 07:29](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [11:13, 07:49](1398 MB) -PASS -- TEST 'control_stochy_intel' [03:18, 01:33](783 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:18, 00:56](629 MB) -PASS -- TEST 'control_lndp_intel' [03:18, 01:29](785 MB) -PASS -- TEST 'control_iovr4_intel' [04:19, 02:17](780 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:33, 02:48](1071 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:20](777 MB) -PASS -- TEST 'control_p8_intel' [04:47, 02:39](2008 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:49](2013 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:43, 02:37](2023 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:48, 02:36](2038 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:48, 02:44](2045 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:50, 02:00](2378 MB) -PASS -- TEST 'control_restart_p8_intel' [03:39, 01:37](1284 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:48, 02:37](2006 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:36, 01:35](1285 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:43](1991 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:37, 03:02](2026 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:31, 04:40](2011 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 03:46](2073 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:41, 02:51](2013 MB) -PASS -- TEST 'merra2_thompson_intel' [05:39, 03:09](2018 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:29, 04:30](2026 MB) -PASS -- TEST 'regional_control_intel' [06:33, 04:42](1223 MB) -PASS -- TEST 'regional_restart_intel' [04:31, 02:36](1241 MB) -PASS -- TEST 'regional_decomp_intel' [06:31, 05:01](1212 MB) -PASS -- TEST 'regional_2threads_intel' [05:30, 03:39](1095 MB) -PASS -- TEST 'regional_noquilt_intel' [06:29, 04:50](1500 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:30, 04:42](1217 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:44](1225 MB) -PASS -- TEST 'regional_wofs_intel' [07:28, 05:57](2045 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:10] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:43, 03:35](2048 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:25] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [05:32, 03:21](1183 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:55, 03:44](1341 MB) -PASS -- TEST 'rap_decomp_intel' [05:30, 03:33](1169 MB) -PASS -- TEST 'rap_2threads_intel' [05:29, 03:55](1183 MB) -PASS -- TEST 'rap_restart_intel' [03:33, 01:52](1172 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:32, 03:19](1180 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:31, 03:30](1155 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:34, 01:48](1172 MB) -PASS -- TEST 'hrrr_control_intel' [05:33, 03:12](1165 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 03:20](1157 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:29, 03:40](1166 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:21, 01:44](1135 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:35, 06:00](1210 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 08:02](2119 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:34](2163 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:25] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:31, 05:40](1160 MB) -PASS -- TEST 'control_ras_intel' [04:17, 03:05](864 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:58] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [12:38, 10:17](1792 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:52] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:41, 02:47](2025 MB) -PASS -- TEST 'regional_control_faster_intel' [06:31, 04:46](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:15] ( 906 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 02:08](1749 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:22, 02:22](1753 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 03:05](964 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:42](959 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:20](1272 MB) -PASS -- TEST 'control_ras_debug_intel' [04:19, 02:44](971 MB) -PASS -- TEST 'control_diag_debug_intel' [04:30, 02:41](1818 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 02:38](2040 MB) -PASS -- TEST 'regional_debug_intel' [19:34, 17:23](1231 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 04:51](1343 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:20, 04:47](1348 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:51](1338 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 05:01](1335 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:19, 05:01](1338 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:11](1437 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:57](1351 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 04:59](1348 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:52](1335 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:53](1343 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:47](1335 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:49](1341 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:20, 08:12](1333 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 04:55](1359 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:47](1346 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:32](1357 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:07] ( 863 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:36, 13:25](1822 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:53] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:34](1183 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:33, 03:01](1108 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:31, 02:56](1099 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:30, 03:29](1023 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:28, 03:20](1027 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:26, 03:10](1019 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:30, 01:40](1059 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:38](1052 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:47] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:48, 02:55](1463 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:37, 01:17](1298 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:37, 02:58](1490 MB) -PASS -- TEST 'conus13km_restart_intel' [03:38, 01:42](1332 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:12, 18:07] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:09, 11:27](2205 MB) +PASS -- TEST 'cpld_control_gefs_intel' [30:16, 15:39](3030 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:19, 04:54](2739 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [28:15, 15:25](3067 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:41] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:54, 17:08](2085 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 18:36](2273 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:57, 06:54](1354 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:00, 07:56](2208 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:53, 20:49](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:42] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:51, 17:11](2059 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:07] ( 371 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:52, 21:22](1943 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:00] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:17, 12:24](2292 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:21, 11:37](2290 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:07, 06:01](1886 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:15, 11:15](2309 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:15, 06:01](1885 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:11, 10:02](2350 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:11, 11:35](2266 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:11, 11:12](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:15, 11:37](2283 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:09, 13:19](2672 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:34, 08:42](2832 MB) + +PASS -- COMPILE 's2swal_intel' [20:11, 18:45] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:11, 12:31](2119 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:13, 06:15](1734 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:02, 06:59](2245 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 17:13] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:55, 11:03](2106 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:10, 05:54](2200 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 03:51] ( 370 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:09, 13:16](2309 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:48] ( 370 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:51, 06:28](2127 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:11, 16:32] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:52, 04:04](2175 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:56] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:06, 11:25](2292 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:03] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:56, 15:04](2136 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:09, 06:53](1352 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:54, 17:42](1941 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:38, 06:51](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:36, 02:10](3080 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:35, 01:18](2530 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:31, 01:10](2261 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:42](2257 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:30, 00:34](1591 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:30, 01:12](2260 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:43](2267 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:29, 00:35](1590 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:33, 00:43](2190 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:33, 00:34](2190 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:34, 00:29](1535 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:52] ( 371 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:44, 27:51](1988 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:10, 10:30] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:22, 03:09](831 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:24, 02:07](1722 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:26, 02:17](1736 MB) +PASS -- TEST 'control_latlon_intel' [04:23, 02:13](1724 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:26, 02:16](1730 MB) +PASS -- TEST 'control_c48_intel' [08:25, 06:13](1716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:24, 06:03](853 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:26, 06:22](1720 MB) +PASS -- TEST 'control_c192_intel' [08:33, 06:37](1924 MB) +PASS -- TEST 'control_c384_intel' [15:35, 07:32](1996 MB) +PASS -- TEST 'control_c384gdas_intel' [11:18, 07:55](1402 MB) +PASS -- TEST 'control_stochy_intel' [03:20, 01:35](784 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:58](626 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:28](784 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:19](788 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:32, 02:51](1077 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:21](783 MB) +PASS -- TEST 'control_p8_intel' [04:49, 02:43](2013 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:51, 02:53](2018 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:43, 02:39](2020 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:46, 02:37](2040 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:47, 02:46](2044 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:41, 02:08](2398 MB) +PASS -- TEST 'control_restart_p8_intel' [03:41, 01:37](1290 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:42, 02:43](1977 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:41, 01:35](1280 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:44](1999 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:40, 03:04](2025 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:41](2007 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:43, 03:55](2071 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:40, 02:50](2026 MB) +PASS -- TEST 'merra2_thompson_intel' [05:39, 03:10](2015 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:28, 04:50](2015 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:42](1222 MB) +PASS -- TEST 'regional_restart_intel' [04:32, 02:37](1238 MB) +PASS -- TEST 'regional_decomp_intel' [06:29, 04:57](1213 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 03:39](1082 MB) +PASS -- TEST 'regional_noquilt_intel' [06:31, 04:43](1505 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:34, 04:44](1236 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:41](1229 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 06:00](2046 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:20] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:45, 03:38](2054 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:11] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [05:33, 03:25](1174 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 03:46](1326 MB) +PASS -- TEST 'rap_decomp_intel' [05:32, 03:30](1175 MB) +PASS -- TEST 'rap_2threads_intel' [05:30, 03:55](1187 MB) +PASS -- TEST 'rap_restart_intel' [03:33, 01:51](1177 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:34, 03:20](1178 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:30, 03:35](1173 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:35, 01:48](1167 MB) +PASS -- TEST 'hrrr_control_intel' [05:34, 03:15](1178 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:31, 03:22](1165 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:31, 03:41](1165 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:45](1140 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:34, 05:59](1212 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:19, 08:06](2127 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 07:41](2188 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 09:23] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:30, 05:43](1161 MB) +PASS -- TEST 'control_ras_intel' [05:18, 03:06](870 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:47] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [12:39, 10:48](1797 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 08:58] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:41, 02:46](2019 MB) +PASS -- TEST 'regional_control_faster_intel' [06:31, 04:45](1227 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 04:20] ( 430 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:08](1748 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:17](1753 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:19, 02:57](961 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:41](952 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:16](1276 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:42](967 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:41](1821 MB) +PASS -- TEST 'control_debug_p8_intel' [04:35, 02:37](2043 MB) +PASS -- TEST 'regional_debug_intel' [19:35, 17:39](1225 MB) +PASS -- TEST 'rap_control_debug_intel' [06:20, 04:50](1339 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:43](1346 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:54](1337 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:58](1342 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 05:05](1344 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:30, 05:16](1421 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:19, 04:55](1353 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:04](1353 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:19, 05:00](1343 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:52](1353 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:50](1337 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:51](1334 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:19, 08:04](1346 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:20, 04:57](1359 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:19, 04:58](1340 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:30](1357 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:48] ( 391 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:41, 15:05](1819 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:10] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:44](1180 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:30, 03:01](1109 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:30, 02:56](1089 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:32, 03:29](1027 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:29, 03:19](1024 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:26, 03:06](1043 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:28, 01:39](1061 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:37](1048 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:50] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:51, 02:55](1454 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:17](1295 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:55](1486 MB) +PASS -- TEST 'conus13km_restart_intel' [03:40, 01:42](1333 MB) PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:57] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:31, 03:46](1108 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:51] ( 796 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:50](1215 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:46](1227 MB) -PASS -- TEST 'conus13km_debug_intel' [24:39, 22:24](1509 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:39, 22:09](1205 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [21:37, 19:42](1332 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:37, 23:13](1525 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:38, 22:31](1567 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:06] ( 796 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 04:54](1281 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 13:27] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:33](917 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:15, 05:14](1118 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 03:08](1166 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:44, 28:27](976 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:36, 04:54](493 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:42, 05:38](540 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:30, 02:26](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:09, 06:13](431 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:31, 03:19](527 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:09](528 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:23, 01:05](400 MB) -PASS -- TEST 'gnv1_nested_intel' [05:53, 03:23](1865 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 10:56] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:15, 10:24](675 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:44] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:49, 05:34](933 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:46, 05:39](918 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:11, 16:20] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:00](2004 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:57](1956 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:49](1267 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 02:51](1263 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:50](1261 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:07](2003 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:18, 03:00](2003 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:48](1267 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:22, 07:25](1776 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:23, 06:54](1163 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 03:01](2012 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:51](4966 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:50](4969 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:52] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:52](1914 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:11, 15:53] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:06](2009 MB) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:44](1113 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 03:12] ( 324 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:54](1206 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:19, 04:39](1207 MB) +PASS -- TEST 'conus13km_debug_intel' [24:39, 22:33](1481 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:37, 22:27](1189 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:37, 19:41](1334 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [24:37, 22:28](1526 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:35, 22:20](1569 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 02:57] ( 324 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:59](1284 MB) + +PASS -- COMPILE 'hafsw_intel' [15:12, 13:12] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:45, 03:35](915 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:24, 05:15](1117 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 03:13](1170 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:49, 29:00](973 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:34, 04:56](491 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:41, 05:43](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:29, 02:28](371 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:11, 06:10](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:33, 03:17](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:36, 03:10](524 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 01:06](398 MB) +PASS -- TEST 'gnv1_nested_intel' [05:51, 03:36](1856 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:50] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:28, 10:20](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:07] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:54](935 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:39, 05:38](918 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [17:11, 16:09] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:57](2007 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:57](1952 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:16, 02:48](1256 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:49](1265 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:50](1265 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:01](2005 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:00](2009 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:16, 02:44](1274 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:08, 07:20](1783 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:04, 07:00](1155 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:59](2014 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:53](4974 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:46](4964 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 03:13] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 06:52](1911 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:11, 15:50] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 03:00](2002 MB) PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:02] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:35, 00:53](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:34](305 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:25, 00:23](306 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:17] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:34](637 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:30, 00:16](517 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:12, 16:46] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:53, 03:20](2097 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:15] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:30](2103 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:14] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:43, 02:57](1850 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 01:41](1123 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:48] ( 911 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:44, 04:45](1878 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:26] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:37, 01:46](2039 MB) - -PASS -- COMPILE 'atmaero_intel' [13:10, 11:34] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:46, 03:48](2103 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:21](1884 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:26](1886 MB) - -PASS -- COMPILE 'atmaq_intel' [11:10, 09:27] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [15:45, 12:52](2926 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [18:27, 15:44](2924 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:56] ( 880 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:17, 39:25](2935 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:43] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:18](1181 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:17] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:30, 03:26](1105 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:10, 05:17] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [05:31, 04:07](1125 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 03:59] -PASS -- TEST 'control_c48_gnu' [11:24, 09:27](1538 MB) -PASS -- TEST 'control_stochy_gnu' [04:17, 02:51](602 MB) -PASS -- TEST 'control_ras_gnu' [06:17, 04:43](616 MB) -PASS -- TEST 'control_p8_gnu' [06:42, 04:19](1543 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:38, 04:16](1554 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 05:32](653 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:10, 03:57] -PASS -- TEST 'rap_control_gnu' [07:30, 05:58](945 MB) -PASS -- TEST 'rap_decomp_gnu' [07:27, 05:55](948 MB) -PASS -- TEST 'rap_2threads_gnu' [08:31, 06:53](1020 MB) -PASS -- TEST 'rap_restart_gnu' [04:31, 03:05](678 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:30, 05:54](944 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:29, 05:57](948 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:34, 03:03](688 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:42](952 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:30, 05:41](938 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:28, 06:34](1011 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:42](954 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:20, 02:58](683 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:21, 02:57](771 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:54](940 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:42] -PASS -- TEST 'control_csawmg_gnu' [10:29, 08:21](856 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:49] -PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:33](1378 MB) -PASS -- TEST 'regional_debug_gnu' [10:33, 08:23](892 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:34](956 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:20, 02:30](968 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:30](969 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:19, 02:31](966 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:41](1043 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 04:06](952 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 02:31](959 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:29](599 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:39](596 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:39](1544 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:33](959 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:37](966 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:30, 04:16](979 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:00] -PASS -- TEST 'control_wam_debug_gnu' [08:37, 06:36](1403 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:37] -PASS -- TEST 'control_csawmg_debug_gnu' [04:31, 02:15](838 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:46] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:27, 05:06](795 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 05:00](805 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:06](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:25, 05:55](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:02](808 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:26, 02:38](646 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:36](656 MB) -PASS -- TEST 'conus13km_control_gnu' [06:50, 04:47](1027 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:40, 02:02](1015 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:42, 04:56](1031 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:38, 02:43](732 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:41] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 05:42](827 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:38] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:25](809 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:19, 02:24](812 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:39, 11:05](1045 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [12:35, 11:07](774 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:34, 08:56](1035 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [12:34, 11:08](1052 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:33, 11:03](1118 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:38](831 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:54] -PASS -- TEST 'cpld_control_p8_gnu' [13:05, 11:08](1702 MB) - -PASS -- COMPILE 's2s_gnu' [17:11, 16:01] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:52, 09:59](1642 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:02] -PASS -- TEST 'cpld_debug_p8_gnu' [08:57, 06:52](1697 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:41](1609 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:32] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:46, 11:00](1527 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:25] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:34](1556 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:16] -PASS -- TEST 'control_gfs_mpas_gnu' [02:26, 00:44](6344 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 09:07] ( 1 warnings 404 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:28, 01:22](1169 MB) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:53](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:34](307 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:26](304 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:14] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:32](635 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:17](506 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 16:31] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:57, 03:20](2096 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:40] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:22](2109 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:27] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:45, 03:00](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 01:46](1121 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:03] ( 435 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:51, 04:51](1868 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:24] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:41, 01:49](2030 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:58] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:46, 03:49](2112 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:25](1890 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:25](1883 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 09:34] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:42, 13:01](2926 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:38, 15:59](2927 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:13] ( 408 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:34, 39:26](2939 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:51] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:25, 11:27](1180 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:26] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:31, 03:25](1099 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:15] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:29, 04:07](1114 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:00] +PASS -- TEST 'control_c48_gnu' [11:24, 09:30](1538 MB) +PASS -- TEST 'control_stochy_gnu' [04:17, 02:51](606 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:45](614 MB) +PASS -- TEST 'control_p8_gnu' [06:44, 04:19](1552 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 04:22](1561 MB) +PASS -- TEST 'control_flake_gnu' [07:19, 05:31](656 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:02] +PASS -- TEST 'rap_control_gnu' [07:29, 05:54](945 MB) +PASS -- TEST 'rap_decomp_gnu' [07:27, 06:00](951 MB) +PASS -- TEST 'rap_2threads_gnu' [08:30, 06:51](1021 MB) +PASS -- TEST 'rap_restart_gnu' [04:29, 03:02](677 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:29, 05:53](942 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:27, 05:56](945 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:30, 03:05](686 MB) +PASS -- TEST 'hrrr_control_gnu' [07:31, 05:42](954 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:41](940 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [08:32, 06:35](1012 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:27, 05:42](955 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:21, 02:59](684 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:20, 02:57](771 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:32, 10:57](940 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 03:44] +PASS -- TEST 'control_csawmg_gnu' [10:30, 08:20](853 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:50] +PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:34](1379 MB) +PASS -- TEST 'regional_debug_gnu' [10:34, 08:14](870 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:19, 02:33](962 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:18, 02:30](961 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:17, 02:32](965 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:35](964 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:27, 02:45](1043 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:19, 03:59](949 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:18, 02:33](959 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:29](595 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:39](593 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:32, 01:37](1550 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:35](956 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:18, 02:32](959 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:20](966 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:04] +PASS -- TEST 'control_wam_debug_gnu' [08:38, 06:27](1399 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:43] +PASS -- TEST 'control_csawmg_debug_gnu' [04:31, 02:24](846 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [07:27, 05:07](799 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 05:00](802 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:26, 06:05](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:25, 06:00](845 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:23, 05:06](805 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:29, 02:39](651 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:40](654 MB) +PASS -- TEST 'conus13km_control_gnu' [06:53, 04:57](1021 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:46, 02:04](1015 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:44, 04:57](1034 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:36, 02:44](730 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:56] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:41](825 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:40] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:30](804 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:26](814 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:37, 10:49](1030 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:38, 10:52](771 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:34, 08:59](1033 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [12:36, 10:56](1049 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:37, 10:54](1110 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:41] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:34](837 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:49] +PASS -- TEST 'cpld_control_p8_gnu' [13:03, 10:55](1686 MB) + +PASS -- COMPILE 's2s_gnu' [17:11, 16:03] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:53, 09:49](1629 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:07] +PASS -- TEST 'cpld_debug_p8_gnu' [08:56, 06:49](1696 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:02] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:41](1600 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:30] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:47, 10:53](1547 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:49] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:18, 03:23](1555 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:20] +PASS -- TEST 'control_gfs_mpas_gnu' [02:25, 00:46](6343 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [10:11, 09:03] ( 1 warnings 404 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:27, 01:23](1167 MB) SYNOPSIS: -Starting Date/Time: 20251101 03:13:01 -Ending Date/Time: 20251101 05:03:24 -Total Time: 01h:50m:52s +Starting Date/Time: 20251104 05:34:37 +Ending Date/Time: 20251104 07:26:22 +Total Time: 01h:52m:14s Compiles Completed: 63/63 Tests Completed: 272/272 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 47a485e4a8..953f323e5a 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: -298ac307b99046cc0f13958805555536c87ce1f5 +e758964b9d7dbf1236816c4a7b664d53f11d1ded Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,398 +41,398 @@ 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-20251031 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1688330 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1719705 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:12, 18:53] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:12, 07:41](2163 MB) -PASS -- TEST 'cpld_control_gefs_intel' [27:27, 15:42](3129 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [21:22, 05:49](2823 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [27:28, 14:58](3169 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 19:41] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:19, 15:07](2025 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:36, 16:31](2329 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:26, 06:02](1333 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:53, 07:52](2219 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:20, 16:17](1940 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 19:42] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:43, 15:23](1995 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:10] ( 847 warnings 2765 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:15, 18:01](1995 MB) - -PASS -- COMPILE 's2swa_intel' [22:12, 20:48] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:15, 09:17](2265 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:09, 09:04](2260 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:18, 07:02](1965 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:08, 09:02](2284 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:18, 04:29](1837 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:06, 09:25](2381 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:05, 09:16](2248 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:03, 06:31](2131 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:09, 09:08](2265 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [24:51, 16:01](2941 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:32, 05:39](2968 MB) - -PASS -- COMPILE 's2swal_intel' [22:12, 20:59] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [11:07, 08:17](2232 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:18, 04:21](1936 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [17:02, 07:25](2234 MB) - -PASS -- COMPILE 's2sw_intel' [22:12, 20:47] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:03, 07:29](2050 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:06, 10:16](2162 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 05:20] ( 846 warnings 2014 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:02, 12:41](2295 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:36] ( 846 warnings 1996 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:38](2073 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:12, 20:47] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 03:57](2125 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:12, 17:30] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:10, 09:29](2271 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 20:46] ( 1 warnings 1037 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:06, 13:46](2099 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:21, 05:59](1414 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:00, 13:15](2001 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [07:38, 05:09](3040 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:39, 01:35](3040 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:44, 00:59](2485 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:29, 00:55](2248 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:31](2242 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:31, 01:24](1561 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [06:27, 01:53](2244 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:24, 01:40](2243 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:30, 00:27](1552 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2167 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:27, 00:26](2169 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:28, 00:22](1505 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 03:09] ( 847 warnings 2747 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:06, 23:27](2074 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:09] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [11:20, 02:48](722 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:23, 01:54](1609 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:31, 01:59](1632 MB) -PASS -- TEST 'control_latlon_intel' [10:20, 01:58](1626 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:24, 02:00](1618 MB) -PASS -- TEST 'control_c48_intel' [14:25, 05:28](1719 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:24, 05:22](835 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [15:26, 05:40](1704 MB) -PASS -- TEST 'control_c192_intel' [14:33, 05:42](1824 MB) -PASS -- TEST 'control_c384_intel' [11:12, 06:14](2028 MB) -PASS -- TEST 'control_c384gdas_intel' [11:11, 07:14](1518 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:22](679 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:50](557 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:15](681 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 01:59](678 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:25, 02:20](974 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:01](676 MB) -PASS -- TEST 'control_p8_intel' [04:59, 02:18](1908 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:57, 02:26](1915 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 02:18](1911 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:52, 02:15](1927 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:59, 02:24](1950 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:43, 01:33](2425 MB) -PASS -- TEST 'control_restart_p8_intel' [04:00, 01:26](1221 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:42, 02:18](1902 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:58, 01:22](1221 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:21](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:45, 02:45](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 03:53](1908 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 03:14](1979 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:51, 02:25](1915 MB) -PASS -- TEST 'merra2_thompson_intel' [04:58, 02:48](1930 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:50, 04:08](1932 MB) -PASS -- TEST 'regional_control_intel' [06:27, 04:02](1200 MB) -PASS -- TEST 'regional_restart_intel' [04:28, 02:18](1205 MB) -PASS -- TEST 'regional_decomp_intel' [06:23, 04:21](1176 MB) -PASS -- TEST 'regional_2threads_intel' [05:23, 03:19](1093 MB) -PASS -- TEST 'regional_noquilt_intel' [05:30, 04:05](1501 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:10](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:27, 04:05](1205 MB) -PASS -- TEST 'regional_wofs_intel' [07:26, 05:20](2109 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [13:11, 11:28] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:52, 03:05](1953 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:21] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [05:49, 03:11](1118 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:08](1442 MB) -PASS -- TEST 'rap_decomp_intel' [05:32, 03:24](1061 MB) -PASS -- TEST 'rap_2threads_intel' [05:44, 03:37](1160 MB) -PASS -- TEST 'rap_restart_intel' [04:57, 01:53](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:46, 02:48](1083 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:35, 02:56](1058 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:56, 01:33](1084 MB) -PASS -- TEST 'hrrr_control_intel' [04:51, 02:43](1069 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:37, 02:45](1061 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:32, 03:28](1147 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:31](1040 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:55, 05:06](1195 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:20, 13:33](2020 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 06:33](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:33] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:27, 05:21](1075 MB) -PASS -- TEST 'control_ras_intel' [04:21, 02:44](847 MB) - -PASS -- COMPILE 'wam_intel' [10:10, 08:24] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [11:38, 09:12](1683 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:22] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:49, 02:23](1911 MB) -PASS -- TEST 'regional_control_faster_intel' [05:26, 04:08](1204 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 04:04] ( 906 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:23, 01:55](1645 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:54](1643 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:29](862 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:20, 02:17](853 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:25, 03:35](1159 MB) -PASS -- TEST 'control_ras_debug_intel' [04:17, 02:20](856 MB) -PASS -- TEST 'control_diag_debug_intel' [04:23, 02:14](1715 MB) -PASS -- TEST 'control_debug_p8_intel' [05:35, 03:08](1943 MB) -PASS -- TEST 'regional_debug_intel' [19:29, 17:04](1159 MB) -PASS -- TEST 'rap_control_debug_intel' [06:19, 04:11](1238 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:19, 04:08](1230 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:17, 04:11](1243 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:17, 04:16](1249 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:17, 04:22](1250 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:28, 04:28](1331 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:18, 04:29](1237 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:18, 04:24](1243 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:16](1260 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:18, 04:12](1246 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:18, 04:14](1241 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:17, 04:16](1242 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:18, 06:44](1247 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 04:26](1244 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:18, 04:13](1246 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 02:31] ( 863 warnings 396 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 08:15] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:47, 03:39](1297 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:46, 02:43](1057 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:40](1008 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:47, 03:18](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:47, 03:08](1056 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:55](1003 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:57, 01:27](977 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:32](966 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:11, 08:09] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:32](1518 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 01:14](1327 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:40, 02:32](1538 MB) -PASS -- TEST 'conus13km_restart_intel' [05:43, 01:29](1287 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:12] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:19](1112 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:10, 02:54] ( 796 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 04:05](1128 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 03:57](1117 MB) -PASS -- TEST 'conus13km_debug_intel' [21:37, 19:29](1561 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:37, 19:36](1162 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [22:33, 20:30](1370 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [22:33, 20:20](1596 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:33, 19:31](1616 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 04:18] ( 796 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:21, 04:47](1213 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 15:09] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:40, 03:16](1029 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:09, 04:57](1228 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:26, 02:44](1291 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:51, 13:55](1108 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:45, 04:21](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:52, 05:12](611 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 02:32](431 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:30, 05:36](507 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:38, 03:00](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:43, 02:48](609 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:22, 00:50](453 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:34] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:29, 11:38](824 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 10:31] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:40, 04:53](1090 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:38, 08:33](1081 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [19:12, 16:53] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:16, 02:26](1875 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:34](1808 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:17](1123 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:19](1120 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:15, 02:19](1115 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:25](1865 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:15, 02:28](1870 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:19](1127 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:55, 06:16](1712 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:51, 06:03](1199 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:14, 02:29](1878 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:15, 03:51](4832 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:16, 03:57](4830 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:52] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:16, 05:25](1776 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [19:12, 17:07] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:29](1874 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 00:47] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:54](336 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:22, 00:36](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:25](556 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:12, 16:26] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:51, 03:05](2047 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 09:07] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:42, 03:58](2064 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:50] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:55, 02:39](1884 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 01:38](1205 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:37] ( 911 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:53, 05:47](1909 MB) - -PASS -- COMPILE 'atmw_intel' [11:11, 10:06] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:52, 01:32](1952 MB) - -PASS -- COMPILE 'atmaero_intel' [14:12, 12:24] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:21](2018 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 03:44](1793 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:40, 03:55](1822 MB) - -PASS -- COMPILE 'atmaq_intel' [10:10, 08:55] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [15:23, 12:02](2940 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [16:11, 13:47](2946 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:30] ( 880 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [34:07, 31:47](2961 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:47] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:24, 09:30](1086 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:38] -PASS -- TEST 'control_c48_gnu' [09:35, 07:40](1585 MB) -PASS -- TEST 'control_stochy_gnu' [06:19, 02:54](590 MB) -PASS -- TEST 'control_ras_gnu' [08:18, 04:47](598 MB) -PASS -- TEST 'control_p8_gnu' [07:53, 04:38](1547 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:43, 03:39](1560 MB) -PASS -- TEST 'control_flake_gnu' [07:19, 05:16](642 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 03:54] -PASS -- TEST 'rap_control_gnu' [10:52, 08:07](945 MB) -PASS -- TEST 'rap_decomp_gnu' [06:44, 04:18](945 MB) -PASS -- TEST 'rap_2threads_gnu' [05:47, 03:35](1005 MB) -PASS -- TEST 'rap_restart_gnu' [04:52, 02:15](671 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [06:49, 04:11](941 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [06:34, 04:16](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:55, 02:15](678 MB) -PASS -- TEST 'hrrr_control_gnu' [06:35, 04:01](937 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:34, 03:56](922 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:44, 03:32](998 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:02](939 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:21, 02:06](672 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:21, 02:05](760 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:00, 07:39](937 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:11, 19:51] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:05, 07:56](2162 MB) +PASS -- TEST 'cpld_control_gefs_intel' [26:36, 14:10](3125 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:18, 05:01](2830 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [26:40, 13:11](3157 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:46] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:26, 15:28](2031 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:30, 16:25](2356 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 05:58](1348 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [10:43, 07:22](2219 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:07, 16:14](1930 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 19:43] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 15:21](1998 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 04:08] ( 371 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:25, 18:38](1999 MB) + +PASS -- COMPILE 's2swa_intel' [23:11, 21:25] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:23, 08:23](2261 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:21, 08:02](2268 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:14, 05:12](1964 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:17, 08:03](2282 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:21, 04:27](1840 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:15, 08:13](2392 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 08:02](2257 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:18, 06:53](2144 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:28, 08:06](2262 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 14:52](2938 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:20, 05:13](2975 MB) + +PASS -- COMPILE 's2swal_intel' [23:12, 21:14] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [11:08, 08:11](2232 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:21, 04:14](1933 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:58, 06:26](2235 MB) + +PASS -- COMPILE 's2sw_intel' [23:11, 21:13] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:01, 07:32](2045 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:01, 05:45](2164 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:28] ( 370 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:01, 11:50](2289 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:17] ( 370 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:52, 05:37](2070 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:11, 20:55] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:55, 04:06](2139 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:24] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:09, 07:59](2264 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 18:44] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:57, 12:46](2103 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:14, 06:00](1434 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:50, 13:48](2010 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [07:40, 05:21](3059 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:39, 01:40](3042 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:41, 00:59](2480 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:24, 00:55](2240 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:29, 00:33](2240 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:27, 00:24](1555 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [04:26, 01:33](2245 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:24, 00:32](2243 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:24](1555 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:24, 00:33](2171 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:29, 00:26](2167 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:27, 01:08](1509 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 04:30] ( 371 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 23:24](2077 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:42] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 02:46](735 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:25, 01:50](1612 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:33, 01:58](1630 MB) +PASS -- TEST 'control_latlon_intel' [03:22, 02:00](1623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:25, 01:59](1613 MB) +PASS -- TEST 'control_c48_intel' [07:29, 05:29](1716 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 05:24](833 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [07:29, 05:37](1722 MB) +PASS -- TEST 'control_c192_intel' [07:34, 05:47](1815 MB) +PASS -- TEST 'control_c384_intel' [09:13, 06:23](2020 MB) +PASS -- TEST 'control_c384gdas_intel' [11:17, 07:02](1525 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:23](682 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:28, 00:49](557 MB) +PASS -- TEST 'control_lndp_intel' [03:18, 01:16](686 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:02](683 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:25, 02:27](977 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:00](679 MB) +PASS -- TEST 'control_p8_intel' [05:09, 02:19](1902 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:58, 02:27](1909 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:51, 02:18](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:45, 02:28](1928 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:55, 02:28](1940 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:40, 02:25](2428 MB) +PASS -- TEST 'control_restart_p8_intel' [04:01, 01:26](1218 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:09](1900 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:24](1209 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 02:20](1904 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:03](1992 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:57](1911 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:53, 03:11](1984 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:47, 02:26](1925 MB) +PASS -- TEST 'merra2_thompson_intel' [04:54, 02:44](1918 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:46, 04:11](1924 MB) +PASS -- TEST 'regional_control_intel' [05:28, 04:06](1197 MB) +PASS -- TEST 'regional_restart_intel' [04:25, 02:20](1190 MB) +PASS -- TEST 'regional_decomp_intel' [06:26, 04:27](1197 MB) +PASS -- TEST 'regional_2threads_intel' [05:27, 03:24](1089 MB) +PASS -- TEST 'regional_noquilt_intel' [05:38, 04:08](1499 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:27, 04:12](1199 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 04:16](1198 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 05:25](2100 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:36] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:53, 03:08](1952 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:31] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [04:36, 02:54](1099 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:48, 03:05](1445 MB) +PASS -- TEST 'rap_decomp_intel' [04:35, 02:57](1068 MB) +PASS -- TEST 'rap_2threads_intel' [05:54, 03:38](1158 MB) +PASS -- TEST 'rap_restart_intel' [03:43, 01:33](1097 MB) +PASS -- TEST 'rap_sfcdiff_intel' [04:40, 02:47](1091 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:36, 02:55](1076 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:53, 01:33](1096 MB) +PASS -- TEST 'hrrr_control_intel' [04:41, 02:39](1079 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 02:48](1063 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:46, 03:26](1162 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:30](1063 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:59, 04:59](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 07:23](2020 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 07:05](2176 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:25] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:27, 05:16](1076 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:46](842 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 08:34] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [11:35, 09:28](1680 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:12, 08:12] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:52, 02:22](1914 MB) +PASS -- TEST 'regional_control_faster_intel' [05:26, 04:08](1201 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:48] ( 430 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:52](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:56](1647 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:32](856 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:19](857 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:24, 03:41](1159 MB) +PASS -- TEST 'control_ras_debug_intel' [04:16, 02:18](863 MB) +PASS -- TEST 'control_diag_debug_intel' [04:27, 02:15](1705 MB) +PASS -- TEST 'control_debug_p8_intel' [04:34, 03:04](1939 MB) +PASS -- TEST 'regional_debug_intel' [17:26, 16:04](1164 MB) +PASS -- TEST 'rap_control_debug_intel' [05:16, 04:09](1244 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:20, 04:06](1246 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:20, 04:09](1247 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:18, 04:16](1249 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:17, 04:13](1245 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:23, 04:23](1331 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:17, 04:19](1253 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:18, 04:15](1255 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:20, 04:11](1253 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 04:16](1240 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:06](1237 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:03](1241 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 06:52](1239 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:09](1242 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:06](1250 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:38] ( 391 warnings 396 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:24] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:51, 03:02](1318 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:43, 02:35](1023 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:58, 02:29](1025 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:37, 03:14](1081 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:39, 03:07](1064 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:40](986 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:46, 01:25](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 01:22](952 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 08:17] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:54](1509 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:41, 01:12](1333 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:38, 02:54](1535 MB) +PASS -- TEST 'conus13km_restart_intel' [03:34, 01:44](1272 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:33] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:30, 03:19](1105 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:34] ( 324 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:31](1118 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:16, 04:11](1109 MB) +PASS -- TEST 'conus13km_debug_intel' [20:36, 19:06](1565 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:35, 18:51](1159 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [22:35, 20:31](1375 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [21:32, 19:22](1592 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:31, 18:25](1631 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:25] ( 324 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:22, 04:21](1217 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:15] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:39, 03:37](1028 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [07:10, 05:02](1227 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 03:06](1281 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:45, 14:11](1111 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:38, 05:01](594 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:51, 05:49](609 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:34, 02:29](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:30, 06:18](502 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:40, 03:13](610 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:42, 03:08](609 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:22, 01:05](456 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 12:05] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:33, 11:46](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 11:18] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:37, 04:50](1084 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:38, 04:48](1073 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [19:12, 17:34] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:23](1868 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:33](1818 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:15, 02:16](1115 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:16](1128 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:14, 02:16](1136 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:26](1874 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:26](1850 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:14, 02:13](1126 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 05:57](1721 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:58, 05:38](1197 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:22](1865 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:54](4832 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:55](4829 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:18] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:28](1777 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [19:12, 17:25] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:25](1875 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:46] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:26, 00:56](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:37](555 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:23](553 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:17, 17:08] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 03:00](2050 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 08:58] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:47, 04:42](2057 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 09:48] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:59, 02:44](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 01:31](1203 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 03:51] ( 435 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:00, 04:20](1916 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:37] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 01:41](1945 MB) + +PASS -- COMPILE 'atmaero_intel' [14:12, 12:43] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 03:24](2017 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:40, 03:53](1797 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:41, 03:52](1814 MB) + +PASS -- COMPILE 'atmaq_intel' [11:10, 09:40] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:31, 11:33](2941 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [16:22, 14:00](2946 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:35] ( 408 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:18, 31:19](2952 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 08:17] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:23, 09:40](1082 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 03:40] +PASS -- TEST 'control_c48_gnu' [09:26, 07:51](1582 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:13](589 MB) +PASS -- TEST 'control_ras_gnu' [05:16, 03:42](599 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 03:26](1529 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:42, 03:20](1548 MB) +PASS -- TEST 'control_flake_gnu' [06:20, 04:23](639 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:31] +PASS -- TEST 'rap_control_gnu' [07:32, 05:23](941 MB) +PASS -- TEST 'rap_decomp_gnu' [07:32, 05:35](943 MB) +PASS -- TEST 'rap_2threads_gnu' [06:42, 05:03](1001 MB) +PASS -- TEST 'rap_restart_gnu' [04:54, 02:46](672 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:44, 05:30](942 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:34, 05:35](941 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:52, 02:43](685 MB) +PASS -- TEST 'hrrr_control_gnu' [07:38, 05:09](938 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:45, 05:18](928 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:45, 04:50](1003 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:38, 05:29](937 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:28, 02:43](672 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:24, 02:40](757 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [14:53, 12:21](936 MB) PASS -- COMPILE 'csawmg_gnu' [05:11, 03:20] -PASS -- TEST 'control_csawmg_gnu' [10:27, 08:32](854 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 05:55] -PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:10](1367 MB) -PASS -- TEST 'regional_debug_gnu' [09:26, 07:22](894 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:57](947 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:58](946 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:17, 02:05](952 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:22, 02:00](948 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:25, 02:12](1037 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:13](947 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:01](951 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:12](587 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:15](580 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:23](1536 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:56](950 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 01:56](953 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:55, 03:25](957 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:10, 01:49] -PASS -- TEST 'control_wam_debug_gnu' [07:33, 05:37](1388 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:32] -PASS -- TEST 'control_csawmg_debug_gnu' [04:25, 02:43](818 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:55] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:38, 04:36](794 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:52, 04:30](789 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:33, 03:57](842 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:53, 05:19](834 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 04:22](793 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:49, 02:21](647 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:30](645 MB) -PASS -- TEST 'conus13km_control_gnu' [06:52, 04:32](1033 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:39, 01:55](1018 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:40, 04:28](1040 MB) -PASS -- TEST 'conus13km_restart_gnu' [06:39, 02:33](764 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:09] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:33, 04:25](821 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:08] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:11](800 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 01:58](800 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:34, 08:43](1052 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:38, 08:43](778 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [10:31, 08:43](1037 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:28, 09:00](1057 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:33, 08:44](1128 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:13] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:04](827 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 17:07] -PASS -- TEST 'cpld_control_p8_gnu' [12:22, 09:59](1733 MB) - -PASS -- COMPILE 's2s_gnu' [18:12, 16:48] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:02, 10:00](1629 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:47] -PASS -- TEST 'cpld_debug_p8_gnu' [09:01, 06:27](1732 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 18:25] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [15:48, 13:59](1589 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:16] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [11:52, 09:37](1590 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:51] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:43](1604 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 03:08] -PASS -- TEST 'control_gfs_mpas_gnu' [02:19, 00:35](6411 MB) +PASS -- TEST 'control_csawmg_gnu' [08:28, 06:38](839 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 05:36] +PASS -- TEST 'control_diag_debug_gnu' [03:23, 01:13](1370 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 06:48](886 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:16, 02:04](947 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:05](949 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:16, 01:56](947 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:04](948 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:05](1035 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:17, 03:18](941 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:58](950 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:12](586 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:16](577 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:33, 01:21](1545 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:18, 02:05](950 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 01:55](949 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:48, 03:34](953 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:44] +PASS -- TEST 'control_wam_debug_gnu' [07:34, 05:18](1388 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:14] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:46](825 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:45] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:43, 03:58](792 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:45, 03:55](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:39, 03:35](840 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:28](838 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:41, 03:57](790 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:45, 02:08](646 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:06](641 MB) +PASS -- TEST 'conus13km_control_gnu' [05:50, 03:53](1032 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:40, 01:54](1017 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:43, 04:01](1041 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:36, 02:08](764 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:36] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:28, 04:23](822 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:03] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:02](801 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:19, 01:54](799 MB) +PASS -- TEST 'conus13km_debug_gnu' [10:35, 09:01](1052 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [10:29, 08:45](779 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [10:28, 08:47](1034 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [10:30, 08:48](1056 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:28, 09:09](1122 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 06:56] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 02:00](827 MB) + +PASS -- COMPILE 's2swa_gnu' [19:12, 17:31] +PASS -- TEST 'cpld_control_p8_gnu' [12:09, 10:03](1722 MB) + +PASS -- COMPILE 's2s_gnu' [19:12, 17:25] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [10:54, 08:09](1628 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:28] +PASS -- TEST 'cpld_debug_p8_gnu' [07:50, 05:44](1730 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:12, 17:40] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [15:46, 14:00](1613 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [10:39, 08:56](1612 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:29] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:42](1604 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [04:11, 02:51] +PASS -- TEST 'control_gfs_mpas_gnu' [02:22, 00:36](6415 MB) SYNOPSIS: -Starting Date/Time: 20251031 14:54:10 -Ending Date/Time: 20251031 16:40:02 -Total Time: 01h:46m:56s +Starting Date/Time: 20251103 22:28:54 +Ending Date/Time: 20251104 00:08:31 +Total Time: 01h:40m:23s Compiles Completed: 59/59 Tests Completed: 264/264 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 34d78c0a95..92458a99d2 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: -23e3badcd46e8f73d6e3a763dff52e67f410b7eb +6290e4b0ead98da03eb8a764afdba8e6012aa94c Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,305 +41,305 @@ 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-20251031 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_306127 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_1399994 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [28:11, 26:38] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:08, 16:48](2105 MB) -PASS -- TEST 'cpld_control_gefs_intel' [55:25, 19:25](3064 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [25:05, 06:23](2741 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [58:52, 20:11](3081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:11, 24:33] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [46:38, 23:00](1981 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:29, 25:17](2127 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:27, 10:28](1232 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:18, 10:34](2089 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:51, 27:26](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:11, 30:45] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:06, 23:42](1961 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 06:27] ( 847 warnings 2765 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:08, 23:05](1945 MB) - -PASS -- COMPILE 's2swa_intel' [26:11, 24:18] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:25, 18:06](2198 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:12, 16:42](2197 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:36, 08:31](1780 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 16:45](2205 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:46, 08:26](1753 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:57, 12:26](2294 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 17:10](2178 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [37:58, 14:41](2069 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:06, 17:01](2193 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [41:24, 16:52](2668 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:08, 09:32](2863 MB) - -PASS -- COMPILE 's2swal_intel' [37:11, 35:09] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [28:10, 17:48](2160 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:54, 08:27](1756 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:22, 08:48](2164 MB) - -PASS -- COMPILE 's2sw_intel' [25:11, 22:46] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [18:17, 15:31](2001 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 06:19](2099 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:10, 09:55] ( 846 warnings 2014 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:31, 14:01](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 05:50] ( 846 warnings 1996 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:18, 07:22](2030 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [24:11, 21:43] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 04:20](2073 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:11, 24:52] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:43, 16:10](2188 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [29:11, 25:12] ( 1 warnings 1037 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:01, 20:10](2037 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:41, 10:09](1243 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:51, 23:08](1945 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:06, 08:13](3048 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:02, 03:24](3049 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:17, 01:23](2480 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:38, 01:27](2241 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:42, 01:46](2246 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:35, 00:36](1552 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [04:39, 02:10](2246 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:33, 00:57](2242 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:49, 00:36](1552 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:35, 00:49](2157 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:36, 00:41](2167 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:47, 01:44](1505 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 05:31] ( 847 warnings 2747 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:28, 28:41](2010 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:37] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [16:27, 03:49](701 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [15:31, 02:44](1594 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:39, 03:00](1606 MB) -PASS -- TEST 'control_latlon_intel' [15:27, 02:57](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:31, 02:47](1602 MB) -PASS -- TEST 'control_c48_intel' [20:36, 08:30](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [20:34, 07:47](843 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [20:36, 08:28](1713 MB) -PASS -- TEST 'control_c192_intel' [20:45, 07:44](1786 MB) -PASS -- TEST 'control_c384_intel' [22:52, 09:18](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [24:39, 10:01](1336 MB) -PASS -- TEST 'control_stochy_intel' [14:31, 01:49](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:40, 01:04](484 MB) -PASS -- TEST 'control_lndp_intel' [14:30, 01:47](657 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:36](660 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:36, 03:07](955 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:35](656 MB) -PASS -- TEST 'control_p8_intel' [05:49, 02:59](1875 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:29, 04:01](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:41, 04:05](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [08:34, 05:31](1915 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:58, 03:03](1915 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:21, 02:04](2409 MB) -PASS -- TEST 'control_restart_p8_intel' [04:40, 01:45](1135 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:54](1888 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:56, 02:14](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:11, 03:02](1880 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:22, 03:21](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:24](1899 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 04:25](1946 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:21, 03:10](1903 MB) -PASS -- TEST 'merra2_thompson_intel' [06:39, 03:32](1905 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:28, 05:17](1912 MB) -PASS -- TEST 'regional_control_intel' [07:48, 05:59](1088 MB) -PASS -- TEST 'regional_restart_intel' [05:55, 03:37](1103 MB) -PASS -- TEST 'regional_decomp_intel' [08:45, 06:20](1080 MB) -PASS -- TEST 'regional_2threads_intel' [05:50, 04:01](1033 MB) -PASS -- TEST 'regional_noquilt_intel' [08:00, 05:59](1366 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:44, 09:57](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:46, 06:02](1087 MB) -PASS -- TEST 'regional_wofs_intel' [09:50, 07:36](1909 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 14:09] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:56, 04:24](1922 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 13:10] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [06:43, 04:09](1043 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 05:14](1362 MB) -PASS -- TEST 'rap_decomp_intel' [07:48, 04:25](1034 MB) -PASS -- TEST 'rap_2threads_intel' [08:06, 04:26](1119 MB) -PASS -- TEST 'rap_restart_intel' [06:19, 02:29](1000 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:45, 04:18](1041 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:14, 04:26](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 02:22](997 MB) -PASS -- TEST 'hrrr_control_intel' [06:48, 04:03](1037 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:45, 04:10](1036 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:45, 04:10](1108 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:06, 02:22](966 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:50, 07:38](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:39, 09:23](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:52, 09:04](2014 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 13:04] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [08:58, 07:08](1042 MB) -PASS -- TEST 'control_ras_intel' [05:30, 03:32](744 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 11:55] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [14:53, 12:36](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 12:05] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 04:01](1890 MB) -PASS -- TEST 'regional_control_faster_intel' [08:59, 06:24](1088 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 06:10] ( 906 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:46, 02:35](1621 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:25](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:32, 03:30](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:27, 04:27](830 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:50, 05:09](1141 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 02:50](840 MB) -PASS -- TEST 'control_diag_debug_intel' [04:39, 03:01](1684 MB) -PASS -- TEST 'control_debug_p8_intel' [06:03, 03:55](1939 MB) -PASS -- TEST 'regional_debug_intel' [19:53, 17:59](1098 MB) -PASS -- TEST 'rap_control_debug_intel' [06:33, 05:05](1226 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:56](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:30, 05:18](1225 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:33, 05:11](1223 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:28, 05:03](1214 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 05:20](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:32](1227 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:14](1209 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:30, 05:00](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:29, 08:10](1223 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:51](1224 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 05:02](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 08:08](1207 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:32, 05:08](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 05:00](1214 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:13, 04:14] ( 863 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:58, 13:02](1705 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:12, 19:11] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:11, 05:09](1233 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:30, 03:53](935 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:16, 03:43](915 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:49, 04:07](984 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:14, 03:56](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:29, 03:59](906 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:30, 02:05](899 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:47, 02:03](878 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:12, 19:07] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:17, 03:48](1329 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:02, 01:34](1236 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:00, 03:48](1353 MB) -PASS -- TEST 'conus13km_restart_intel' [05:01, 02:08](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:11, 19:29] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:24](1015 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 04:22] ( 796 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:45](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:36](1097 MB) -PASS -- TEST 'conus13km_debug_intel' [23:57, 22:04](1366 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:52, 22:35](1070 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:49, 21:34](1272 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [24:52, 22:57](1371 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:46, 22:23](1424 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:11, 04:22] ( 796 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:59](1184 MB) - -PASS -- COMPILE 'hafsw_intel' [27:12, 18:37] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:39](893 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:27, 05:56](1106 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:13](1214 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:02, 29:38](986 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:19](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:09, 07:14](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:51, 03:09](366 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:56, 07:52](450 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:49, 04:12](523 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:49, 04:01](526 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:40](397 MB) -PASS -- TEST 'gnv1_nested_intel' [06:42, 03:45](1730 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [24:12, 15:19] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:30, 11:14](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:11, 13:22] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:57, 06:20](969 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:56, 06:25](948 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [24:11, 19:38] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:26](1868 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:25](1820 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 03:07](1126 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:18, 03:09](1131 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:19, 03:08](1130 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:22, 03:26](1862 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:26](1873 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:05](1136 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:29, 07:36](1663 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:27, 07:14](1037 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:25](1869 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:20, 05:51](4834 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:52](4831 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:53] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 07:00](1779 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [24:15, 22:58] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:26](1872 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:16] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:13](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:46](316 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:29, 00:29](312 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:40] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:35](564 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:20](443 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [22:12, 20:36] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:15, 03:44](1996 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:07] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:01, 04:43](2002 MB) - -PASS -- COMPILE 'atml_intel' [16:12, 14:24] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 03:32](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:07, 03:04](1107 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:51] ( 911 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 04:55](1890 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 13:23] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:00](1911 MB) - -PASS -- COMPILE 'atmaero_intel' [16:14, 14:36] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:16, 04:15](1987 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:04, 05:16](1783 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:06, 05:09](1783 MB) - -PASS -- COMPILE 'atmaq_intel' [14:15, 13:04] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [21:17, 17:49](2915 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [26:20, 22:26](2913 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:36] ( 880 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:11, 40:10](2937 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:15, 12:02] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:38](1088 MB) +PASS -- COMPILE 's2swa_32bit_intel' [32:11, 30:11] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:44, 16:04](2102 MB) +PASS -- TEST 'cpld_control_gefs_intel' [34:33, 19:01](3070 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:31, 06:37](2733 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [36:58, 19:48](3078 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:11, 29:55] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [26:25, 22:51](1972 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:04, 24:43](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:03, 09:36](1219 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:22, 10:31](2098 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:25, 26:52](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:11, 25:50] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [24:54, 22:36](1959 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:20] ( 371 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:57, 23:00](1960 MB) + +PASS -- COMPILE 's2swa_intel' [31:12, 29:11] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:22, 18:19](2193 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:06, 16:43](2192 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:06, 08:26](1779 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:03, 16:32](2203 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:09, 08:27](1767 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:56, 12:11](2298 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:03, 16:47](2180 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:44, 14:08](2077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:08, 16:41](2196 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:10, 16:03](2677 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:32, 08:29](2835 MB) + +PASS -- COMPILE 's2swal_intel' [30:11, 29:08] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [20:56, 17:14](2152 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:21, 08:29](1754 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:28, 07:26](2157 MB) + +PASS -- COMPILE 's2sw_intel' [28:11, 26:47] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:20, 15:40](2000 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:42, 06:30](2096 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 05:50] ( 370 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:34, 14:27](2217 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:20] ( 370 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:44](2022 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [28:11, 26:47] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:30, 04:44](2076 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:11, 28:58] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:46, 15:57](2190 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:11, 28:53] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:36, 20:12](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:12, 09:28](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:32, 23:22](1933 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:00, 07:31](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:58, 02:20](3050 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:05, 01:24](2491 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:43, 01:21](2243 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:38, 00:47](2243 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:44, 00:36](1557 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:37, 01:21](2237 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:36, 00:47](2243 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:40, 00:35](1554 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:36, 00:48](2167 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:36, 00:41](2171 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:41, 00:31](1508 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 05:32] ( 371 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:22, 28:54](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:09] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:37, 03:35](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:40, 02:27](1591 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:38](1596 MB) +PASS -- TEST 'control_latlon_intel' [04:36, 02:35](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:41, 02:36](1597 MB) +PASS -- TEST 'control_c48_intel' [10:42, 08:17](1709 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:41, 07:45](840 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:43, 08:29](1717 MB) +PASS -- TEST 'control_c192_intel' [09:56, 07:35](1789 MB) +PASS -- TEST 'control_c384_intel' [12:06, 09:06](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [14:36, 09:47](1340 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 01:44](665 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:04](486 MB) +PASS -- TEST 'control_lndp_intel' [03:25, 01:37](659 MB) +PASS -- TEST 'control_iovr4_intel' [04:28, 02:36](664 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:45, 03:06](950 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:35](661 MB) +PASS -- TEST 'control_p8_intel' [06:46, 03:14](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:12](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 02:56](1897 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:25, 02:55](1906 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:45, 03:01](1924 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:16, 02:04](2408 MB) +PASS -- TEST 'control_restart_p8_intel' [04:42, 01:45](1130 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:33, 02:56](1882 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:43](1130 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:20, 03:21](1884 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:05, 03:24](1981 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:38, 05:07](1890 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:14, 04:25](1943 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:17, 03:09](1894 MB) +PASS -- TEST 'merra2_thompson_intel' [06:35, 03:37](1905 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [07:24, 05:00](1912 MB) +PASS -- TEST 'regional_control_intel' [07:44, 05:59](1084 MB) +PASS -- TEST 'regional_restart_intel' [05:49, 03:14](1101 MB) +PASS -- TEST 'regional_decomp_intel' [09:44, 07:19](1074 MB) +PASS -- TEST 'regional_2threads_intel' [05:41, 04:01](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 05:57](1371 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:43, 06:00](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 05:58](1093 MB) +PASS -- TEST 'regional_wofs_intel' [09:39, 07:25](1906 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:10] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:29, 04:19](1928 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 13:05] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [06:31, 04:10](1053 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 05:07](1348 MB) +PASS -- TEST 'rap_decomp_intel' [07:13, 04:18](1045 MB) +PASS -- TEST 'rap_2threads_intel' [07:13, 04:22](1131 MB) +PASS -- TEST 'rap_restart_intel' [05:57, 02:17](999 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:28, 04:08](1043 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:19, 04:18](1035 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:36, 02:15](1002 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 03:58](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:06](1037 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:26, 04:08](1107 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:11](969 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:31, 07:23](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:28, 09:06](1996 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 08:47](2013 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:58] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:40, 06:07](1050 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:18](744 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:39] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [13:51, 12:09](1679 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:31] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 03:24](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [07:40, 05:58](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:10] ( 430 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:32, 02:13](1623 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:18](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 02:59](830 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:44](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:39](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:46](834 MB) +PASS -- TEST 'control_diag_debug_intel' [04:37, 02:45](1695 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:09](1918 MB) +PASS -- TEST 'regional_debug_intel' [19:44, 17:35](1104 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:53](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:28, 04:46](1217 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 04:53](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 04:52](1228 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 04:57](1214 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:35, 05:09](1301 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:23, 05:00](1233 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:24, 04:57](1228 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 04:58](1224 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:57](1235 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:47](1211 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 04:58](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 07:58](1214 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 04:49](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:57](1214 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:23] ( 391 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 13:13](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:08] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:12, 04:57](1229 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:03, 03:45](952 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:51, 03:38](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:59, 03:58](976 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:15, 03:48](980 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:09, 03:46](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:32, 02:04](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:42, 02:04](879 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 12:11] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:14, 03:42](1325 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:00, 01:28](1228 MB) +PASS -- TEST 'conus13km_decomp_intel' [06:13, 03:47](1354 MB) +PASS -- TEST 'conus13km_restart_intel' [03:56, 02:06](1197 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:27] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:49, 04:23](999 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 04:16] ( 324 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:23, 04:50](1092 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:47](1097 MB) +PASS -- TEST 'conus13km_debug_intel' [25:00, 22:14](1364 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:02, 22:44](1049 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:56, 21:32](1268 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:55, 23:22](1396 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:54, 22:18](1428 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:19] ( 324 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 04:58](1181 MB) + +PASS -- COMPILE 'hafsw_intel' [21:11, 19:30] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:53, 04:31](911 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:36, 05:53](1081 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:36, 04:12](1206 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [31:07, 29:04](987 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:51, 06:18](485 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:09, 07:14](508 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:50, 03:08](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:58, 07:52](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:53, 04:14](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:58, 04:02](529 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:30, 01:20](395 MB) +PASS -- TEST 'gnv1_nested_intel' [06:42, 03:43](1736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:08] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:12, 11:10](716 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:46] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:56, 06:20](967 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:56, 06:21](952 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:11, 23:09] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:20, 03:26](1863 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:23](1816 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 03:06](1124 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 03:06](1126 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 03:08](1124 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:25](1870 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:18, 03:27](1869 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 03:05](1130 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:28, 07:38](1660 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:21, 07:14](1036 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 03:27](1879 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:22, 05:48](4831 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:49](4827 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:36] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 07:01](1781 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:11, 23:06] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:19, 03:27](1873 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:16](251 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:46](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:30](315 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:33] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:30, 00:36](568 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:20](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [23:11, 21:34] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:10, 03:43](1998 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:14] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:10, 04:44](1994 MB) + +PASS -- COMPILE 'atml_intel' [16:11, 14:18] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 03:33](1864 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:07, 02:00](1110 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:45] ( 435 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 05:16](1893 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:43] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:21, 02:01](1912 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:36] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:18, 04:16](1982 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:06, 05:02](1772 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:04, 05:09](1783 MB) + +PASS -- COMPILE 'atmaq_intel' [15:11, 13:16] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [21:22, 17:53](2917 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [25:02, 21:20](2906 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:25] ( 408 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [43:08, 39:55](2930 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 12:08] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:34](1086 MB) SYNOPSIS: -Starting Date/Time: 20251031 20:20:04 -Ending Date/Time: 20251031 22:47:03 -Total Time: 02h:27m:58s +Starting Date/Time: 20251103 18:31:17 +Ending Date/Time: 20251103 20:41:58 +Total Time: 02h:11m:35s Compiles Completed: 43/43 Tests Completed: 203/203 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index 11896ad6d6..afac721567 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,7 +1,7 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -298ac307b99046cc0f13958805555536c87ce1f5 +e758964b9d7dbf1236816c4a7b664d53f11d1ded Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,427 +41,429 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251031 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3316328 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_443245 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:11, 13:43] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:48, 06:18](2181 MB) -PASS -- TEST 'cpld_control_gefs_intel' [31:07, 21:01](3264 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [15:45, 06:13](2981 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [42:14, 32:40](3432 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:11, 12:32] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [11:42, 09:26](2068 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:08, 10:12](2584 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [05:49, 03:55](1500 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:59, 04:37](2345 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:45, 16:56](1982 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:11, 14:18] ( 1 warnings 1044 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [11:33, 09:41](2002 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 04:01] ( 847 warnings 2765 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:52, 13:35](2095 MB) - -PASS -- COMPILE 's2swa_intel' [15:11, 13:26] ( 1 warnings 1045 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:50, 07:15](2542 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:55, 06:41](2510 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:48, 03:58](2241 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 06:42](2354 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:51, 03:33](2000 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:54, 15:44](3011 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:52, 06:41](2431 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:47, 11:51](2333 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:54, 06:40](2512 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:33, 18:02](3592 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [15:09, 11:59](3504 MB) - -PASS -- COMPILE 's2swal_intel' [16:11, 14:57] ( 1 warnings 1066 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [09:53, 07:17](2527 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:55, 03:49](2299 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:48, 05:43](3097 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 13:05] ( 1 warnings 1013 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:26](2101 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:48, 05:11](2985 MB) - -PASS -- COMPILE 's2swa_debug_intel' [05:10, 04:01] ( 846 warnings 2014 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:02, 08:59](2381 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 03:14] ( 846 warnings 1996 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:50, 04:53](2111 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:44] ( 1 warnings 949 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 03:22](2170 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:39] ( 1 warnings 1031 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 07:29](2515 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:11, 11:51] ( 1 warnings 1037 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:42, 08:20](2175 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [05:53, 04:07](1659 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:41, 11:36](2093 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [24:34, 22:21](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:29, 01:20](3022 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:28, 03:03](2468 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:49](2210 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:29, 00:32](2209 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:25, 00:25](1533 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [20:36, 18:54](2212 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:33](2209 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:25](1532 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:28, 00:38](2134 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:28](2139 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:25, 00:23](1487 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:10, 02:46] ( 847 warnings 2747 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:39, 19:17](2172 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 07:05] ( 1 warnings 502 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 02:25](1349 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:21, 01:32](2214 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:23, 07:16](2240 MB) -PASS -- TEST 'control_latlon_intel' [03:21, 01:51](2214 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:22, 01:36](2214 MB) -PASS -- TEST 'control_c48_intel' [06:23, 04:14](1669 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:21, 04:01](804 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:23, 04:21](1671 MB) -PASS -- TEST 'control_c192_intel' [06:32, 04:41](1851 MB) -PASS -- TEST 'control_c384_intel' [08:06, 05:38](2091 MB) -PASS -- TEST 'control_c384gdas_intel' [08:56, 06:01](1958 MB) -PASS -- TEST 'control_stochy_intel' [03:16, 01:33](1300 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:17, 01:03](1221 MB) -PASS -- TEST 'control_lndp_intel' [02:16, 01:05](1306 MB) -PASS -- TEST 'control_iovr4_intel' [03:17, 02:04](1294 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:27, 02:32](1599 MB) -PASS -- TEST 'control_iovr5_intel' [03:17, 01:40](1308 MB) -PASS -- TEST 'control_p8_intel' [06:37, 04:15](2514 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:42, 02:19](2520 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:32, 02:20](2519 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:33, 02:22](2535 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [03:35, 02:05](2555 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [12:36, 10:10](2396 MB) -PASS -- TEST 'control_restart_p8_intel' [03:34, 01:26](1861 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:34, 01:59](2512 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:34, 01:33](1856 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:30, 02:15](2502 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:30, 01:41](2026 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:28, 03:18](2509 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:32, 02:35](2583 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:34, 02:06](2522 MB) -PASS -- TEST 'merra2_thompson_intel' [04:33, 02:28](2537 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [05:23, 03:46](2532 MB) -PASS -- TEST 'regional_control_intel' [05:26, 03:23](1706 MB) -PASS -- TEST 'regional_restart_intel' [04:27, 02:22](1694 MB) -FAILED: TEST TIMED OUT -- TEST 'regional_decomp_intel' [, ]( MB) -PASS -- TEST 'regional_2threads_intel' [04:27, 02:11](1565 MB) -PASS -- TEST 'regional_noquilt_intel' [05:34, 03:32](1994 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:20](1727 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:27, 03:22](1710 MB) -PASS -- TEST 'regional_wofs_intel' [06:26, 04:10](2633 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:49] ( 1 warnings 482 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:55, 02:55](2576 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 05:59] ( 4 warnings 449 remarks ) -PASS -- TEST 'rap_control_intel' [04:36, 02:41](1779 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:11, 02:44](1605 MB) -PASS -- TEST 'rap_decomp_intel' [04:28, 02:35](1719 MB) -PASS -- TEST 'rap_2threads_intel' [03:28, 01:57](1184 MB) -PASS -- TEST 'rap_restart_intel' [03:33, 01:19](1767 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:27, 02:26](1787 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:26, 02:31](1722 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:26, 01:21](1755 MB) -PASS -- TEST 'hrrr_control_intel' [04:31, 02:21](1759 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:22, 02:26](1696 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:31, 02:00](1176 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:19, 01:20](1738 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:37, 08:25](2060 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:21, 05:56](2663 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:18, 05:32](2905 MB) - -PASS -- COMPILE 'csawmg_intel' [07:11, 06:03] ( 1 warnings 418 remarks ) -PASS -- TEST 'control_csawmg_intel' [06:26, 04:14](1764 MB) -PASS -- TEST 'control_ras_intel' [04:16, 02:49](1601 MB) - -PASS -- COMPILE 'wam_intel' [07:11, 05:42] ( 1 warnings 396 remarks ) -PASS -- TEST 'control_wam_intel' [09:44, 07:54](2393 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:55] ( 1 warnings 412 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:06](2522 MB) -PASS -- TEST 'regional_control_faster_intel' [05:31, 03:24](1725 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:25] ( 906 warnings 590 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:19, 01:38](2240 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:20, 01:40](2247 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:12](1497 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:17, 02:02](1479 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:04](1788 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:00](1497 MB) -PASS -- TEST 'control_diag_debug_intel' [03:23, 01:59](2322 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:01](2549 MB) -PASS -- TEST 'regional_debug_intel' [13:29, 11:46](1631 MB) -PASS -- TEST 'rap_control_debug_intel' [05:18, 03:31](1876 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:27](1876 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 03:57](1883 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:17, 03:58](1879 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1873 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:23, 03:43](1963 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 03:53](1874 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:16, 03:38](1866 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:36](1875 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:32](1868 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:29](1864 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:33](1876 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:44](1873 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:17, 03:40](1881 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:36](1876 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:27, 06:06](1881 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:11, 02:06] ( 863 warnings 396 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:57, 09:07](2317 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:34] ( 4 warnings 416 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:05, 02:30](1475 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:44, 02:06](1752 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:27, 02:02](1722 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:21, 01:41](1072 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:20, 01:40](1053 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:21, 02:07](1647 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:10](1628 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:08](1626 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:31] ( 4 warnings 393 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:42, 01:57](1767 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:49](1786 MB) -PASS -- TEST 'conus13km_decomp_intel' [03:36, 01:56](1821 MB) -PASS -- TEST 'conus13km_restart_intel' [03:35, 01:10](1548 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 05:45] ( 4 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 02:43](1793 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:10] ( 796 warnings 422 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:49](1756 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:21](1751 MB) -PASS -- TEST 'conus13km_debug_intel' [16:35, 14:36](1842 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:35, 14:49](1458 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:33, 08:20](1832 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [17:33, 15:19](1877 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:37, 14:23](1902 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:10] ( 796 warnings 416 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:30](1853 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 08:20] ( 1 warnings 696 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [04:34, 02:34](1195 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [05:53, 04:04](1381 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 03:00](1481 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [33:35, 32:06](1337 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:20](813 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:33, 03:49](815 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:27, 01:29](529 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:55, 04:16](616 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:25, 02:16](749 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:27, 02:03](757 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:43](517 MB) -PASS -- TEST 'gnv1_nested_intel' [04:45, 02:27](1713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:11, 07:39] ( 1 warnings 929 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:20, 18:34](1091 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:11, 07:38] ( 1 warnings 638 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [05:32, 03:56](1321 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [05:33, 03:55](1306 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:19, 12:13] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 01:47](1949 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:20](1878 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:47](1192 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:45](1193 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:50](1206 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:01](1941 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:51](1945 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:56](1195 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:57, 05:43](1840 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:56, 05:29](1361 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:56](1942 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:15, 03:12](4788 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:15, 03:02](4787 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:19] ( 4 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 04:13](1854 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 11:58] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:04](1944 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:44](364 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:36](621 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:27](617 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:17, 11:17] ( 1 warnings 612 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:43, 02:30](2840 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:58] ( 1 warnings 500 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:38, 03:21](2868 MB) - -PASS -- COMPILE 'atml_intel' [08:11, 06:57] ( 9 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:36, 02:23](1916 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:29, 01:28](1329 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 03:22] ( 911 warnings 553 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:38, 03:32](1938 MB) - -PASS -- COMPILE 'atmw_intel' [09:18, 07:38] ( 1 warnings 521 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:44](2687 MB) - -PASS -- COMPILE 'atmaero_intel' [10:18, 08:50] ( 1 warnings 414 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:40, 03:06](2033 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:30, 03:06](2393 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:30, 03:09](2415 MB) - -PASS -- COMPILE 'atmaq_intel' [07:17, 06:01] ( 1 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_intel' [12:29, 10:08](2876 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:18, 12:08](2875 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:18] ( 880 warnings 599 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:15, 27:01](2888 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:10, 05:25] ( 4 warnings 423 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 06:40](1138 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:17, 14:06] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:46, 09:25](2054 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:17, 03:25] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:39, 13:19](2091 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [14:13, 12:22] -PASS -- TEST 'cpld_control_sfs_intelllvm' [11:31, 09:46](2005 MB) - -PASS -- COMPILE 's2swa_intelllvm' [14:17, 12:23] -PASS -- TEST 'cpld_control_p8_intelllvm' [09:55, 07:11](2494 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:27] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [03:24, 02:07](1735 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:31] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:25, 02:40](1832 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [13:10, 12:04] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:14, 01:52](1947 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:17] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:14, 04:02](1845 MB) - -PASS -- COMPILE 'atm_gnu' [04:12, 02:51] -PASS -- TEST 'control_c48_gnu' [07:21, 05:58](1513 MB) -PASS -- TEST 'control_stochy_gnu' [03:15, 01:57](515 MB) -PASS -- TEST 'control_ras_gnu' [05:15, 03:09](520 MB) -PASS -- TEST 'control_p8_gnu' [05:40, 03:20](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 02:59](1461 MB) -PASS -- TEST 'control_flake_gnu' [05:17, 04:03](560 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 02:44] -PASS -- TEST 'rap_control_gnu' [05:22, 03:40](853 MB) -PASS -- TEST 'rap_decomp_gnu' [05:22, 03:37](854 MB) -PASS -- TEST 'rap_2threads_gnu' [04:26, 02:39](912 MB) -PASS -- TEST 'rap_restart_gnu' [03:28, 01:51](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:26, 03:29](853 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:23, 03:27](853 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:28, 01:55](580 MB) -PASS -- TEST 'hrrr_control_gnu' [05:22, 03:19](855 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:36, 03:29](842 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:24, 02:34](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:24, 03:26](855 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:26, 01:47](580 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:54](668 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:22](850 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 02:39] -PASS -- TEST 'control_csawmg_gnu' [07:33, 05:46](760 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:10, 05:17] -PASS -- TEST 'control_diag_debug_gnu' [03:34, 01:36](1287 MB) -PASS -- TEST 'regional_debug_gnu' [07:29, 05:36](753 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:49](860 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 01:48](863 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:27, 01:47](866 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:20, 01:50](867 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:24, 02:09](946 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 02:50](859 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 01:48](863 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:22](504 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:24](498 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:26](1451 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:18, 01:48](862 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 01:50](861 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 02:56](872 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:21] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:50](1312 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:26] -PASS -- TEST 'control_csawmg_debug_gnu' [03:46, 02:00](743 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:41] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:33, 03:11](709 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 03:32](712 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:30, 02:35](739 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:28](733 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:20, 03:11](714 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:22, 06:03](549 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:50](556 MB) -PASS -- TEST 'conus13km_control_gnu' [22:42, 20:49](897 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:33, 01:10](905 MB) -PASS -- TEST 'conus13km_decomp_gnu' [20:36, 19:03](900 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:35, 01:58](579 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:10, 06:27] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:46](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 04:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 01:57](717 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:47](720 MB) -PASS -- TEST 'conus13km_debug_gnu' [24:38, 22:15](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:35, 07:43](649 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:32, 04:05](924 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [09:32, 07:31](927 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:33, 07:07](989 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 05:09] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 01:52](744 MB) - -PASS -- COMPILE 's2swa_gnu' [12:11, 10:58] -PASS -- TEST 'cpld_control_p8_gnu' [10:01, 07:36](1603 MB) - -PASS -- COMPILE 's2s_gnu' [12:11, 11:08] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:47, 07:01](1546 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:10, 02:02] -PASS -- TEST 'cpld_debug_p8_gnu' [06:49, 04:53](1612 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:11, 10:29] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:41, 09:11](1567 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:45] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:38, 06:42](1561 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [11:11, 09:48] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:13](1512 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:10, 14:03] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:11](2188 MB) +PASS -- TEST 'cpld_control_gefs_intel' [30:41, 20:35](3272 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:44, 06:11](2957 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [42:19, 31:40](3467 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:10, 14:58] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:43, 09:26](2072 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:10, 10:21](2596 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [06:02, 03:51](1489 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:59, 04:34](2352 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:38, 16:46](2018 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:10, 14:25] ( 1 warnings 1044 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:33, 09:45](1997 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:31] ( 371 warnings 2765 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [15:41, 13:28](2102 MB) + +PASS -- COMPILE 's2swa_intel' [15:10, 13:21] ( 1 warnings 1045 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:52, 07:08](2461 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 06:29](2512 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:51, 03:35](2281 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:48, 06:38](2355 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:53, 03:34](1987 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:45, 15:05](3013 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:52, 06:51](2470 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:50, 11:55](2327 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:55, 06:34](2483 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [24:50, 18:12](3605 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [16:13, 11:52](3487 MB) + +PASS -- COMPILE 's2swal_intel' [15:10, 13:12] ( 1 warnings 1066 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [08:55, 07:07](2520 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:56, 03:40](2307 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:49, 05:28](3160 MB) + +PASS -- COMPILE 's2sw_intel' [14:10, 12:54] ( 1 warnings 1013 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:38, 06:08](2109 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:47, 04:45](3009 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:51] ( 370 warnings 2014 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:50, 09:34](2367 MB) + +PASS -- COMPILE 's2sw_debug_intel' [04:10, 03:06] ( 370 warnings 1996 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 04:36](2109 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:10, 12:39] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:47, 03:33](2175 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:10, 14:33] ( 1 warnings 1031 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:53, 06:33](2480 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:10, 13:14] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:41, 08:14](2177 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [06:12, 03:54](1641 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:38, 11:41](2099 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [05:29, 03:57](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:29, 01:20](3020 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:29, 00:54](2464 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:28, 00:52](2210 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:28, 00:32](2212 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:26](1534 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:28, 00:50](2211 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:26, 00:32](2211 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:24](1534 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:25, 00:32](2137 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_warmstart_c12_9deg_intel' [, ]( MB) +FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_c12_9deg_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 03:17] ( 371 warnings 2747 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:41, 19:38](2192 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 07:09] ( 1 warnings 502 remarks ) +PASS -- TEST 'control_flake_intel' [05:19, 02:24](1351 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:19, 01:32](2215 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:21, 01:36](2222 MB) +PASS -- TEST 'control_latlon_intel' [04:19, 01:35](2227 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 01:38](2230 MB) +PASS -- TEST 'control_c48_intel' [06:20, 04:14](1669 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:19, 03:53](804 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:20, 04:16](1673 MB) +PASS -- TEST 'control_c192_intel' [07:28, 04:33](1861 MB) +PASS -- TEST 'control_c384_intel' [08:05, 05:37](2094 MB) +PASS -- TEST 'control_c384gdas_intel' [08:46, 05:48](1925 MB) +PASS -- TEST 'control_stochy_intel' [09:22, 08:05](1328 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:16, 00:52](1198 MB) +PASS -- TEST 'control_lndp_intel' [03:16, 01:25](1312 MB) +PASS -- TEST 'control_iovr4_intel' [03:17, 01:39](1297 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:27, 09:36](1607 MB) +PASS -- TEST 'control_iovr5_intel' [03:17, 01:39](1302 MB) +PASS -- TEST 'control_p8_intel' [03:35, 02:00](2525 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:42, 02:19](2526 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:34, 02:03](2506 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:35, 02:05](2530 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:36, 02:11](2551 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [11:41, 10:09](2433 MB) +PASS -- TEST 'control_restart_p8_intel' [03:34, 01:14](1850 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:33, 02:09](2512 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:30, 01:21](1851 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:31, 02:05](2503 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:38](2023 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:29, 03:31](2532 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:33, 02:35](2588 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:35, 02:06](2529 MB) +PASS -- TEST 'merra2_thompson_intel' [04:38, 02:27](2547 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [05:24, 03:35](2546 MB) +PASS -- TEST 'regional_control_intel' [05:50, 03:24](1712 MB) +PASS -- TEST 'regional_restart_intel' [03:26, 02:04](1691 MB) +PASS -- TEST 'regional_decomp_intel' [05:49, 03:42](1717 MB) +PASS -- TEST 'regional_2threads_intel' [03:36, 02:05](1566 MB) +PASS -- TEST 'regional_noquilt_intel' [05:34, 03:23](1992 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:22](1717 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:26, 03:22](1716 MB) +PASS -- TEST 'regional_wofs_intel' [06:25, 04:30](2622 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:10, 07:00] ( 1 warnings 482 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:33, 02:34](2562 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 06:00] ( 4 warnings 449 remarks ) +PASS -- TEST 'rap_control_intel' [04:22, 02:24](1808 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:44, 02:35](1630 MB) +PASS -- TEST 'rap_decomp_intel' [04:23, 02:31](1726 MB) +PASS -- TEST 'rap_2threads_intel' [03:26, 01:57](1182 MB) +PASS -- TEST 'rap_restart_intel' [03:27, 01:18](1768 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:26, 11:43](1792 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:26, 02:27](1731 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:25, 01:19](1733 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 02:20](1775 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:21, 02:22](1697 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:33, 01:51](1173 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:18, 01:26](1706 MB) +PASS -- TEST 'rrfs_v1beta_intel' [21:46, 20:20](2139 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:22, 05:47](2670 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:40](2918 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 06:25] ( 1 warnings 418 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:26, 04:24](1761 MB) +PASS -- TEST 'control_ras_intel' [04:16, 02:27](1599 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 05:42] ( 1 warnings 396 remarks ) +PASS -- TEST 'control_wam_intel' [09:40, 07:39](2416 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:47] ( 1 warnings 412 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:36, 02:06](2521 MB) +PASS -- TEST 'regional_control_faster_intel' [05:28, 03:24](1719 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 03:30] ( 430 warnings 590 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:22, 01:42](2250 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:43](2246 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:11](1485 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:17](1477 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:27, 03:04](1790 MB) +PASS -- TEST 'control_ras_debug_intel' [03:16, 02:01](1497 MB) +PASS -- TEST 'control_diag_debug_intel' [04:22, 02:09](2329 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 02:12](2553 MB) +PASS -- TEST 'regional_debug_intel' [13:41, 11:53](1649 MB) +PASS -- TEST 'rap_control_debug_intel' [05:19, 03:33](1875 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:17, 03:30](1869 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:17, 03:45](1875 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 03:49](1872 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 03:34](1878 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 03:45](1966 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:21, 03:36](1871 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:01](1879 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:17, 03:38](1871 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:19, 03:36](1877 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:18, 03:56](1881 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:48](1879 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:42](1876 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:49](1881 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:17, 03:34](1887 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:27, 06:11](1879 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:16] ( 391 warnings 396 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:03, 09:11](2300 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:10, 05:58] ( 4 warnings 416 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 02:30](1489 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:23, 02:06](1719 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:21, 02:08](1711 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:24, 01:43](1075 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:24, 01:37](1049 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:10](1656 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:23, 01:11](1663 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:18, 01:09](1625 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:26] ( 4 warnings 393 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:42, 02:20](1790 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:49](1799 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:34, 01:57](1821 MB) +PASS -- TEST 'conus13km_restart_intel' [02:34, 01:06](1563 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:37] ( 4 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:26, 03:04](1826 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:19] ( 324 warnings 422 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:25](1743 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:16, 03:30](1748 MB) +PASS -- TEST 'conus13km_debug_intel' [17:52, 15:19](1824 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:45, 14:05](1436 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:34, 08:14](1827 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [18:55, 16:37](1871 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:48, 15:06](1917 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:18] ( 324 warnings 416 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 03:50](1869 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 08:42] ( 1 warnings 696 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:34, 02:37](1182 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [06:54, 04:01](1385 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:20](1471 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [34:38, 32:57](1370 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 03:07](797 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:33, 03:50](809 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:42, 01:30](536 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [06:57, 04:20](617 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:26, 02:13](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:26, 02:03](747 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:44](515 MB) +PASS -- TEST 'gnv1_nested_intel' [05:46, 02:45](1720 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:10, 08:04] ( 1 warnings 929 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [22:29, 19:00](1100 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 08:19] ( 1 warnings 638 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:36, 04:19](1319 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:35, 04:20](1301 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:10, 12:29] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [13:31, 11:38](1937 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:17, 09:48](1894 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 01:43](1206 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 01:50](1198 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:49](1205 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:10](1943 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:58](1946 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 01:51](1197 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:59, 05:33](1836 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:53, 05:33](1359 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [14:17, 12:49](1948 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:48](4788 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:08](4787 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:42] ( 2 warnings 561 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [14:16, 13:03](1842 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:10, 10:39] ( 561 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:20, 12:13](1946 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:40] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:28, 00:45](362 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:34](621 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:22, 00:24](624 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 11:38] ( 1 warnings 612 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:43, 02:33](2838 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 06:10] ( 1 warnings 500 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:35, 03:26](2862 MB) + +PASS -- COMPILE 'atml_intel' [08:10, 06:46] ( 9 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:37, 02:28](1910 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:29, 01:24](1310 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:11, 03:06] ( 435 warnings 553 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:37, 03:32](1935 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:34] ( 1 warnings 521 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:34, 01:45](2695 MB) + +PASS -- COMPILE 'atmaero_intel' [10:12, 09:06] ( 1 warnings 414 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:39, 03:04](2003 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:29, 12:32](2425 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:31, 03:11](2412 MB) + +PASS -- COMPILE 'atmaq_intel' [07:11, 06:04] ( 1 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:04, 10:41](2877 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:31, 12:11](2876 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:17] ( 408 warnings 599 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:19, 27:19](2888 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:30] ( 4 warnings 423 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [18:21, 16:33](1138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [16:10, 14:20] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [11:43, 09:25](2054 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:10, 03:41] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [19:40, 13:17](2096 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [15:12, 13:22] +PASS -- TEST 'cpld_control_sfs_intelllvm' [15:33, 09:39](2010 MB) + +PASS -- COMPILE 's2swa_intelllvm' [15:12, 14:07] +PASS -- TEST 'cpld_control_p8_intelllvm' [12:53, 07:07](2463 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:10, 05:36] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [03:25, 02:06](1748 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:15, 05:45] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:26, 02:37](1825 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [13:10, 11:39] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [13:15, 11:56](1940 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:10, 02:56] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:15, 04:06](1853 MB) + +PASS -- COMPILE 'atm_gnu' [04:10, 02:53] +PASS -- TEST 'control_c48_gnu' [07:22, 05:49](1512 MB) +PASS -- TEST 'control_stochy_gnu' [07:16, 05:41](513 MB) +PASS -- TEST 'control_ras_gnu' [07:16, 05:21](520 MB) +PASS -- TEST 'control_p8_gnu' [04:40, 03:02](1451 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [18:46, 16:55](1483 MB) +PASS -- TEST 'control_flake_gnu' [11:35, 09:12](559 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 02:49] +PASS -- TEST 'rap_control_gnu' [05:28, 03:31](855 MB) +PASS -- TEST 'rap_decomp_gnu' [08:23, 06:11](856 MB) +PASS -- TEST 'rap_2threads_gnu' [05:23, 02:41](910 MB) +PASS -- TEST 'rap_restart_gnu' [03:24, 01:53](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:23, 06:59](852 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:26, 03:25](853 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:28, 01:57](580 MB) +PASS -- TEST 'hrrr_control_gnu' [18:26, 17:01](856 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:25, 03:24](842 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:22, 02:34](901 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [23:22, 21:36](855 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:20, 01:52](580 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 01:54](669 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:30, 06:23](850 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 02:32] +PASS -- TEST 'control_csawmg_gnu' [17:28, 15:46](747 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:11, 05:09] +PASS -- TEST 'control_diag_debug_gnu' [05:25, 03:08](1286 MB) +PASS -- TEST 'regional_debug_gnu' [12:28, 10:27](779 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:48](861 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:17, 03:59](861 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [06:19, 04:23](867 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:48](867 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:37, 02:03](948 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:02](859 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:50](860 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:06](506 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:16, 01:18](498 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:29, 01:18](1462 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:17, 01:49](861 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 01:48](862 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:27, 03:03](873 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 01:21] +PASS -- TEST 'control_wam_debug_gnu' [06:44, 04:37](1310 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:41] +PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:49](742 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:54] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:24, 03:28](711 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:28, 03:10](714 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:26, 02:30](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:23, 02:24](735 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:21, 03:24](714 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:22, 01:47](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:19, 01:46](556 MB) +PASS -- TEST 'conus13km_control_gnu' [04:41, 03:04](905 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:34, 01:11](905 MB) +PASS -- TEST 'conus13km_decomp_gnu' [04:34, 03:02](908 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:34, 01:43](580 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:18, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:26, 03:52](736 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:13, 05:13] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:47](717 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:46](720 MB) +PASS -- TEST 'conus13km_debug_gnu' [22:36, 20:12](908 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:36, 07:09](650 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:33, 04:05](925 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:30, 07:26](925 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:31, 07:03](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:15, 05:03] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:55](744 MB) + +PASS -- COMPILE 's2swa_gnu' [14:11, 12:02] +PASS -- TEST 'cpld_control_p8_gnu' [09:59, 07:44](1596 MB) + +PASS -- COMPILE 's2s_gnu' [13:19, 11:34] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:47, 07:14](1546 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:17, 01:55] +PASS -- TEST 'cpld_debug_p8_gnu' [06:48, 04:53](1611 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [13:20, 12:03] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:46, 09:12](1567 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:49] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [09:39, 06:34](1568 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [13:11, 11:32] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:25, 02:15](1513 MB) SYNOPSIS: -Starting Date/Time: 20251103 00:36:49 -Ending Date/Time: 20251103 02:12:19 -Total Time: 01h:36m:21s +Starting Date/Time: 20251104 05:06:01 +Ending Date/Time: 20251104 07:05:47 +Total Time: 02h:00m:25s Compiles Completed: 66/66 -Tests Completed: 273/274 +Tests Completed: 272/274 Failed Tests: -* TEST regional_decomp_intel: FAILED: TEST TIMED OUT --- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3316328/regional_decomp_intel/err +* TEST cpld_warmstart_c12_9deg_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_443245/cpld_warmstart_c12_9deg_intel/err +* TEST cpld_restart_c12_9deg_intel: FAILED: UNABLE TO START TEST +-- LOG: N/A NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -474,7 +476,7 @@ Result: FAILURE ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -298ac307b99046cc0f13958805555536c87ce1f5 +e758964b9d7dbf1236816c4a7b664d53f11d1ded Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -492,19 +494,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -514,22 +516,23 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251031 -COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_44148 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_627144 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: regional_decomp +* (-l) - USE CONFIG FILE: rt.conf.rerun * (-e) - USE ECFLOW -PASS -- COMPILE 'atm_dyn32_intel' [08:10, 06:47] ( 1 warnings 502 remarks ) -PASS -- TEST 'regional_decomp_intel' [05:31, 03:37](1712 MB) +PASS -- COMPILE 's2sw_pdlib_intel' [14:10, 12:41] ( 1 warnings 1037 remarks ) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:30, 00:27](2140 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:24, 00:45](1489 MB) SYNOPSIS: -Starting Date/Time: 20251103 05:46:50 -Ending Date/Time: 20251103 06:01:50 -Total Time: 00h:15m:06s +Starting Date/Time: 20251104 16:33:36 +Ending Date/Time: 20251104 16:53:58 +Total Time: 00h:20m:26s Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index d996f559aa..55d005495a 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: -137b9f51790e94234c0d706c446a0b67d5dc0ade +5a49b185c11aaedfd8b1ec2a219268f352baeb5d Submodule hashes used in testing: 9265006502a859d2d3f21029fbb86107ba50ce0e AQM (v0.2.0-54-g9265006) @@ -19,19 +19,19 @@ Submodule hashes used in testing: 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - 0545feed5fcd04e274921c4c7c8b94d18c96f706 UFSATM (remotes/origin/ave_cldNrad) + 7a8a921d69b7eea62d0d687b97501bc0414cee22 UFSATM (remotes/origin/fix_warnings) 11359cb04a420fc87e4cf0f035f4d1215ab24488 UFSATM/ccpp/framework (2025-01-06-dev-5-g11359cb) - 881ee0d91c44a8cff6a8eff4c59a134f93b90df1 UFSATM/ccpp/physics (EP4-2021-g881ee0d9) + f3affd2dbe60a78be5313ff5f634f625275d7809 UFSATM/ccpp/physics (remotes/origin/warning_explicit_sfcsub) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) 41c5fcd950fed09b8afe186dede266824eca7fd3 UFSATM/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (41c5fcd) - 1c6732030b5bc8dd77347bb639952ff123b808ad UFSATM/fv3/atmos_cubed_sphere (201912_public_release-426-g1c67320) + 3e358e416497c2cac2ba34d30041cc01a2072300 UFSATM/fv3/atmos_cubed_sphere (201912_public_release-428-g3e358e4) 38d2177aef842a5c6abe26ffe876804b95fd9e0a UFSATM/mpas/MPAS-Model (remotes/origin/develop-226-g38d2177a) 4a5d595fdbf6c3d658f4becc045af1b6d0b65a5a UFSATM/upp (upp_v10.2.0-319-g4a5d595f) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd 560cb9c0f9fdc8ec96f746576dcac6503ed14eef WW3 (6.07.1-495-g560cb9c0) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - 97b24f8e40f1de0980388c8326c48b442e5a5e61 stochastic_physics (ufs-v2.0.0-282-g97b24f8) + 4bc9c48e304f036928a99f8b142af2e07132e6ae stochastic_physics (remotes/origin/fix_warnings) NOTES: @@ -41,252 +41,252 @@ 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-20251031 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2302382 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2607320 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:36, 16:46] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 06:29](3348 MB) -PASS -- TEST 'cpld_control_gefs_intel' [32:10, 15:59](4112 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [25:57, 07:33](3925 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:37, 16:06] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:22, 13:30](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:01, 14:35](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 06:35](1071 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:58, 06:41](1929 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:29, 15:27](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:38, 16:24] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:19, 13:32](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:23, 04:53] ( 828 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 20:07](1947 MB) - -PASS -- COMPILE 's2swa_intel' [18:36, 16:49] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:59, 08:01](3379 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:19, 08:10](3379 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:21, 04:49](3262 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 08:10](3405 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:30, 04:41](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:39, 07:31](3621 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:45, 08:04](3372 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:05, 06:44](3328 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:20, 08:03](3381 MB) - -PASS -- COMPILE 's2swal_intel' [18:38, 16:46] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 08:03](3335 MB) - -PASS -- COMPILE 's2sw_intel' [16:36, 14:47] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:38, 04:45](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:07, 06:59](1967 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:36, 14:23] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:13, 05:00](1980 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:38, 16:24] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:17, 08:07](3380 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:36, 15:15] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:52, 13:36](1925 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 06:47](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:42, 15:39](1894 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:30, 06:11](2887 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:27, 02:12](2895 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:25, 01:32](2312 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:53, 01:23](2109 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:51, 00:59](2113 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:56, 01:08](1488 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:53, 01:30](2108 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:01, 01:06](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:59, 00:49](1486 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:52, 01:03](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:50, 01:01](2038 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:54, 00:51](1393 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:38] ( 828 warnings 1777 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:59, 24:09](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:28, 10:31] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:37, 03:53](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:38, 02:35](1581 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:44, 02:35](1591 MB) -PASS -- TEST 'control_latlon_intel' [04:40, 02:36](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:40, 02:47](1591 MB) -PASS -- TEST 'control_c48_intel' [08:53, 06:19](1598 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:50, 05:41](725 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:54, 06:26](1602 MB) -PASS -- TEST 'control_c192_intel' [10:04, 07:01](1711 MB) -PASS -- TEST 'control_c384_intel' [12:29, 08:26](2018 MB) -PASS -- TEST 'control_c384gdas_intel' [15:12, 08:48](1175 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 01:47](639 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:13](407 MB) -PASS -- TEST 'control_lndp_intel' [03:34, 01:43](648 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:35](640 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:01, 03:07](919 MB) -PASS -- TEST 'control_iovr5_intel' [04:38, 02:37](636 MB) -PASS -- TEST 'control_p8_intel' [07:31, 03:03](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 03:14](1867 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:16, 03:02](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:19, 02:55](1883 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [07:49, 03:15](1889 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:52, 02:32](2442 MB) -PASS -- TEST 'control_restart_p8_intel' [06:22, 02:11](1016 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:38, 03:13](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:49, 02:05](1018 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:35, 03:02](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:40, 02:53](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:03, 05:18](1874 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 04:07](1921 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:06, 03:15](1879 MB) -PASS -- TEST 'merra2_thompson_intel' [07:23, 03:35](1872 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:56, 05:41](1879 MB) -PASS -- TEST 'regional_control_intel' [07:58, 05:08](875 MB) -PASS -- TEST 'regional_restart_intel' [04:52, 02:57](885 MB) -PASS -- TEST 'regional_decomp_intel' [07:58, 05:26](875 MB) -PASS -- TEST 'regional_2threads_intel' [05:54, 03:24](994 MB) -PASS -- TEST 'regional_noquilt_intel' [07:54, 05:13](1180 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:57, 05:13](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:58, 05:13](874 MB) -PASS -- TEST 'regional_wofs_intel' [08:57, 06:49](1610 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:25, 09:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:27, 03:59](1887 MB) - -PASS -- COMPILE 'rrfs_intel' [10:25, 08:49] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:41, 03:57](1016 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 04:19](1201 MB) -PASS -- TEST 'rap_decomp_intel' [07:35, 04:04](1015 MB) -PASS -- TEST 'rap_2threads_intel' [07:19, 03:48](1107 MB) -PASS -- TEST 'rap_restart_intel' [06:31, 02:21](769 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:06, 04:03](1016 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:38, 04:12](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:32, 02:18](769 MB) -PASS -- TEST 'hrrr_control_intel' [07:27, 03:43](1010 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:33, 04:02](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:26, 03:19](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:36, 02:14](765 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:26, 06:39](1009 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:42](1978 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:44, 08:04](1969 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:38] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:01, 06:42](958 MB) -PASS -- TEST 'control_ras_intel' [05:33, 03:23](671 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:27, 11:56](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:22, 08:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:29, 03:18](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [08:01, 05:08](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:20, 04:47] ( 891 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:42, 02:41](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:42, 02:43](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:37, 03:30](827 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:37, 03:10](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:03, 04:51](1116 MB) -PASS -- TEST 'control_ras_debug_intel' [05:36, 03:15](835 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:10](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [06:11, 03:16](1908 MB) -PASS -- TEST 'regional_debug_intel' [21:12, 18:24](931 MB) -PASS -- TEST 'rap_control_debug_intel' [07:41, 05:39](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:50, 05:40](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 05:50](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:45, 05:35](1198 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:37, 05:49](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:56, 06:07](1287 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 05:45](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:38, 05:47](1201 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:37, 05:40](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:37, 05:39](1199 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:37, 05:36](1198 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:44](1202 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:41, 08:56](1196 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:44, 05:39](1203 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:46, 05:51](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 09:29](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 03:27] ( 849 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:28, 14:20](1709 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:26, 08:11] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:29, 03:55](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 03:19](893 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:57, 03:18](889 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:27, 03:02](938 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:22, 02:50](931 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:14, 03:17](892 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:13, 01:56](733 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:44, 01:53](728 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:57] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:36, 03:07](1022 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:16, 01:20](1139 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:31, 03:07](1027 MB) -PASS -- TEST 'conus13km_restart_intel' [04:28, 01:55](689 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:25, 08:13] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:25, 04:02](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:20, 03:33] ( 782 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:58, 05:34](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:57, 05:32](1070 MB) -PASS -- TEST 'conus13km_debug_intel' [27:03, 24:07](1099 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:49, 23:59](818 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:21, 13:32](1198 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [27:32, 24:38](1104 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:32, 24:03](1171 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:24] ( 782 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:52, 05:33](1108 MB) - -PASS -- COMPILE 'hafsw_intel' [13:29, 12:11] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:20, 04:37](707 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:28, 05:39](921 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:59, 03:40](1052 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:34, 11:48](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:16, 05:21](467 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 06:39](477 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:00, 02:53](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:22, 07:44](428 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:47](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:02, 03:37](499 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:36, 01:45](411 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:28, 10:13] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:29, 05:37](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:26, 09:08] ( 1 warnings 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:12, 06:25](764 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:07, 06:25](741 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:32, 14:02] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:54, 04:00](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:27, 10:01] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:20, 04:19] ( 896 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:34, 15:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:09, 04:24](3239 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:49, 04:54](3209 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:54, 05:10](3216 MB) - -PASS -- COMPILE 'atmaq_intel' [10:23, 08:42] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [20:21, 15:19](2387 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [23:21, 18:12](2442 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:19, 03:31] ( 866 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:30, 40:43](1959 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:34, 16:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:11, 07:21](3348 MB) +PASS -- TEST 'cpld_control_gefs_intel' [36:50, 17:21](4108 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [32:43, 10:26](3921 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:39, 16:09] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:07, 14:08](1905 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:35, 14:58](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:23, 06:44](1074 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:30, 07:23](1930 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:07, 15:49](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:39, 16:48] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:48, 14:26](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:21, 05:01] ( 363 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:40, 21:41](1946 MB) + +PASS -- COMPILE 's2swa_intel' [17:37, 16:18] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:16, 09:20](3379 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:03, 09:02](3378 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:24, 05:39](3262 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:16, 08:58](3408 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:20, 05:23](3294 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:10, 08:01](3619 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:08, 08:42](3373 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:51, 07:33](3332 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:06, 09:00](3379 MB) + +PASS -- COMPILE 's2swal_intel' [17:37, 16:12] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:51, 08:47](3341 MB) + +PASS -- COMPILE 's2sw_intel' [16:32, 15:11] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 05:10](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:20, 07:51](1973 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:36, 14:41] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:32, 06:06](1979 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:39, 16:43] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:59, 09:15](3381 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:37, 15:17] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:14, 14:16](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:24, 07:38](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:07, 16:14](1893 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:50, 06:56](2887 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:48, 02:53](2894 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:33, 03:01](2311 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:01, 02:06](2109 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:09, 01:51](2112 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:22, 01:13](1487 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:03, 02:22](2108 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:09, 01:35](2109 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:20, 01:22](1486 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:03, 01:44](2039 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:08, 01:56](2039 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:15, 01:30](1395 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:44] ( 363 warnings 1777 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:17, 24:32](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:26, 10:42] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:49, 04:04](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:46, 02:33](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:57, 02:45](1591 MB) +PASS -- TEST 'control_latlon_intel' [04:34, 02:47](1592 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:44, 02:43](1590 MB) +PASS -- TEST 'control_c48_intel' [09:10, 06:22](1598 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:59, 05:41](724 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:55, 06:26](1605 MB) +PASS -- TEST 'control_c192_intel' [10:19, 07:08](1712 MB) +PASS -- TEST 'control_c384_intel' [14:24, 09:25](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [17:00, 09:35](1177 MB) +PASS -- TEST 'control_stochy_intel' [04:49, 01:56](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:42, 01:23](409 MB) +PASS -- TEST 'control_lndp_intel' [04:47, 01:53](651 MB) +PASS -- TEST 'control_iovr4_intel' [05:48, 02:43](642 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:18, 03:30](923 MB) +PASS -- TEST 'control_iovr5_intel' [04:43, 02:37](640 MB) +PASS -- TEST 'control_p8_intel' [07:52, 03:24](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:00, 03:32](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:29, 03:39](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:47, 03:32](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:05, 03:31](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:09, 02:47](2443 MB) +PASS -- TEST 'control_restart_p8_intel' [06:26, 02:26](1018 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:27](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:20, 02:14](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:23, 03:31](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:00, 03:09](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:34, 05:31](1875 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:35, 05:09](1921 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:04, 04:22](1878 MB) +PASS -- TEST 'merra2_thompson_intel' [08:46, 04:27](1872 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [10:39, 06:05](1878 MB) +PASS -- TEST 'regional_control_intel' [08:15, 05:48](874 MB) +PASS -- TEST 'regional_restart_intel' [06:02, 03:19](886 MB) +PASS -- TEST 'regional_decomp_intel' [10:06, 06:34](876 MB) +PASS -- TEST 'regional_2threads_intel' [07:06, 04:08](994 MB) +PASS -- TEST 'regional_noquilt_intel' [09:24, 06:16](1185 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:06, 05:53](875 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:23, 05:45](875 MB) +PASS -- TEST 'regional_wofs_intel' [09:18, 07:01](1610 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:25, 10:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:50, 04:38](1888 MB) + +PASS -- COMPILE 'rrfs_intel' [10:24, 08:54] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [08:37, 04:48](1021 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:42, 05:13](1204 MB) +PASS -- TEST 'rap_decomp_intel' [07:54, 04:48](1018 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 04:06](1098 MB) +PASS -- TEST 'rap_restart_intel' [06:42, 02:36](767 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 04:38](1022 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:35, 05:00](1017 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:46, 02:55](770 MB) +PASS -- TEST 'hrrr_control_intel' [08:04, 04:31](1009 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:43, 04:14](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:37, 03:44](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:46, 02:27](762 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:14, 07:54](1015 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:06, 08:55](1980 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:03, 08:35](1971 MB) + +PASS -- COMPILE 'csawmg_intel' [10:25, 09:02] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:32, 07:03](960 MB) +PASS -- TEST 'control_ras_intel' [05:46, 03:33](675 MB) + +PASS -- COMPILE 'wam_intel' [10:27, 08:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:35, 12:46](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:26, 08:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:30, 03:22](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [07:56, 05:57](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:09] ( 426 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:58, 02:53](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:53, 02:55](1622 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:48, 03:53](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:46, 03:24](830 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:19, 05:52](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [05:35, 03:15](838 MB) +PASS -- TEST 'control_diag_debug_intel' [05:51, 03:38](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [07:07, 04:05](1908 MB) +PASS -- TEST 'regional_debug_intel' [21:15, 19:03](934 MB) +PASS -- TEST 'rap_control_debug_intel' [08:40, 05:52](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:48, 05:53](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:44, 06:07](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:44, 05:55](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:47, 06:04](1202 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:55, 06:12](1287 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:42, 05:55](1202 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:48, 06:13](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:40, 05:45](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:47, 06:00](1202 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:54, 05:42](1201 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:50, 05:44](1199 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:52, 09:08](1196 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:48, 05:49](1203 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:45, 05:45](1202 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:03, 09:48](1202 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:49] ( 388 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:37, 14:57](1710 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:28] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:49, 04:40](1043 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 03:51](895 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:06, 03:30](893 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:49, 03:00](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 02:54](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:55, 03:24](895 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 02:04](734 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:50, 02:03](726 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:11] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:48, 03:14](1022 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:19, 01:28](1136 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:34, 03:05](1027 MB) +PASS -- TEST 'conus13km_restart_intel' [05:25, 02:13](689 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:26, 08:33] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:26, 04:10](923 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:53] ( 321 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:46, 05:32](1079 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:00, 05:26](1074 MB) +PASS -- TEST 'conus13km_debug_intel' [27:05, 24:08](1099 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [27:03, 24:03](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:55, 13:38](1205 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [26:56, 24:31](1090 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:48, 23:54](1172 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:49] ( 321 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:56, 05:56](1108 MB) + +PASS -- COMPILE 'hafsw_intel' [13:30, 12:12] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:19, 04:55](710 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:33, 06:08](921 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:54, 03:44](1047 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:46, 12:20](806 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:38, 06:06](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:41, 07:24](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 03:26](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:58, 08:57](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:13, 04:19](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:17, 04:25](499 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 02:09](411 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:29, 10:17] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:18, 06:07](779 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:26, 09:10] ( 1 warnings 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:44, 06:42](764 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:39, 07:34](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:34, 14:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:26, 04:58](1913 MB) + +PASS -- COMPILE 'atml_intel' [12:29, 10:25] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:22, 04:31] ( 431 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:34, 15:28] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:21, 05:49](3237 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:58, 05:30](3209 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:35](3217 MB) + +PASS -- COMPILE 'atmaq_intel' [10:24, 08:43] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [24:00, 18:08](2398 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [27:04, 21:39](2440 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:20, 03:36] ( 405 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:05, 41:48](1958 MB) SYNOPSIS: -Starting Date/Time: 20251103 12:25:47 -Ending Date/Time: 20251103 14:15:30 -Total Time: 01h:51m:01s +Starting Date/Time: 20251104 15:41:49 +Ending Date/Time: 20251104 17:37:36 +Total Time: 01h:57m:18s Compiles Completed: 33/33 Tests Completed: 170/170 diff --git a/tests/test_changes.list b/tests/test_changes.list index d681ef809c..8b13789179 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,253 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gefs intel -cpld_restart_gefs intel -cpld_dcp_gefs intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_restart_gfsv17_iau intel -cpld_mpi_gfsv17 intel -cpld_control_sfs intel -cpld_debug_gfsv17 intel -cpld_control_p8 intel -cpld_control_p8.v2.sfc intel -cpld_restart_p8 intel -cpld_control_qr_p8 intel -cpld_restart_qr_p8 intel -cpld_2threads_p8 intel -cpld_decomp_p8 intel -cpld_mpi_p8 intel -cpld_control_ciceC_p8 intel -cpld_control_c192_p8 intel -cpld_restart_c192_p8 intel -cpld_control_p8_lnd intel -cpld_restart_p8_lnd intel -cpld_s2sa_p8 intel -cpld_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 intel -cpld_debug_p8 intel -cpld_debug_noaero_p8 intel -cpld_control_noaero_p8_agrid intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_control_c48_5deg intel -cpld_warmstart_c48_5deg intel -cpld_restart_c48_5deg intel -cpld_control_c24_5deg intel -cpld_warmstart_c24_5deg intel -cpld_restart_c24_5deg intel -cpld_control_c24_9deg intel -cpld_warmstart_c24_9deg intel -cpld_restart_c24_9deg intel -cpld_control_c12_9deg intel -cpld_warmstart_c12_9deg intel -cpld_restart_c12_9deg intel -cpld_debug_pdlib_p8 intel -control_flake intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c48.v2.sfc intel -control_c48_lnd_iau intel -control_c192 intel -control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr4_gfdlmpv3 intel -control_iovr5 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 intel -control_p8_ugwpv1_tempo intel -control_p8_ugwpv1_tempo_aerosol intel -control_p8_ugwpv1_tempo_aerosol_hail intel -control_restart_p8 intel -control_noqr_p8 intel -control_restart_noqr_p8 intel -control_decomp_p8 intel -control_2threads_p8 intel -control_p8_lndp intel -control_p8_rrtmgp intel -control_p8_mynn intel -merra2_thompson intel -merra2_hf_thompson intel -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_noquilt intel -regional_netcdf_parallel intel -regional_2dwrtdecomp intel -regional_wofs intel -control_p8_rrtmgp_rad32 intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_csawmg intel -control_ras intel -control_wam intel -control_p8_faster intel -regional_control_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_stochy_debug intel -control_lndp_debug intel -control_csawmg_debug intel -control_ras_debug intel -control_diag_debug intel -control_debug_p8 intel -regional_debug intel -rap_control_debug intel -hrrr_control_debug intel -hrrr_gf_debug intel -hrrr_c3_debug intel -rap_unified_drag_suite_debug intel -rap_diag_debug intel -rap_cires_ugwp_debug intel -rap_unified_ugwp_debug intel -rap_lndp_debug intel -rap_progcld_thompson_debug intel -rap_noah_debug intel -rap_sfcdiff_debug intel -rap_noah_sfcdiff_cires_ugwp_debug intel -rap_clm_lake_debug intel -rap_flake_debug intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -conus13km_control intel -conus13km_2threads intel -conus13km_decomp intel -conus13km_restart intel -rap_control_dyn64_phy32 intel -rap_control_debug_dyn32_phy32 intel -hrrr_control_debug_dyn32_phy32 intel -conus13km_debug intel -conus13km_debug_qr intel -conus13km_debug_2threads intel -conus13km_debug_decomp intel -conus13km_radar_tten_debug intel -rap_control_dyn64_phy32_debug intel -hafs_regional_atm intel -hafs_regional_atm_gfdlmpv3 intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_wav intel -hafs_regional_1nest_atm intel -hafs_regional_telescopic_2nests_atm intel -hafs_global_1nest_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm intel -hafs_regional_storm_following_1nest_atm intel -hafs_global_storm_following_1nest_atm intel -gnv1_nested intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd intel -control_restart_p8_atmlnd intel -control_p8_atmlnd_debug intel -atmwav_control_noaero_p8 intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -regional_atmaq intel -regional_atmaq_canopy intel -regional_atmaq_debug intel -cpld_regional_atm_fbh intel -cpld_control_gfsv17 intelllvm -cpld_debug_gfsv17 intelllvm -cpld_control_sfs intelllvm -cpld_control_p8 intelllvm -rap_control_dyn32_phy32 intelllvm -rap_control_dyn64_phy32 intelllvm -control_c48 gnu -control_stochy gnu -control_ras gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -control_csawmg gnu -control_diag_debug gnu -regional_debug gnu -rap_control_debug gnu -hrrr_control_debug gnu -hrrr_gf_debug gnu -hrrr_c3_debug gnu -rap_diag_debug gnu -rap_noah_sfcdiff_cires_ugwp_debug gnu -rap_progcld_thompson_debug gnu -control_ras_debug gnu -control_stochy_debug gnu -control_debug_p8 gnu -rap_flake_debug gnu -rap_clm_lake_debug gnu -gnv1_c96_no_nest_debug gnu -control_wam_debug gnu -control_csawmg_debug gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -conus13km_control gnu -conus13km_2threads gnu -conus13km_decomp gnu -conus13km_restart gnu -rap_control_dyn64_phy32 gnu -rap_control_debug_dyn32_phy32 gnu -hrrr_control_debug_dyn32_phy32 gnu -conus13km_debug gnu -conus13km_debug_qr gnu -conus13km_debug_2threads gnu -conus13km_debug_decomp gnu -conus13km_radar_tten_debug gnu -rap_control_dyn64_phy32_debug gnu -cpld_control_p8 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_debug_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu +