From 6a6ce431e46846a576bef6ebf4be82035c26c7f3 Mon Sep 17 00:00:00 2001 From: "Samuel Trahan (NOAA contractor)" <39415369+SamuelTrahanNOAA@users.noreply.github.com> Date: Thu, 18 Jul 2024 11:04:43 -0400 Subject: [PATCH 1/8] Restore error checking in regression test system. (Combined PR#2357 and PR#2265) (#2335) * UFSWM - restore error checking to regression test system and add a self-test suite - Detect_machine.sh identifies Frontera --------- Co-authored-by: Sam Trahan Co-authored-by: Benjamin Cash --- .gitignore | 5 + doc/UsersGuide/requirements.txt | 2 +- modulefiles/ufs_frontera.intel.lua | 33 + tests/detect_machine.sh | 3 + tests/error-test.conf | 27 + tests/fv3_conf/fv3_qsub.IN_acorn | 7 + tests/fv3_conf/fv3_qsub.IN_derecho | 7 + tests/fv3_conf/fv3_qsub.IN_wcoss2 | 7 + tests/fv3_conf/fv3_slurm.IN_expanse | 8 + tests/fv3_conf/fv3_slurm.IN_gaea | 7 + tests/fv3_conf/fv3_slurm.IN_hera | 7 + tests/fv3_conf/fv3_slurm.IN_hercules | 7 + tests/fv3_conf/fv3_slurm.IN_jet | 7 + tests/fv3_conf/fv3_slurm.IN_noaacloud | 7 + tests/fv3_conf/fv3_slurm.IN_orion | 7 + tests/fv3_conf/fv3_slurm.IN_s4 | 7 + tests/fv3_conf/fv3_slurm.IN_stampede | 7 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 632 ++++++++------ tests/logs/RegressionTests_gaea.log | 546 ++++++------ tests/logs/RegressionTests_hera.log | 788 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 733 ++++++++-------- tests/logs/RegressionTests_jet.log | 484 +++++------ tests/logs/RegressionTests_orion.log | 641 ++++++++------ tests/logs/RegressionTests_wcoss2.log | 535 ++++++------ tests/module-setup.sh | 7 + tests/rt_utils.sh | 18 +- tests/run_compile.sh | 6 +- tests/run_test.sh | 28 +- tests/tests/dependency_unmet | 86 ++ tests/tests/fail_to_copy | 85 ++ tests/tests/fail_to_run | 89 ++ 34 files changed, 2837 insertions(+), 2098 deletions(-) create mode 100644 modulefiles/ufs_frontera.intel.lua create mode 100644 tests/error-test.conf create mode 100644 tests/tests/dependency_unmet create mode 100644 tests/tests/fail_to_copy create mode 100644 tests/tests/fail_to_run diff --git a/.gitignore b/.gitignore index 0239ee9a5a..bf7d81b1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,8 @@ tests/fv3_conf/compile_qsub.IN tests/fv3_conf/fv3_slurm.IN tests/fv3_conf/fv3_qsub.IN build*.log* +rocoto_workflow* +fail_compile_* +fail_test_* +tests/run_dir +tests/logs/log_* diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index 90efd3211e..9e47095cca 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -8,7 +8,7 @@ alabaster==0.7.16 # via sphinx babel==2.14.0 # via sphinx -certifi==2024.2.2 +certifi==2024.7.4 # via requests charset-normalizer==3.3.2 # via requests diff --git a/modulefiles/ufs_frontera.intel.lua b/modulefiles/ufs_frontera.intel.lua new file mode 100644 index 0000000000..fd62e79d30 --- /dev/null +++ b/modulefiles/ufs_frontera.intel.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Frontera/Intel +]]) + +prepend_path("MODULEPATH", "/work2/06146/tg854455/frontera/spack-stack/modulefiles") +load("ecflow/5.8.4") + +prepend_path("MODULEPATH", "/work2/01118/tg803972/frontera/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "19.1.1.217" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_impi_ver=os.getenv("stack_impi_ver") or "2020.4.304" +load(pathJoin("stack-intel-mpi", stack_impi_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.24.2" +load(pathJoin("cmake", cmake_ver)) +--load("cmake/3.24.2") + +load("ufs_common") + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "frontera.intel") + +whatis("Description: UFS build environment") diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 29f51285ca..0bd0535d8a 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -48,6 +48,9 @@ case $(hostname -f) in login[1-4].stampede2.tacc.utexas.edu) MACHINE_ID=stampede ;; ### stampede1-4 + login[1-4].frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera1-4 + c*.frontera.tacc.utexas.edu) MACHINE_ID=frontera ;; ### frontera compute + login0[1-2].expanse.sdsc.edu) MACHINE_ID=expanse ;; ### expanse1-2 discover3[1-5].prv.cube) MACHINE_ID=discover ;; ### discover31-35 diff --git a/tests/error-test.conf b/tests/error-test.conf new file mode 100644 index 0000000000..2382c59a9e --- /dev/null +++ b/tests/error-test.conf @@ -0,0 +1,27 @@ +# This file is an alternative to rt.conf that tests whether the regression test system rt.sh can detect failure conditions. +# +# ./rt.sh [options] -l error-test.conf +# +# If the rt.sh detects errors correctly, the workflow shouldn't finish. Some jobs should be failed or not submitted, and some should succeed. +# See details below. + +# This should succeed +COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 -D32BIT=ON | | fv3 | + +# This should succeed +RUN | control_c48.v2.sfc | | baseline | + +# These tests should always fail, and prevent the workflow from completing. +RUN | fail_to_copy | | baseline | +RUN | fail_to_run | | baseline | + +# Using 64-bit dynamics ensures results change, but the test runs. The workflow jobs should complete +# for the COMPILE and RUN, but the results should change. +COMPILE | atm_dyn64 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0,FV3_GFS_v17_p8_mynn,FV3_GFS_v17_p8_ugwpv1 | | fv3 | +RUN | control_c48 | | baseline | + +# This compile job should fail, and prevent the workflow from completing. +COMPILE | fail_to_compile | intel | --invalid-argument -DAPP=ATM -DCCPP_SUITES=whatever | | fv3 | + +# This test should not be submitted, because its compile job has failed. +RUN | dependency_unmet | | baseline | diff --git a/tests/fv3_conf/fv3_qsub.IN_acorn b/tests/fv3_conf/fv3_qsub.IN_acorn index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_acorn +++ b/tests/fv3_conf/fv3_qsub.IN_acorn @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_derecho b/tests/fv3_conf/fv3_qsub.IN_derecho index 8793d7edb5..5e5c0ac521 100644 --- a/tests/fv3_conf/fv3_qsub.IN_derecho +++ b/tests/fv3_conf/fv3_qsub.IN_derecho @@ -35,6 +35,13 @@ export MPICH_COLL_OPT_OFF=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + mpiexec -n @[UFS_TASKS] -ppn @[PPN] --hostfile $PBS_NODEFILE ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index db6b3f1d12..b3d0102328 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -30,6 +30,13 @@ export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export ESMF_RUNTIME_PROFILE=ON export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index 1dbc6bcbb5..6c4819806a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -26,6 +26,14 @@ echo "Model started: "`date` export OMP_STACK_SIZE=512M export OMP_NUM_THREADS=@[THRD] export I_MPI_PMI_LIBRARY=/cm/shared/apps/slurm/current/lib64/libpmi.so + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 8545e689e6..ad2459efba 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -32,6 +32,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index 288b0ec78b..a59dcdd9a2 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -38,6 +38,13 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + # shellcheck disable=SC2102 srun --label -n @[TASKS] ./fv3.exe diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index c4853fb585..36583d3fa5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -46,6 +46,13 @@ fi # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 21effeb05e..e2cd86c5fa 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -36,6 +36,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] --cpus-per-task=@[THRD] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_noaacloud b/tests/fv3_conf/fv3_slurm.IN_noaacloud index 519e29b96a..a85e084160 100644 --- a/tests/fv3_conf/fv3_slurm.IN_noaacloud +++ b/tests/fv3_conf/fv3_slurm.IN_noaacloud @@ -39,6 +39,13 @@ export OMP_NUM_THREADS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --mpi=pmi2 --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 50e8cf5655..6221286a5f 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -39,6 +39,13 @@ export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index f3f9730604..aa22694fcd 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -35,6 +35,13 @@ export PSM_SHAREDCONTEXTS=1 # Avoid job errors because of filesystem synchronization delays sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + srun --label -n @[TASKS] ./fv3.exe echo "Model ended: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index 384cc778f0..d80a3e068c 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -29,6 +29,13 @@ export LD_BIND_NOW=1 # Avoid job errors because of filesystem synchronization delays #sync && sleep 1 +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + #mpirun -prepend-rank -np $SBATCH_NP ./fv3.exe ibrun -n @[TASKS] ./fv3.exe diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index a260e9db56..fa28320843 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 15 01:41:25 UTC 2024 +Wed Jul 17 03:56:39 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 275.756850 - 0: The maximum resident set size (KB) = 1445808 + 0: The total amount of wall time = 279.926730 + 0: The maximum resident set size (KB) = 1464436 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 959.187361 - 0: The maximum resident set size (KB) = 1435516 + 0: The total amount of wall time = 981.451585 + 0: The maximum resident set size (KB) = 1435700 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 247.513262 - 0: The maximum resident set size (KB) = 1422624 + 0: The total amount of wall time = 251.528579 + 0: The maximum resident set size (KB) = 1422160 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 248.067150 - 0: The maximum resident set size (KB) = 1440744 + 0: The total amount of wall time = 247.727184 + 0: The maximum resident set size (KB) = 1422076 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 251.468799 - 0: The maximum resident set size (KB) = 1432440 + 0: The total amount of wall time = 252.564799 + 0: The maximum resident set size (KB) = 1432092 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 251.979239 - 0: The maximum resident set size (KB) = 1418388 + 0: The total amount of wall time = 248.590179 + 0: The maximum resident set size (KB) = 1429984 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1044457/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/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 = 250.614339 - 0: The maximum resident set size (KB) = 1423620 + 0: The total amount of wall time = 252.979968 + 0: The maximum resident set size (KB) = 1430948 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 15 02:47:28 UTC 2024 -Elapsed time: 01h:06m:04s. Have a nice day! +Wed Jul 17 05:20:20 UTC 2024 +Elapsed time: 01h:23m:41s. 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 2e5cd746fe..bff455551c 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 15 00:35:23 UTC 2024 +Wed Jul 17 02:51:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3401652/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/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 = 1423.280923 - 0: The maximum resident set size (KB) = 1542940 + 0: The total amount of wall time = 1336.337850 + 0: The maximum resident set size (KB) = 1531400 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3401652/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/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 = 516.185376 - 0: The maximum resident set size (KB) = 1536308 + 0: The total amount of wall time = 560.046630 + 0: The maximum resident set size (KB) = 1537008 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3401652/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/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 = 426.220133 - 0: The maximum resident set size (KB) = 1537924 + 0: The total amount of wall time = 424.689553 + 0: The maximum resident set size (KB) = 1524172 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 15 01:41:24 UTC 2024 -Elapsed time: 01h:06m:02s. Have a nice day! +Wed Jul 17 03:56:38 UTC 2024 +Elapsed time: 01h:05m:32s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 31f7c9018f..e9c9358bc9 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Sun Jul 14 22:08:08 UTC 2024 +Wed Jul 17 00:17:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3760508/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/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 = 1367.634611 - 0: The maximum resident set size (KB) = 750632 + 0: The total amount of wall time = 1486.948093 + 0: The maximum resident set size (KB) = 773156 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3760508/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/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 = 2170.861604 - 0: The maximum resident set size (KB) = 721096 + 0: The total amount of wall time = 2254.792018 + 0: The maximum resident set size (KB) = 709916 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3760508/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/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 = 2179.475163 - 0: The maximum resident set size (KB) = 711844 + 0: The total amount of wall time = 2233.046743 + 0: The maximum resident set size (KB) = 722680 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3760508/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/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 = 2178.906493 - 0: The maximum resident set size (KB) = 718428 + 0: The total amount of wall time = 2245.932321 + 0: The maximum resident set size (KB) = 719656 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 15 00:35:22 UTC 2024 -Elapsed time: 02h:27m:15s. Have a nice day! +Wed Jul 17 02:51:06 UTC 2024 +Elapsed time: 02h:33m:59s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 423636d326..9227f176a0 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -cc70b77c844682f3daeb33c8b699f162c48c2527 +2f6d2791f9dbc985ef8aec444864bfe74923be57 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/hotfix/acs-hash) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,284 +36,370 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_40167 +COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_72130 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:30, 22:37] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:38, 05:45](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:32, 24:42] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:00, 14:56](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 16:22](1952 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:11, 08:14](1086 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:06, 16:42](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:32, 24:48] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:22, 14:28](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:24, 13:03] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [23:31, 22:23] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:52, 06:34](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:15, 06:25](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:00, 04:13](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:51, 06:23](3254 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:01, 04:23](3186 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:36, 06:02](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:36, 06:19](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:36, 05:23](3543 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 06:14](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 09:51](3890 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:25, 06:52](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [31:55, 10:40](4518 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [31:25, 07:28](4670 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:22, 06:13](3214 MB) - -PASS -- COMPILE 's2sw_intel' [21:30, 20:35] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:56, 04:57](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:14, 05:15](1987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:27, 12:54] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [38:57, 08:06](-5411134659951504 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:27, 11:58] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:48, 06:02](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:29, 16:42] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:14, 05:04](1985 MB) - -PASS -- COMPILE 's2s_intel' [17:29, 16:44] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:25, 06:54](2949 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:19, 02:32](2944 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:20, 01:58](2347 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:25, 26:19] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:05, 06:52](-1315924127599578 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:25, 23:04] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:03, 14:52](1940 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:31, 08:24](1104 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:53, 16:49](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:15, 12:03] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:54, 23:57](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:22, 15:29] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [17:24, 03:28](-2435776145193053 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:21, 02:31](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:44, 02:31](1573 MB) -PASS -- TEST 'control_latlon_intel' [04:23, 02:28](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:23, 02:29](1562 MB) -PASS -- TEST 'control_c48_intel' [08:25, 06:14](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:48, 05:17](735 MB) -PASS -- TEST 'control_c192_intel' [12:14, 08:44](1685 MB) -PASS -- TEST 'control_c384_intel' [16:18, 08:54](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [18:45, 07:15](1196 MB) -PASS -- TEST 'control_stochy_intel' [02:55, 01:29](625 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:54, 00:56](443 MB) -PASS -- TEST 'control_lndp_intel' [02:57, 01:28](628 MB) -PASS -- TEST 'control_iovr4_intel' [04:01, 02:10](621 MB) -PASS -- TEST 'control_iovr5_intel' [03:59, 02:07](624 MB) -PASS -- TEST 'control_p8_intel' [05:39, 03:32](1871 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:15, 03:15](1868 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:08, 03:25](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [09:27, 02:10](4983915984765351 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:05, 03:17](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:50, 02:12](999 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:55, 03:31](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:15](1959 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:38, 05:10](1862 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:57, 04:11](1923 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:56, 03:31](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [05:51, 03:38](1867 MB) -PASS -- TEST 'regional_control_intel' [07:05, 05:15](872 MB) -PASS -- TEST 'regional_restart_intel' [05:04, 03:17](871 MB) -PASS -- TEST 'regional_decomp_intel' [07:04, 05:24](874 MB) -PASS -- TEST 'regional_noquilt_intel' [07:04, 05:05](1193 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:03, 05:10](879 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:02, 05:12](884 MB) -PASS -- TEST 'regional_wofs_intel' [07:50, 05:46](1608 MB) - -PASS -- COMPILE 'rrfs_intel' [14:22, 13:09] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:39, 06:14](1011 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 03:46](1192 MB) -PASS -- TEST 'rap_decomp_intel' [08:39, 06:25](1007 MB) -PASS -- TEST 'rap_2threads_intel' [08:39, 05:43](1101 MB) -PASS -- TEST 'rap_restart_intel' [09:06, 03:19](-8086665024644114 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:50, 06:12](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 06:24](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:35, 04:40](884 MB) -PASS -- TEST 'hrrr_control_intel' [06:21, 03:16](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 03:29](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:22, 02:51](1089 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:55, 01:49](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:46, 06:02](1005 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:14, 07:26](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:15, 07:13](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [12:20, 11:27] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [05:56, 06:47](-4635744418160825 MB) -PASS -- TEST 'control_ras_intel' [04:44, 02:57](660 MB) - -PASS -- COMPILE 'wam_intel' [12:21, 10:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:14, 09:59](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:22, 17:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:51, 03:13](1868 MB) -PASS -- TEST 'regional_control_faster_intel' [07:06, 05:05](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:20, 13:12] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:10, 02:37](-7341301194512963 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:11, 02:31](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:44, 02:55](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:38, 02:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:15, 04:54](1123 MB) -PASS -- TEST 'control_ras_debug_intel' [03:45, 02:39](820 MB) -PASS -- TEST 'control_diag_debug_intel' [03:14, 02:41](7068792496384343 MB) -PASS -- TEST 'control_debug_p8_intel' [05:06, 03:19](1909 MB) -PASS -- TEST 'regional_debug_intel' [18:01, 16:42](928 MB) -PASS -- TEST 'rap_control_debug_intel' [06:43, 04:49](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:40, 04:36](1186 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:40, 04:47](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:47, 04:49](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:34, 04:45](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:11, 04:58](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:56, 04:49](1191 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [00:28, 04:55](2489507799279835 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:44, 04:47](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:54, 04:41](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:47, 04:35](1190 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:44, 04:46](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:45, 07:36](1191 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:39, 04:35](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:44, 05:36](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:52, 04:49](1190 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 07:56](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:19, 07:16] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:16, 12:12](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 03:33](1059 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:31, 05:09](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:25, 02:50](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 04:52](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:33, 02:29](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 02:56](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:10, 03:54](794 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:54, 01:35](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:18, 15:40] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:50, 02:01](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:26, 01:03](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:36, 01:12](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:20, 11:26] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:36, 03:41](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:34] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:38, 04:44](1073 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:39, 04:30](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [15:52, 13:38](1151 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:10, 13:39](835 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:47](1151 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:32, 13:19](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:19, 07:23] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:39, 04:44](1097 MB) - -PASS -- COMPILE 'hafsw_intel' [19:21, 18:39] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:58, 04:43](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:07, 05:16](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:08, 06:38](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:00, 11:05](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:30, 12:18](812 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:43, 04:49](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 05:52](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:06, 02:22](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:30, 06:23](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 03:23](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:09](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:34, 03:58](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:40, 01:19](427 MB) -PASS -- TEST 'gnv1_nested_intel' [07:45, 04:12](1718 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:16, 09:02] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:27, 12:11](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:14] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:18](635 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:47, 07:25](690 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:24, 19:27] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:34, 05:29](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:17, 15:51] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:51, 05:41](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:46, 05:41](738 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:20, 16:13](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:19, 08:56] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:53, 02:32](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:00, 01:35](739 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:41, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:46, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:44, 02:34](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:40, 02:34](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:42, 05:48](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:37, 05:46](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:29, 02:31](751 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:33, 04:00](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 03:59](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:18, 06:28] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:13](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:14, 08:55] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:43, 02:30](750 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 02:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:48, 01:22](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 01:12](453 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:51](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:20, 13:15] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:25, 04:10](1915 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:41] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:11, 03:51](1910 MB) - -PASS -- COMPILE 'atml_intel' [16:20, 15:50] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:10, 08:01](1881 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:11, 07:30](1897 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:07, 04:12](1026 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:14, 10:32] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:05, 06:32](1935 MB) - -PASS -- COMPILE 'atmw_intel' [15:21, 14:14] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:45, 02:26](1890 MB) - -PASS -- COMPILE 'atmaero_intel' [14:23, 12:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:15, 04:32](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:19, 04:19](2999 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:39, 04:25](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:16, 08:22] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:57, 22:14](4529 MB) +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:07, 27:21] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:51, 15:09](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:03, 16:58](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 08:50](1067 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 17:02](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [09:06, 26:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:37, 14:48](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [54:59, 14:39] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [06:59, 24:57] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:47, 06:41](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:04, 07:07](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:08, 04:39](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:47, 06:36](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:08, 04:29](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:13, 06:26](3731 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:12, 06:46](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 05:52](3543 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:06, 07:08](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:40, 10:21](3815 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [21:12, 07:22](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [45:40, 11:20](4526 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:31, 08:35](4665 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:03, 06:24](3213 MB) + +PASS -- COMPILE 's2sw_intel' [03:58, 22:14] ( 10 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:08, 05:27](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 05:40](1988 MB) + +PASS -- COMPILE 's2swa_debug_intel' [55:02, 14:39] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:18, 08:55](3298 MB) + +PASS -- COMPILE 's2sw_debug_intel' [54:01, 13:38] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:28](1962 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [59:03, 18:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1982 MB) + +PASS -- COMPILE 's2s_intel' [59:04, 18:11] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:15](2945 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:35, 03:00](2948 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2341 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_faster_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_faster_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:18, 25:12] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:33, 15:12](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:56, 09:04](1111 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:11](1900 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:21, 14:09] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 24:13](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:25, 17:35] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:09, 03:35](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:22, 02:35](1568 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:40](1570 MB) +PASS -- TEST 'control_latlon_intel' [05:37, 02:34](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:34](1575 MB) +PASS -- TEST 'control_c48_intel' [09:37, 06:18](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:00, 05:20](736 MB) +PASS -- TEST 'control_c192_intel' [12:54, 08:50](1682 MB) +PASS -- TEST 'control_c384_intel' [20:39, 09:06](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [24:36, 07:29](1205 MB) +PASS -- TEST 'control_stochy_intel' [03:47, 01:32](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:58](441 MB) +PASS -- TEST 'control_lndp_intel' [04:46, 01:27](628 MB) +PASS -- TEST 'control_iovr4_intel' [06:08, 02:16](625 MB) +PASS -- TEST 'control_iovr5_intel' [05:18, 02:17](619 MB) +PASS -- TEST 'control_p8_intel' [07:10, 03:32](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:23, 03:49](1871 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 03:43](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [05:55, 02:27](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:17, 03:49](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:05, 02:37](1022 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:45](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:04, 03:28](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:53, 05:41](1862 MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_mynn_intel' [, ]( MB) +PASS -- TEST 'merra2_thompson_intel' [07:25, 03:56](1867 MB) +PASS -- TEST 'regional_control_intel' [08:33, 05:42](874 MB) +PASS -- TEST 'regional_restart_intel' [06:14, 03:33](873 MB) +PASS -- TEST 'regional_decomp_intel' [07:29, 05:45](872 MB) +PASS -- TEST 'regional_noquilt_intel' [08:07, 05:22](1194 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:31](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:25, 05:24](874 MB) +PASS -- TEST 'regional_wofs_intel' [08:28, 05:45](1606 MB) + +PASS -- COMPILE 'rrfs_intel' [16:19, 14:55] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:58, 06:19](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:57](1193 MB) +PASS -- TEST 'rap_decomp_intel' [11:58, 06:29](1006 MB) +PASS -- TEST 'rap_2threads_intel' [11:58, 05:48](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:52, 03:24](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:04, 06:14](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 06:34](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 04:40](886 MB) +PASS -- TEST 'hrrr_control_intel' [09:01, 03:21](1006 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:00, 03:32](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:02, 02:58](1092 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:22, 01:55](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:06, 06:09](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 07:28](1968 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:15](1954 MB) + +PASS -- COMPILE 'csawmg_intel' [15:21, 13:18] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:41, 07:02](965 MB) +PASS -- TEST 'control_ras_intel' [05:04, 03:00](656 MB) + +PASS -- COMPILE 'wam_intel' [14:22, 12:32] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:27, 10:08](1661 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_faster_dyn32_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_p8_faster_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_control_faster_intel' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:23, 14:53] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:37, 02:47](1608 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:34, 02:44](1605 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:49, 02:58](808 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:56, 02:40](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:01](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [04:58, 02:41](814 MB) +PASS -- TEST 'control_diag_debug_intel' [09:31, 02:43](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [07:38, 03:50](1902 MB) +PASS -- TEST 'regional_debug_intel' [20:36, 17:40](941 MB) +PASS -- TEST 'rap_control_debug_intel' [07:30, 04:51](1193 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:15, 04:44](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:48, 04:44](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:48, 04:49](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:06, 04:48](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:20, 05:07](1275 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 04:56](1193 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:04, 05:06](1195 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:49](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 04:51](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:57, 04:41](1191 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:47, 04:48](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:18, 05:43](11889801190 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:34, 02:40](11834201188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:55, 04:00](11990641197 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:47, 04:54](1194 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 08:07](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:21, 08:33] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:43, 12:24](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 12:31] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:52, 03:47](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:18](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 02:57](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:50, 04:53](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 02:37](942 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:04](882 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:05](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:13, 01:41](780 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:17, 16:41] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:57, 02:19](1087 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:53, 01:18](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:14](975 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:39] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 03:45](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:58, 08:41] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:59, 04:40](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:16, 04:37](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [19:22, 13:36](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:09, 13:50](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:22, 08:00](1156 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:40, 13:38](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:20, 08:20] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:04, 04:42](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [22:24, 20:21] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:27, 05:06](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:58, 05:51](1067 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 06:58](776 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 11:39](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:36, 12:34](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:47, 04:54](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 06:08](497 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:35, 02:33](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 06:35](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:36](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:38, 03:23](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:12, 04:16](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:48, 01:26](427 MB) +PASS -- TEST 'gnv1_nested_intel' [10:09, 04:39](1723 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [13:24, 10:31] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:20, 12:38](624 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [32:28, 28:40] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:24, 07:33](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:17, 07:38](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:28, 21:36] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 05:54](684 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:18, 18:10] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:41, 05:59](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 05:58](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:41, 16:15](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:15, 10:27] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:08, 02:33](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:15, 01:39](754 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:00, 02:23](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:05, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:11, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:35](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:06, 06:45](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:22, 06:39](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 02:36](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:08](2019 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:12](2018 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:19, 07:44] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:52, 05:14](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 10:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:35](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:24, 03:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:54, 02:14](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 02:09](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:55, 01:01](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:18, 15:15] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:03, 05:09](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:52, 13:53] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:52, 05:06](1912 MB) + +PASS -- COMPILE 'atml_intel' [18:23, 16:47] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:24, 09:26](1884 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:20, 09:30](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:19, 04:55](1041 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:24, 11:37] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:20, 07:43](1933 MB) + +PASS -- COMPILE 'atmw_intel' [16:32, 15:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:45, 03:22](1887 MB) + +PASS -- COMPILE 'atmaero_intel' [15:31, 13:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:45, 05:26](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 04:32](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 04:47](3012 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:19, 09:15] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [29:37, 22:59](4543 MB) SYNOPSIS: -Starting Date/Time: 20240714 12:58:42 -Ending Date/Time: 20240714 20:54:43 -Total Time: 07h:57m:02s -Compiles Completed: 41/41 -Tests Completed: 183/183 +Starting Date/Time: 20240717 17:53:45 +Ending Date/Time: 20240717 21:27:52 +Total Time: 03h:35m:49s +Compiles Completed: 38/41 +Tests Completed: 177/183 +Failed Compiles: +* COMPILE s2swa_32bit_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_32bit_intel.log +* COMPILE s2swa_faster_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_faster_intel.log +* COMPILE atm_faster_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_atm_faster_dyn32_intel.log +Failed Tests: +* TEST control_p8_rrtmgp_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_rrtmgp_intel.log +* TEST control_p8_mynn_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_mynn_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_5262 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [23:18, 22:52] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:10, 05:46](3205 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:40, 27:12] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:58, 06:29](3232 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:18, 18:03] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:25, 03:27](1868 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](871 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:14, 15:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:33](1923 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:05, 03:32](1875 MB) + +SYNOPSIS: +Starting Date/Time: 20240718 07:21:40 +Ending Date/Time: 20240718 08:04:53 +Total Time: 00h:43m:33s +Compiles Completed: 4/4 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index c6c815589f..a935178f3f 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -cc70b77c844682f3daeb33c8b699f162c48c2527 +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/hotfix/acs-hash) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,284 +36,284 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_112290 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_256117 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:42, 06:00](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 20:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:09, 13:32](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:59, 14:22](1944 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:14, 06:43](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:03, 14:35](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:49] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:36, 13:20](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:54] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:19, 24:04](1948 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:36, 06:43](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:40, 06:45](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:11, 04:02](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:37, 06:46](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:11, 04:03](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:38, 05:45](3462 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:28, 06:34](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:38, 05:43](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:45, 06:41](3225 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:29, 10:07](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:12, 07:00](3610 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:44, 12:22](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:31, 08:48](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:36, 06:30](3207 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 13:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:09, 04:28](1935 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:14, 04:42](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:17, 08:36](3279 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:28] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:06, 05:45](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:58] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:11, 04:35](1998 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:45] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:55, 06:31](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:00, 01:57](2934 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:07](2330 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:12, 21:45] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 06:26](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:12, 20:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:11, 14:44](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:06, 07:15](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:11, 16:52](1908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:57] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:06, 26:58](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 12:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:33](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 02:45](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:45, 02:46](1569 MB) -PASS -- TEST 'control_latlon_intel' [03:38, 02:42](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:47, 02:46](1567 MB) -PASS -- TEST 'control_c48_intel' [07:55, 06:36](1600 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:03, 05:41](719 MB) -PASS -- TEST 'control_c192_intel' [10:39, 09:38](1682 MB) -PASS -- TEST 'control_c384_intel' [18:59, 17:49](1978 MB) -PASS -- TEST 'control_c384gdas_intel' [15:52, 14:05](1184 MB) -PASS -- TEST 'control_stochy_intel' [03:11, 01:46](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:02](426 MB) -PASS -- TEST 'control_lndp_intel' [03:10, 01:38](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:23](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:25](620 MB) -PASS -- TEST 'control_p8_intel' [04:04, 02:59](1861 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:13, 03:02](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:04, 02:55](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:39](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:46, 02:54](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:53, 01:39](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:50, 02:59](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:49, 02:39](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:40, 04:59](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:03, 03:44](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:07, 02:57](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [05:04, 03:15](1866 MB) -PASS -- TEST 'regional_control_intel' [05:43, 04:45](867 MB) -PASS -- TEST 'regional_restart_intel' [04:06, 02:38](859 MB) -PASS -- TEST 'regional_decomp_intel' [05:42, 04:57](859 MB) -PASS -- TEST 'regional_2threads_intel' [03:44, 03:00](997 MB) -PASS -- TEST 'regional_noquilt_intel' [05:45, 04:39](1182 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:42, 04:43](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:35, 04:46](860 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:16](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 10:51] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:08, 06:31](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:03, 04:00](1188 MB) -PASS -- TEST 'rap_decomp_intel' [08:08, 06:52](1009 MB) -PASS -- TEST 'rap_2threads_intel' [06:49, 05:55](1094 MB) -PASS -- TEST 'rap_restart_intel' [04:47, 03:26](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:11, 06:27](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:11, 06:49](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:47, 04:56](879 MB) -PASS -- TEST 'hrrr_control_intel' [04:47, 03:33](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:47, 03:37](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [03:53, 03:03](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:31, 01:54](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:12, 06:27](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:38, 07:55](1966 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:38, 07:32](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:19] -PASS -- TEST 'control_csawmg_intel' [07:50, 06:27](965 MB) -PASS -- TEST 'control_ras_intel' [04:29, 03:12](657 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:19] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:58, 11:04](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:11, 17:57] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:53, 02:49](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 04:34](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:50] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:46, 02:42](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:47, 02:39](1587 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:01](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:46](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:10, 04:13](1104 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:49](802 MB) -PASS -- TEST 'control_diag_debug_intel' [03:34, 02:47](1654 MB) -PASS -- TEST 'control_debug_p8_intel' [03:33, 02:57](1886 MB) -PASS -- TEST 'regional_debug_intel' [17:32, 16:19](896 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:56](1179 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:26, 04:46](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:59](1179 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:54](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:50](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:11](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:00](1180 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:57](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 05:00](1181 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:27, 05:19](1179 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:25, 05:08](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 05:27](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:21](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:18](1172 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:28, 06:15](1184 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:20](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:46, 08:49](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 06:56] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:39, 13:14](1684 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:03, 03:49](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:46, 05:28](883 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:46, 03:01](881 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:44, 05:09](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 02:42](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:42, 03:19](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:12](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:41](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 15:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:03, 01:58](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:46, 01:06](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:16](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:04](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:38] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:29, 04:51](1062 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:28, 04:42](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [15:00, 13:52](1141 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:58, 14:09](820 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:51, 08:13](1130 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:54, 14:09](1213 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 07:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:25, 04:56](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [14:15, 13:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:18](713 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:55, 04:28](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:25, 07:33](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:10, 11:28](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:28, 12:38](804 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:01, 05:20](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:21, 06:48](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:11, 02:54](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:14, 07:59](447 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:51, 03:52](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:58, 03:35](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:45](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:13, 01:42](403 MB) -PASS -- TEST 'gnv1_nested_intel' [07:41, 05:15](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 08:43] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:59, 13:26](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:15, 21:14] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:40](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:21, 07:48](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 15:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:13, 06:02](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:17, 13:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:14, 06:06](736 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:10, 06:06](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:27, 20:09](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 11:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:23, 02:41](746 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:37](736 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:22, 02:27](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:23, 02:27](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:22, 02:28](636 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:23, 02:36](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:35](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:22, 02:27](636 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:59, 06:02](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:58, 06:00](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:21, 02:35](761 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:40](2015 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 04:41](2014 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 06:13] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 05:27](741 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:22, 02:35](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:27](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:11](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:38, 00:55](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:54] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:39](1925 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:15, 12:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:17, 03:33](1912 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 14:09] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:10, 06:09](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:12, 06:25](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:40, 03:24](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 09:19] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:05, 06:38](1925 MB) - -PASS -- COMPILE 'atmw_intel' [14:17, 13:19] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:58](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:55, 05:02](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:54, 05:35](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:50, 05:46](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:11, 08:23] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:14, 18:15](4485 MB) +PASS -- COMPILE 's2swa_32bit_intel' [42:16, 41:09] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:57, 07:24](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:18, 13:47](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 15:07](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:06, 07:28](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:37, 15:37](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:53, 13:27](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [38:14, 38:09] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:25, 24:40](1949 MB) + +PASS -- COMPILE 's2swa_intel' [41:15, 40:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:57, 08:23](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:22](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:18, 05:40](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:57, 08:13](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 05:46](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:54, 06:54](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:17, 07:57](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:57, 07:18](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:58, 08:09](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:51, 10:33](3446 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:21, 08:22](3608 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:19, 13:16](4207 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:46, 09:25](4357 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:37, 08:18](3207 MB) + +PASS -- COMPILE 's2sw_intel' [41:15, 40:17] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:26, 05:02](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:17, 05:23](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [38:12, 38:09] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:23, 10:34](3279 MB) + +PASS -- COMPILE 's2sw_debug_intel' [36:16, 35:46] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:34, 06:02](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [38:14, 37:38] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:17, 05:14](1998 MB) + +PASS -- COMPILE 's2s_intel' [37:16, 36:14] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:33, 06:35](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 02:01](2930 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:28, 01:12](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [44:15, 44:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:47, 08:07](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [39:16, 38:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 15:16](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 07:27](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:47](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:16, 31:16] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:41, 27:20](1963 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [28:15, 27:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:50, 03:50](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:21, 03:04](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:11](1569 MB) +PASS -- TEST 'control_latlon_intel' [05:39, 03:06](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:10](1572 MB) +PASS -- TEST 'control_c48_intel' [10:46, 06:37](1600 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 05:39](719 MB) +PASS -- TEST 'control_c192_intel' [12:23, 10:07](1682 MB) +PASS -- TEST 'control_c384_intel' [22:01, 18:24](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [19:48, 14:20](1178 MB) +PASS -- TEST 'control_stochy_intel' [04:15, 01:57](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:32, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [04:05, 01:51](622 MB) +PASS -- TEST 'control_iovr4_intel' [05:17, 02:40](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:45, 02:32](619 MB) +PASS -- TEST 'control_p8_intel' [06:48, 03:21](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:20, 03:22](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:30, 03:21](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [05:18, 01:53](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:19, 03:21](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 01:58](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:26](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:08, 02:55](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:42, 05:28](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:42, 04:16](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:28](1867 MB) +PASS -- TEST 'merra2_thompson_intel' [07:23, 03:50](1865 MB) +PASS -- TEST 'regional_control_intel' [06:50, 04:43](859 MB) +PASS -- TEST 'regional_restart_intel' [04:59, 02:39](861 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:11](860 MB) +PASS -- TEST 'regional_2threads_intel' [05:57, 03:05](999 MB) +PASS -- TEST 'regional_noquilt_intel' [07:00, 04:38](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:10, 04:47](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 04:46](858 MB) +PASS -- TEST 'regional_wofs_intel' [08:04, 06:05](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [27:12, 26:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:17, 06:58](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:43, 04:02](1187 MB) +PASS -- TEST 'rap_decomp_intel' [11:49, 07:10](1009 MB) +PASS -- TEST 'rap_2threads_intel' [11:17, 06:10](1096 MB) +PASS -- TEST 'rap_restart_intel' [07:20, 03:56](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:07, 07:02](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 07:19](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:33, 04:57](880 MB) +PASS -- TEST 'hrrr_control_intel' [08:34, 03:51](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:34, 03:57](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:34, 03:07](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:04](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:08, 06:49](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:12](1964 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:59](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [25:16, 24:57] +PASS -- TEST 'control_csawmg_intel' [09:16, 06:41](964 MB) +PASS -- TEST 'control_ras_intel' [05:43, 03:24](657 MB) + +PASS -- COMPILE 'wam_intel' [25:17, 24:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:31, 11:39](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [34:14, 33:12] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:05, 03:16](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [06:21, 04:49](857 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [27:21, 26:59] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:31, 03:16](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:02](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:00, 03:13](796 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:59](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:41](1107 MB) +PASS -- TEST 'control_ras_debug_intel' [04:27, 02:56](803 MB) +PASS -- TEST 'control_diag_debug_intel' [04:59, 03:04](1659 MB) +PASS -- TEST 'control_debug_p8_intel' [05:54, 03:20](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 16:36](899 MB) +PASS -- TEST 'rap_control_debug_intel' [07:18, 05:18](1180 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:12](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:08](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 05:06](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:17, 05:12](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:14](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:10](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:11, 05:06](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 05:05](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:05, 05:00](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:54, 05:09](1178 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:01](1178 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:46, 05:01](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:03](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:47, 05:02](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:50](1182 MB) + +PASS -- COMPILE 'wam_debug_intel' [22:19, 21:10] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:45, 13:43](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:15, 25:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:48](1047 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 05:56](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:28](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 05:17](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:06, 02:43](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:25, 03:36](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:12](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:51](764 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [30:15, 30:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:52, 02:17](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:32, 01:05](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:04, 01:26](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [25:15, 24:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:34, 04:18](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [22:15, 21:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 04:58](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:09](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [18:18, 14:27](1137 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:18, 14:18](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:40, 08:21](1124 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:17](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:14, 21:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:18](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [35:16, 34:24] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:30, 05:18](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:33](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:18, 07:43](754 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:47, 11:44](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:56](800 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 05:28](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:03, 06:58](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:03, 02:55](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:36, 08:22](447 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:20, 03:47](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:41, 03:33](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:20, 04:47](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:45](403 MB) +PASS -- TEST 'gnv1_nested_intel' [12:11, 06:27](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [29:13, 28:17] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:59, 13:05](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [40:16, 39:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:13, 07:43](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:14, 07:47](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [36:16, 35:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:19, 06:02](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:12, 33:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:17](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:20](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:13, 20:08](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [27:18, 26:13] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:36](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:35](758 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:25](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:05, 06:06](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:05, 05:49](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 04:40](2017 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 04:40](2019 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [24:15, 23:25] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:32](730 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [27:21, 26:11] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 02:36](760 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [12:16, 11:59] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:49, 02:06](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:42](455 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:48, 01:11](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:15, 28:50] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:49, 04:11](1925 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:15, 25:45] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:17](1914 MB) + +PASS -- COMPILE 'atml_intel' [25:11, 24:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:03, 07:40](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 07:43](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 04:03](1023 MB) + +PASS -- COMPILE 'atml_debug_intel' [21:12, 20:38] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:53, 06:37](1931 MB) + +PASS -- COMPILE 'atmw_intel' [21:16, 19:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:09, 02:21](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [19:11, 18:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:41, 06:09](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:41, 06:37](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:16, 06:43](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:11, 15:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21:06, 18:25](4445 MB) SYNOPSIS: -Starting Date/Time: 20240714 14:57:35 -Ending Date/Time: 20240714 16:17:48 -Total Time: 01h:20m:52s +Starting Date/Time: 20240716 17:46:49 +Ending Date/Time: 20240716 20:20:15 +Total Time: 02h:35m:37s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b1c2bf111d..178360535f 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: -cc70b77c844682f3daeb33c8b699f162c48c2527 +49f4d2924a6e9ac32d439c07a897d5732b6f49ef Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/hotfix/acs-hash) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -25,378 +25,436 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_804793 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 14:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:38](3323 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:13, 16:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:01, 17:12](1951 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:19, 18:04](2147 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:13, 08:18](1252 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:57, 19:23](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:42, 17:00](1977 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:33] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:04, 22:39](1944 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:55] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:52](3353 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:20, 06:14](3338 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:30, 03:41](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:58](3346 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:29, 03:32](3303 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:32](3627 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:12, 05:53](3329 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:16, 04:47](3223 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:24, 05:52](3358 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:45, 10:15](3530 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:56, 06:25](3638 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:17, 09:28](4299 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:13, 06:15](4384 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:16, 05:25](3336 MB) - -PASS -- COMPILE 's2sw_intel' [14:12, 13:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:08, 04:55](1993 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:14, 04:25](2023 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:33] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:09, 08:30](3384 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:28] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:01, 05:54](2024 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:12, 12:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:00, 04:16](2053 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 12:24] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:07](3112 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:40, 02:48](3082 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:38, 01:38](2506 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:37] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:16, 06:00](3351 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 17:25](2017 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:17, 08:23](1275 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 19:53](1914 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:59] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 24:42](1980 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:24, 03:27](697 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:44, 03:13](1600 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 03:13](1617 MB) -PASS -- TEST 'control_latlon_intel' [04:41, 03:09](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:49, 03:15](1600 MB) -PASS -- TEST 'control_c48_intel' [08:48, 07:41](1760 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 06:27](870 MB) -PASS -- TEST 'control_c192_intel' [11:58, 10:39](1763 MB) -PASS -- TEST 'control_c384_intel' [12:59, 10:34](2025 MB) -PASS -- TEST 'control_c384gdas_intel' [11:19, 07:55](1403 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:38](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:00](509 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:33](660 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:27](657 MB) -PASS -- TEST 'control_iovr5_intel' [03:37, 02:27](654 MB) -PASS -- TEST 'control_p8_intel' [04:07, 03:06](1899 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:04, 03:07](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:59](1902 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:47](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:48, 03:04](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:51, 01:43](1163 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:44, 03:09](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:52, 02:53](1988 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:22](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:59, 04:08](1963 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:56, 03:05](1915 MB) -PASS -- TEST 'merra2_thompson_intel' [04:54, 03:23](1902 MB) -PASS -- TEST 'regional_control_intel' [06:40, 05:18](1100 MB) -PASS -- TEST 'regional_restart_intel' [03:47, 03:02](1098 MB) -PASS -- TEST 'regional_decomp_intel' [06:41, 05:42](1098 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:27](1093 MB) -PASS -- TEST 'regional_noquilt_intel' [06:41, 05:29](1395 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:23](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:28](1101 MB) -PASS -- TEST 'regional_wofs_intel' [07:39, 06:51](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 11:05] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:59, 07:45](1114 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:11, 04:12](1308 MB) -PASS -- TEST 'rap_decomp_intel' [09:43, 08:10](1036 MB) -PASS -- TEST 'rap_2threads_intel' [09:00, 07:17](1188 MB) -PASS -- TEST 'rap_restart_intel' [04:49, 04:06](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:58, 07:43](1112 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:42, 08:13](1032 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:51](1135 MB) -PASS -- TEST 'hrrr_control_intel' [04:43, 03:59](1049 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:43, 04:09](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:43, 03:43](1113 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:09](1008 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:59, 07:38](1100 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:23](1995 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:15](2067 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:25] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:09](1028 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:23](753 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] -PASS -- TEST 'control_csawmg_gnu' [09:38, 08:19](748 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:46, 11:05](1657 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:38] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:02, 02:49](1894 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 04:51](1100 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:23] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:45](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:39](1625 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:22, 03:07](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:50](832 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:25](1148 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:54](839 MB) -PASS -- TEST 'control_diag_debug_intel' [03:52, 02:49](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [03:47, 02:59](1923 MB) -PASS -- TEST 'regional_debug_intel' [18:48, 18:04](1111 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 05:21](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:39, 04:59](1224 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:34, 05:05](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:30, 05:07](1217 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 05:01](1220 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:45, 05:07](1303 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:28, 05:04](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:26, 05:15](1215 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:58](1216 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:27, 05:03](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:57](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:10](1218 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:24, 08:03](1216 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:55](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:05](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:56](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:45, 08:29](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:31] -PASS -- TEST 'control_csawmg_debug_gnu' [03:33, 02:23](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:52] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:30](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:11, 03:54](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:28](1053 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:50](989 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:33, 06:08](1099 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:32, 03:11](964 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:35, 03:42](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:54](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:32, 01:52](934 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 02:08](1205 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:43, 00:53](1122 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 01:14](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:38] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:52, 04:12](986 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:29, 04:52](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:42](1098 MB) -PASS -- TEST 'conus13km_debug_intel' [15:57, 14:41](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:51](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:48, 08:19](1177 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:37](1317 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:58] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1135 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 12:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:18, 05:08](737 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 06:16](1113 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:06](833 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:27, 13:34](868 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:31, 15:19](889 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:55, 05:28](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:31, 06:55](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:47, 02:42](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:34, 07:24](474 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:47, 03:45](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:48, 03:35](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:06](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:13](409 MB) -PASS -- TEST 'gnv1_nested_intel' [05:39, 04:08](1748 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:11, 04:37] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 13:00](590 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:31] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:04, 08:51](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:07, 08:53](757 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:04, 06:29](740 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 12:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:23, 06:33](820 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:21, 06:30](820 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:07, 16:12](1217 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:47] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:45](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:35](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:40](1029 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:39](1022 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:38](1152 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:41](1164 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:23, 02:56](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:29, 06:17](1079 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:20, 06:15](1044 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1153 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:45](2516 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:26, 03:47](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:12](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:52] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:46](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 01:03] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:46](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:49](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:31](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:20] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:01, 03:44](1981 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:13, 11:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:06, 03:35](1967 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:19](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:04, 04:21](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:23](1111 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:29] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:55, 05:45](1895 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 11:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:52, 01:53](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 11:19] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:11, 04:04](3209 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:58, 04:58](3109 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:54](3116 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:13, 04:28] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [30:16, 27:38](4442 MB) - -PASS -- COMPILE 'atm_gnu' [05:13, 04:58] -PASS -- TEST 'control_c48_gnu' [12:44, 11:23](1534 MB) -PASS -- TEST 'control_stochy_gnu' [04:24, 03:23](498 MB) -PASS -- TEST 'control_ras_gnu' [05:23, 04:44](507 MB) -PASS -- TEST 'control_p8_gnu' [06:00, 04:44](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:57, 04:40](1449 MB) -PASS -- TEST 'control_flake_gnu' [11:33, 10:14](539 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] -PASS -- TEST 'rap_control_gnu' [11:39, 10:50](821 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 11:00](852 MB) -PASS -- TEST 'rap_2threads_gnu' [10:37, 09:47](936 MB) -PASS -- TEST 'rap_restart_gnu' [06:53, 05:28](580 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:50, 10:47](814 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:51, 10:57](852 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:48, 08:00](580 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:34](816 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 05:35](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:48, 05:02](921 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:33](855 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:51](567 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:31, 02:49](656 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:28](813 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:43] -PASS -- TEST 'control_diag_debug_gnu' [02:49, 01:39](1273 MB) -PASS -- TEST 'regional_debug_gnu' [12:41, 11:27](747 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:39](827 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:25, 02:30](824 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:24, 02:37](824 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:33](832 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:48, 02:47](907 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:23, 04:03](828 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:38](821 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:38](821 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:35](461 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:44](448 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:45](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:37](825 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:54](823 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:39, 04:24](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:39] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:12] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:32, 09:19](722 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:43, 04:52](707 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:27](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:37, 04:29](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:40, 05:03](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:42, 06:54](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:38, 02:36](537 MB) -PASS -- TEST 'conus13km_control_gnu' [05:18, 03:13](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:52, 05:58](886 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:55, 01:49](549 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:13, 10:55] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:47](736 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:44] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:34](711 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:33](711 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:54, 06:58](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:50, 06:59](581 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:44, 07:13](892 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:43, 06:59](962 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:42](735 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:34] - -PASS -- COMPILE 's2s_gnu' [17:13, 16:09] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:11, 07:43](1526 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:15] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:12, 16:29] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:06, 23:49](1457 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:09] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:10, 13:10](1453 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 15:41] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 02:58](685 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:24, 05:42](3326 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:28](1978 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 18:11](2159 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:18, 08:19](1251 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:18](1853 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:09](1976 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:13, 05:10] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:59, 22:49](1936 MB) + +PASS -- COMPILE 's2swa_intel' [14:13, 13:42] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:04](3340 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:28, 05:55](3351 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:22, 03:33](3257 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:08](3372 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:39](3291 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:36](3631 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:15, 06:01](3343 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:17, 05:02](3221 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:26, 06:05](3348 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:10, 10:20](3529 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:33](3632 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:47, 09:45](4346 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:30](4396 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:20, 05:31](3342 MB) + +PASS -- COMPILE 's2sw_intel' [14:13, 13:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:10, 04:54](1997 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:17, 04:31](2052 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:13, 05:18] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:47](3387 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:13, 04:57] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:58](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 12:06] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:22](2057 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 12:10] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 09:07](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:44](3096 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:36](2508 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:30] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:18, 05:34](3359 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 17:23](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:25](1278 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:57](1926 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:03] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 25:20](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 12:06] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 03:21](708 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:53](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:55, 03:00](1601 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:54](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:56](1609 MB) +PASS -- TEST 'control_c48_intel' [08:48, 07:40](1757 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 06:28](876 MB) +PASS -- TEST 'control_c192_intel' [12:05, 10:35](1765 MB) +PASS -- TEST 'control_c384_intel' [13:07, 10:24](2004 MB) +PASS -- TEST 'control_c384gdas_intel' [13:11, 08:04](1401 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:39](656 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:59](508 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:32](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:29, 02:29](659 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:29](659 MB) +PASS -- TEST 'control_p8_intel' [04:58, 03:10](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 03:07](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:59](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:52, 01:53](1137 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:57, 03:01](1889 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:51](1155 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:14](1883 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:58](1989 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:24](1901 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 04:08](1968 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:09](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [06:55, 03:33](1912 MB) +PASS -- TEST 'regional_control_intel' [08:40, 05:19](1101 MB) +PASS -- TEST 'regional_restart_intel' [03:40, 02:53](1096 MB) +PASS -- TEST 'regional_decomp_intel' [08:40, 05:49](1090 MB) +PASS -- TEST 'regional_2threads_intel' [06:43, 03:33](1092 MB) +PASS -- TEST 'regional_noquilt_intel' [07:43, 05:24](1397 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 05:23](1093 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:27](1104 MB) +PASS -- TEST 'regional_wofs_intel' [08:39, 06:59](1918 MB) + +PASS -- COMPILE 'rrfs_intel' [11:12, 11:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:44](1113 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:14](1301 MB) +PASS -- TEST 'rap_decomp_intel' [09:43, 08:16](1032 MB) +PASS -- TEST 'rap_2threads_intel' [08:43, 07:18](1180 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 04:09](1101 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1114 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:43, 08:09](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:58](1138 MB) +PASS -- TEST 'hrrr_control_intel' [05:45, 04:01](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 04:08](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:45, 03:39](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:10](994 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:51, 07:36](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:36, 09:24](1997 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 09:08](2048 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:39] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:08](1023 MB) +PASS -- TEST 'control_ras_intel' [04:27, 03:18](757 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:18] +PASS -- TEST 'control_csawmg_gnu' [09:37, 08:21](745 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:35] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:51, 10:48](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:37] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:51, 02:46](1896 MB) +PASS -- TEST 'regional_control_faster_intel' [05:42, 04:52](1106 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:19] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:37](1631 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:48, 02:41](1633 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:05](831 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:51](835 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:25](1154 MB) +PASS -- TEST 'control_ras_debug_intel' [04:23, 02:50](845 MB) +PASS -- TEST 'control_diag_debug_intel' [04:46, 02:52](1690 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 02:58](1926 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:52](1118 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:58](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:49](1224 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:08](1215 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:57](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 05:05](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:16](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:00](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:04](1221 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:26, 05:05](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:01](1226 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:50](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:09](1229 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:16](1222 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:58](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:00](1224 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:56](1219 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:35](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 05:03] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](733 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 03:59] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 13:27](1697 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:08, 03:57](1162 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:45, 06:25](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:22](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:03](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:34, 03:09](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](926 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:52](1040 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:52](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:52] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:59, 02:07](1208 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:43, 00:57](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:14](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:17](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:52](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 05:01](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 14:54](1255 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:30](909 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:14](1181 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:39](1318 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:04](1144 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:15, 05:01](739 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 05:47](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:49](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:38](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:38, 15:11](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:03, 05:25](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:40](527 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:40](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:13, 07:08](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:41](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:50, 03:30](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:03](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](407 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 04:13](1745 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:29] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 12:52](597 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:03, 08:46](645 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:55](745 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:06, 06:38](733 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:14, 11:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:41](841 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:26](821 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:01](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:36](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:38](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:38](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:21, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:42](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:39](1166 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:33](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:26, 06:24](1072 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:15](1054 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:43](1168 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 04:01](2491 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:52](2454 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:19] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:15](1051 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:36] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:36](1172 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:15] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 00:49](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:49](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:31](326 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 11:32] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:10, 03:51](1961 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:07] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 03:39](1969 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:33] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:25](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:05, 04:27](1833 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:23](1102 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 05:01] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:42](1902 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:57](1942 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 11:07] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:05, 04:06](3187 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:01, 04:53](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:11](3099 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 04:01] ( 884 warnings 6 remarks ) +FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:54] +PASS -- TEST 'control_c48_gnu' [12:41, 11:19](1535 MB) +PASS -- TEST 'control_stochy_gnu' [04:24, 03:21](500 MB) +PASS -- TEST 'control_ras_gnu' [05:23, 04:44](502 MB) +PASS -- TEST 'control_p8_gnu' [05:58, 04:50](1453 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:39](1460 MB) +PASS -- TEST 'control_flake_gnu' [11:24, 10:08](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:24] +PASS -- TEST 'rap_control_gnu' [11:36, 10:43](853 MB) +PASS -- TEST 'rap_decomp_gnu' [11:39, 11:02](818 MB) +PASS -- TEST 'rap_2threads_gnu' [10:38, 09:48](929 MB) +PASS -- TEST 'rap_restart_gnu' [07:44, 05:28](576 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 10:49](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:39, 11:08](852 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:46, 08:10](582 MB) +PASS -- TEST 'hrrr_control_gnu' [06:35, 05:33](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:50](795 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 05:00](926 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:36](843 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:59](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 02:49](657 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 10:32](810 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] +PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:36](1275 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:24](733 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:40](821 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:35](823 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:34](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:36](825 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:49](910 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](824 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:35](828 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:33](822 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:35](494 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:44](451 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:48](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:37](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:53](825 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:24](831 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:24](711 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 04:56](705 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:27](752 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 04:28](749 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:04](703 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 07:01](554 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:40, 02:35](535 MB) +PASS -- TEST 'conus13km_control_gnu' [04:55, 03:11](877 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:46, 06:13](882 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:48](559 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:54] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:40](727 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:32](721 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:33](718 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:55](896 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 07:08](584 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:46](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 07:02](963 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:37](743 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:39] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:11] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:09, 07:13](1530 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:20] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:02, 20:27](1450 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:05] +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:33] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 02:57](692 MB) SYNOPSIS: -Starting Date/Time: 20240714 18:57:11 -Ending Date/Time: 20240714 20:32:41 -Total Time: 01h:35m:47s +Starting Date/Time: 20240716 15:26:34 +Ending Date/Time: 20240716 17:30:47 +Total Time: 02h:04m:46s Compiles Completed: 57/57 -Tests Completed: 245/245 +Tests Completed: 243/245 +Failed Tests: +* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/regional_atmaq_debug_intel/err +* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/cpld_debug_pdlib_p8_gnu/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +49f4d2924a6e9ac32d439c07a897d5732b6f49ef + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3432358 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 'atmaq_debug_intel' [21:15, 04:10] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [21.51, 45:32](4455 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:30] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [41:02, 16:47](1445 MB) + +SYNOPSIS: +Starting Date/Time: 20240716 20:11:10 +Ending Date/Time: 20240716 20:57:40 +Total Time: 00h:46m:36s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 07e734535a..8c11ab9059 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: -452cc402e677436c64cb2139db02568551062088 +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/hotfix/acs-hash) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,374 +36,375 @@ 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-20240624 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2115957 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_962708 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [11:56, 11:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 07:33](2133 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:18, 17:18] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:24, 13:33](2000 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:02, 13:59](2305 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [07:30, 06:32](1313 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:46, 14:53](1925 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:44, 17:44] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:27, 12:58](2000 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:46, 06:46] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:45, 20:52](1976 MB) - -PASS -- COMPILE 's2swa_intel' [13:06, 13:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:35, 07:49](2185 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:17, 07:33](2195 MB) -PASS -- TEST 'cpld_restart_p8_intel' [04:57, 04:22](2004 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:35, 07:49](2216 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:27, 04:27](1748 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:00, 09:15](2546 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:19, 07:36](2185 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:08, 06:26](2104 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:34, 07:49](2192 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:43, 15:23](2977 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [07:52, 05:56](2923 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [13:10, 08:28](3815 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:35, 05:16](3644 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:27, 04:56](2154 MB) - -PASS -- COMPILE 's2sw_intel' [12:47, 12:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:30, 07:01](2026 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:44, 04:03](2085 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:08, 07:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:02, 07:13](2220 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:34, 06:34] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:24, 04:48](2061 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:54, 09:54] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:52, 04:10](2091 MB) - -PASS -- COMPILE 's2s_intel' [09:53, 09:53] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:35, 09:07](3109 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:24, 02:54](3090 MB) -PASS -- TEST 'cpld_restart_c48_intel' [01:52, 01:27](2514 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:09, 15:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:13, 07:24](2201 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:36, 15:36] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:19, 13:44](2049 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:55, 07:01](1392 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:02, 15:20](1956 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:18, 04:18] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:33, 21:50](2030 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:34, 08:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:07, 02:55](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [02:55, 02:28](1606 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [02:57, 02:32](1623 MB) -PASS -- TEST 'control_latlon_intel' [02:48, 02:28](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:02, 02:34](1607 MB) -PASS -- TEST 'control_c48_intel' [07:36, 07:11](1737 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:07, 05:52](862 MB) -PASS -- TEST 'control_c192_intel' [09:43, 09:02](1759 MB) -PASS -- TEST 'control_c384_intel' [10:20, 09:05](2043 MB) -PASS -- TEST 'control_c384gdas_intel' [08:23, 06:56](1513 MB) -PASS -- TEST 'control_stochy_intel' [01:44, 01:26](673 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:17, 00:53](529 MB) -PASS -- TEST 'control_lndp_intel' [01:35, 01:25](664 MB) -PASS -- TEST 'control_iovr4_intel' [02:20, 02:08](658 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:11](672 MB) -PASS -- TEST 'control_p8_intel' [03:19, 02:41](1905 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:34, 02:47](1909 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:29, 02:41](1906 MB) -PASS -- TEST 'control_restart_p8_intel' [02:12, 01:36](1164 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:20, 02:46](1892 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:05, 01:37](1214 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:20, 02:40](1913 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:19, 02:42](2003 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:02, 04:37](1910 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:22, 03:37](1982 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:21, 02:39](1914 MB) -PASS -- TEST 'merra2_thompson_intel' [03:39, 02:54](1913 MB) -PASS -- TEST 'regional_control_intel' [05:04, 04:46](1192 MB) -PASS -- TEST 'regional_restart_intel' [02:58, 02:41](1176 MB) -PASS -- TEST 'regional_decomp_intel' [05:20, 05:03](1194 MB) -PASS -- TEST 'regional_2threads_intel' [03:24, 03:05](1163 MB) -PASS -- TEST 'regional_noquilt_intel' [04:57, 04:36](1522 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:57, 04:39](1211 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:40](1204 MB) -PASS -- TEST 'regional_wofs_intel' [05:55, 05:36](2085 MB) - -PASS -- COMPILE 'rrfs_intel' [07:32, 07:32] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:26, 06:52](1246 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:03, 03:28](1409 MB) -PASS -- TEST 'rap_decomp_intel' [07:59, 07:18](1138 MB) -PASS -- TEST 'rap_2threads_intel' [07:05, 06:27](1378 MB) -PASS -- TEST 'rap_restart_intel' [04:14, 03:40](1143 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:30, 06:53](1210 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:02, 07:20](1146 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:14, 05:28](1209 MB) -PASS -- TEST 'hrrr_control_intel' [04:07, 03:26](1089 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:12, 03:30](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:57, 04:07](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:08, 01:51](1032 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:45, 07:01](1230 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:02, 07:47](2004 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:44, 07:32](2214 MB) - -PASS -- COMPILE 'csawmg_intel' [07:33, 07:33] -PASS -- TEST 'control_csawmg_intel' [05:46, 05:30](1066 MB) -PASS -- TEST 'control_ras_intel' [02:58, 02:49](839 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:41, 04:41] -PASS -- TEST 'control_csawmg_gnu' [07:14, 06:56](1070 MB) - -PASS -- COMPILE 'wam_intel' [07:31, 07:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [10:58, 10:07](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:34, 13:34] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:10, 02:32](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [04:36, 04:17](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:13, 05:12] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:38, 02:14](1649 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:34, 02:12](1636 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:08, 02:52](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [02:30, 02:22](851 MB) -PASS -- TEST 'control_csawmg_debug_intel' [03:50, 03:36](1168 MB) -PASS -- TEST 'control_ras_debug_intel' [02:36, 02:21](855 MB) -PASS -- TEST 'control_diag_debug_intel' [02:34, 02:15](1708 MB) -PASS -- TEST 'control_debug_p8_intel' [02:48, 02:29](1939 MB) -PASS -- TEST 'regional_debug_intel' [16:11, 15:52](1146 MB) -PASS -- TEST 'rap_control_debug_intel' [04:13, 04:04](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:07, 03:56](1229 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:09, 04:02](1240 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:13, 04:04](1237 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:09, 04:01](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [04:33, 04:19](1317 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:24, 04:12](1241 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:25, 04:12](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:26, 04:16](1230 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:06](1235 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:16, 04:05](1226 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:23, 04:12](1242 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [06:51, 06:38](1236 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:16, 04:05](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:11, 05:01](1239 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:14, 04:04](1241 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:50, 06:56](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:54, 04:53] -PASS -- TEST 'control_csawmg_debug_gnu' [02:10, 01:52](1056 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:03, 03:03] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [06:58, 06:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:56, 03:20](1270 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:03, 05:24](1169 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:40, 02:54](1040 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 05:03](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:42, 02:39](1040 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:58, 03:03](996 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:16, 04:25](1099 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:05, 01:37](946 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:28, 11:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:16, 01:47](1304 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:50, 01:05](1207 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:01, 01:22](1154 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:09, 08:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:21, 03:50](1097 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:41, 05:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:24, 04:13](1112 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:14, 04:02](1116 MB) -PASS -- TEST 'conus13km_debug_intel' [12:53, 12:18](1350 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:04, 12:33](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [07:28, 07:10](1263 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:44, 12:20](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:26, 03:25] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:10](1182 MB) - -PASS -- COMPILE 'hafsw_intel' [10:18, 10:18] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:27, 05:25](884 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:29, 05:07](1269 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:55, 05:46](955 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 14:06](995 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:13, 15:31](986 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 05:56](610 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:55, 06:52](625 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:57, 03:00](435 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 08:42](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 03:55](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:53, 03:59](620 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:23, 04:53](681 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:35, 01:10](456 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:08, 04:08] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:43, 11:52](654 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:26, 15:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 17:07](755 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:27, 16:23](850 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:16, 11:16] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:08, 10:21](792 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:36, 11:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:24, 05:33](942 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 05:53](935 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:36, 16:51](1342 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:19, 07:19] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:21, 02:13](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:34, 01:23](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:09](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:26, 02:17](1016 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:12, 02:06](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:25, 02:15](1129 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:23, 02:14](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:20, 02:13](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:02, 05:25](1162 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:42, 05:01](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:15, 02:10](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:11](2443 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:19, 03:13](2392 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:06, 03:06] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:19, 05:14](1070 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [05:40, 05:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:24, 02:13](1146 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [00:57, 00:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:11, 00:53](339 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:03, 00:49](584 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:30](568 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:07, 08:07] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:12, 03:28](2024 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:56, 07:56] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:51, 03:08](1992 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 09:10] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:40, 05:34](1906 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:16, 05:33](1905 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:25, 02:59](1165 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:00, 04:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:06, 05:06](1929 MB) - -PASS -- COMPILE 'atmw_intel' [08:57, 08:56] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:27, 01:40](1948 MB) - -PASS -- COMPILE 'atmaero_intel' [07:49, 07:49] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:32, 03:48](2017 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:50, 04:13](1806 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:51, 04:19](1822 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [02:50, 02:49] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:10, 16:54](4516 MB) - -PASS -- COMPILE 'atm_gnu' [04:01, 04:01] -PASS -- TEST 'control_c48_gnu' [14:36, 14:03](1567 MB) -PASS -- TEST 'control_stochy_gnu' [02:35, 02:15](732 MB) -PASS -- TEST 'control_ras_gnu' [04:03, 03:47](733 MB) -PASS -- TEST 'control_p8_gnu' [04:21, 03:37](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:17, 03:43](1760 MB) -PASS -- TEST 'control_flake_gnu' [04:50, 04:34](808 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:04, 05:04] -PASS -- TEST 'rap_control_gnu' [08:30, 07:50](1101 MB) -PASS -- TEST 'rap_decomp_gnu' [08:43, 08:00](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [08:05, 07:22](1122 MB) -PASS -- TEST 'rap_restart_gnu' [04:39, 04:05](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:30, 07:40](1096 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:21, 07:43](1088 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:31, 05:44](887 MB) -PASS -- TEST 'hrrr_control_gnu' [04:43, 04:02](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:49, 04:04](1141 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [08:04, 07:06](1034 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:47, 04:00](1073 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:38, 02:09](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:40, 02:09](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:30, 07:42](1095 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:21, 08:21] -PASS -- TEST 'control_diag_debug_gnu' [01:39, 01:20](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:00, 06:40](1121 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:28, 02:10](1104 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:13, 02:01](1098 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:12, 02:00](1106 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:32, 02:06](1102 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:30, 02:13](1274 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:37, 03:25](1102 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:10, 02:01](1105 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:09, 01:59](1100 MB) -PASS -- TEST 'control_ras_debug_gnu' [01:34, 01:24](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [01:40, 01:24](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [01:48, 01:28](1730 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:09, 02:01](1105 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [02:24, 02:13](1107 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:08, 03:23](1113 MB) - -PASS -- COMPILE 'wam_debug_gnu' [02:50, 02:50] -PASS -- TEST 'control_wam_debug_gnu' [05:28, 05:03](1573 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:36, 04:36] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:00, 07:22](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:41, 03:50](953 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:27, 06:50](998 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:28, 06:38](901 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:54, 03:59](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:12, 05:33](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:48, 02:16](857 MB) -PASS -- TEST 'conus13km_control_gnu' [03:17, 02:42](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:50, 01:18](1179 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:55, 01:31](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:39, 10:39] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:11, 04:31](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:52, 07:52] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:29, 02:07](978 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:02, 01:55](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:20, 05:51](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:23, 05:55](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [03:52, 03:26](1197 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:10, 05:45](1354 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:00, 08:00] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:17, 02:08](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 17:11] - -PASS -- COMPILE 's2s_gnu' [16:17, 16:17] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:34, 04:43](2718 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:41, 04:41] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:04, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:45, 25:50](3049 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:23, 04:23] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:42, 11:57](3039 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [14:19, 14:19] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:23, 02:15](768 MB) +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:19] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:03, 08:44](2134 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:15] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:55, 14:05](2003 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 15:15](2286 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:22, 07:32](1336 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:33, 15:34](1914 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:16, 18:31] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [20:27, 13:52](1996 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:14, 05:49] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:24, 21:03](1975 MB) + +PASS -- COMPILE 's2swa_intel' [11:22, 10:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:53](2197 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:17, 08:11](2185 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:44, 05:38](1977 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:48](2211 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:44, 05:20](1744 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 10:27](2558 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:57, 07:33](2192 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:35](2083 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:52, 07:39](2196 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [25:14, 17:37](2976 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 07:37](2936 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:09, 10:13](3796 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:09, 06:49](3643 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:12, 04:54](2156 MB) + +PASS -- COMPILE 's2sw_intel' [12:12, 11:20] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:10, 07:54](2027 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:29, 04:36](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:54] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:48, 08:04](2218 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:45] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 06:06](2051 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:15, 09:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:17](2085 MB) + +PASS -- COMPILE 's2s_intel' [09:13, 09:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:57, 07:02](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:48, 02:05](3085 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:36, 02:05](2513 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:21, 17:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:23, 08:32](2194 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:14, 15:39] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:53, 14:23](2051 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:10, 07:57](1364 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:35, 16:27](1960 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:48] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 22:45](2021 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:16, 09:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:36, 02:50](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:51, 02:25](1608 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:28, 02:33](1636 MB) +PASS -- TEST 'control_latlon_intel' [06:21, 02:29](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:11, 02:28](1610 MB) +PASS -- TEST 'control_c48_intel' [08:58, 07:19](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:39, 05:47](862 MB) +PASS -- TEST 'control_c192_intel' [11:01, 08:56](1759 MB) +PASS -- TEST 'control_c384_intel' [13:28, 09:37](2038 MB) +PASS -- TEST 'control_c384gdas_intel' [14:27, 07:28](1526 MB) +PASS -- TEST 'control_stochy_intel' [06:07, 01:39](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:46, 00:51](540 MB) +PASS -- TEST 'control_lndp_intel' [07:21, 01:38](675 MB) +PASS -- TEST 'control_iovr4_intel' [06:59, 02:04](667 MB) +PASS -- TEST 'control_iovr5_intel' [06:58, 02:09](659 MB) +PASS -- TEST 'control_p8_intel' [10:58, 04:01](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:24, 03:35](1907 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:58, 03:37](1908 MB) +PASS -- TEST 'control_restart_p8_intel' [08:12, 02:42](1163 MB) +PASS -- TEST 'control_noqr_p8_intel' [11:49, 03:34](1894 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:17, 02:10](1222 MB) +PASS -- TEST 'control_decomp_p8_intel' [11:29, 03:43](1896 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:35, 03:31](1999 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:14, 05:24](1915 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:56, 04:38](1981 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:30](1913 MB) +PASS -- TEST 'merra2_thompson_intel' [12:42, 03:59](1913 MB) +PASS -- TEST 'regional_control_intel' [12:30, 05:37](1203 MB) +PASS -- TEST 'regional_restart_intel' [06:56, 03:29](1180 MB) +PASS -- TEST 'regional_decomp_intel' [12:54, 06:00](1201 MB) +PASS -- TEST 'regional_2threads_intel' [07:56, 04:26](1157 MB) +PASS -- TEST 'regional_noquilt_intel' [11:50, 06:02](1519 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [11:53, 05:34](1202 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:00, 05:43](1205 MB) +PASS -- TEST 'regional_wofs_intel' [10:55, 05:42](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [08:21, 08:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:00, 06:59](1234 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:26, 03:45](1416 MB) +PASS -- TEST 'rap_decomp_intel' [16:27, 07:22](1150 MB) +PASS -- TEST 'rap_2threads_intel' [14:00, 06:32](1375 MB) +PASS -- TEST 'rap_restart_intel' [09:31, 03:40](1161 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:24, 06:57](1206 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:31, 07:27](1158 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:31, 05:19](1214 MB) +PASS -- TEST 'hrrr_control_intel' [11:20, 03:34](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:31](1041 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 03:08](1127 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:41, 01:55](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:34, 07:09](1196 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:21, 07:48](2006 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:23, 07:29](2193 MB) + +PASS -- COMPILE 'csawmg_intel' [08:15, 07:26] +PASS -- TEST 'control_csawmg_intel' [13:05, 06:42](1056 MB) +PASS -- TEST 'control_ras_intel' [09:44, 02:54](821 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:18, 04:43] +PASS -- TEST 'control_csawmg_gnu' [16:00, 07:39](1075 MB) + +PASS -- COMPILE 'wam_intel' [09:14, 07:23] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:04, 09:47](1672 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:09, 03:16](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [10:06, 05:04](1204 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:16, 05:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:25, 02:20](1637 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:04, 02:11](1635 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:32, 02:45](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:38, 02:18](845 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 04:26](1162 MB) +PASS -- TEST 'control_ras_debug_intel' [05:27, 02:20](859 MB) +PASS -- TEST 'control_diag_debug_intel' [06:51, 02:19](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [06:56, 03:13](1938 MB) +PASS -- TEST 'regional_debug_intel' [17:52, 15:43](1163 MB) +PASS -- TEST 'rap_control_debug_intel' [05:34, 04:08](1229 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:45, 03:56](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:47, 04:01](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:37, 04:01](1230 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:03](1239 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:49, 04:27](1313 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:09](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:09](1249 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:03](1242 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 04:07](1231 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:32, 03:56](1236 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:11](1238 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:32, 06:38](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 03:58](1230 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 04:52](1231 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:07](1235 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 07:02](1231 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:28, 04:45] +PASS -- TEST 'control_csawmg_debug_gnu' [06:00, 03:35](1060 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:15, 03:18] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:30, 07:32] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:33](1272 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:03, 05:21](1177 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:11, 02:51](1014 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:03](1290 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:19](1045 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:16, 03:05](997 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 04:07](1117 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:46, 01:32](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 12:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:12, 01:43](1298 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:03, 00:51](1208 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:46, 01:02](1155 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 07:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:24, 03:44](1080 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 03:20] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:09](1103 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:59, 04:04](1110 MB) +PASS -- TEST 'conus13km_debug_intel' [13:59, 12:13](1374 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [14:43, 12:24](1003 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 07:06](1262 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:05, 12:04](1419 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:37, 02:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:16](1165 MB) + +PASS -- COMPILE 'hafsw_intel' [11:16, 09:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:15](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 05:05](1271 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:58, 06:38](927 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 14:39](999 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:30, 15:36](1160 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:32, 05:31](606 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:07, 07:12](620 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:00, 02:37](440 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:29, 07:45](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:55](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 03:43](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:37, 05:02](679 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:05, 01:05](459 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:23, 04:12] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 11:44](646 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:12, 15:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:45, 17:04](724 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:26, 16:35](854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:15, 10:18] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:34, 10:19](831 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:17, 10:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:48, 05:42](943 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 05:42](935 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:30](1339 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:15, 07:22] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:35, 02:17](1151 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:21](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:09](1006 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:10](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:11](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:16](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:26, 02:24](1141 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:21](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 05:06](1162 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:29, 04:52](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:27, 02:24](1167 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:27](2329 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:49, 03:38](2384 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 02:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](1067 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:46] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:28](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:15, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 00:51](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:53, 00:50](582 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:55, 00:33](569 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:19, 08:07] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:22, 04:35](2023 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:16, 07:14] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:03, 04:15](1985 MB) + +PASS -- COMPILE 'atml_intel' [14:14, 09:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:07, 06:42](1907 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:23, 06:59](1902 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 03:25](1148 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:14, 04:22] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:15, 06:18](1933 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 09:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:50, 02:57](1944 MB) + +PASS -- COMPILE 'atmaero_intel' [11:13, 08:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:38, 04:52](2033 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:48, 04:40](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:17, 04:37](1828 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:36] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:15, 17:38](4635 MB) + +PASS -- COMPILE 'atm_gnu' [12:24, 07:43] +PASS -- TEST 'control_c48_gnu' [12:48, 10:00](1575 MB) +PASS -- TEST 'control_stochy_gnu' [05:02, 03:09](733 MB) +PASS -- TEST 'control_ras_gnu' [05:35, 04:35](737 MB) +PASS -- TEST 'control_p8_gnu' [07:33, 05:17](1730 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:16, 04:56](1760 MB) +PASS -- TEST 'control_flake_gnu' [08:17, 05:20](812 MB) + +PASS -- COMPILE 'rrfs_gnu' [10:11, 07:14] +PASS -- TEST 'rap_control_gnu' [10:03, 08:05](1084 MB) +PASS -- TEST 'rap_decomp_gnu' [10:00, 08:16](1085 MB) +PASS -- TEST 'rap_2threads_gnu' [10:10, 07:36](1148 MB) +PASS -- TEST 'rap_restart_gnu' [05:36, 03:55](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:59, 08:51](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:29, 08:24](1089 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:22, 05:45](885 MB) +PASS -- TEST 'hrrr_control_gnu' [07:30, 05:18](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:15](1136 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 04:14](1046 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:33, 04:17](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:22](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:47, 02:02](937 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:02, 08:10](1098 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:13, 12:10] +PASS -- TEST 'control_diag_debug_gnu' [02:59, 01:30](1631 MB) +PASS -- TEST 'regional_debug_gnu' [07:55, 06:55](1116 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:31, 02:25](1102 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:07](1093 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:57, 02:26](1103 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:34, 02:29](1101 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:53, 02:03](1281 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:30, 03:43](1104 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 01:59](1106 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:33, 04:17](1097 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:37, 01:15](728 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:23, 02:43](730 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:23](1726 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:33, 01:59](1102 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 02:08](1109 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:16](1107 MB) + +PASS -- COMPILE 'wam_debug_gnu' [07:13, 05:32] +PASS -- TEST 'control_wam_debug_gnu' [07:48, 05:39](1575 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:12, 07:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:48, 07:14](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:15, 04:37](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 06:45](971 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:56, 03:28](895 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:52, 03:50](966 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:31](859 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:05](858 MB) +PASS -- TEST 'conus13km_control_gnu' [04:39, 03:07](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:12, 01:04](1174 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:27](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 15:24] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:01, 04:21](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [16:17, 11:59] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 01:58](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:47, 02:27](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:04, 06:10](1286 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:51](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:00, 03:58](1198 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:41, 05:45](1360 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:18, 12:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:08, 02:47](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [21:16, 20:20] + +PASS -- COMPILE 's2s_gnu' [18:20, 17:35] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:57, 05:37](3092 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [13:12, 11:39] + +PASS -- COMPILE 's2sw_pdlib_gnu' [22:13, 19:55] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:33, 26:05](3052 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:14, 09:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 13:10](2914 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:00] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:51, 03:01](766 MB) SYNOPSIS: -Starting Date/Time: 20240712 12:36:12 -Ending Date/Time: 20240712 16:41:27 -Total Time: 04h:06m:24s +Starting Date/Time: 20240717 08:37:30 +Ending Date/Time: 20240717 10:30:01 +Total Time: 01h:53m:28s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index b97bfcfab6..f915017cff 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -cc70b77c844682f3daeb33c8b699f162c48c2527 +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/hotfix/acs-hash) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,253 +36,253 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Zachary.Shrader/RT_RUNDIRS/Zachary.Shrader/FV3_RT/rt_2214458 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2732353 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:55] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:54, 07:56](2016 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:16, 49:00] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [35:20, 21:52](1896 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:25, 23:08](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:49, 11:17](1125 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:51, 24:58](1849 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:16, 53:13] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [29:53, 21:27](1884 MB) - -PASS -- COMPILE 's2swa_intel' [41:14, 40:55] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:31, 08:17](2044 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [26:54, 08:22](2056 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:43, 05:07](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:36, 08:14](2065 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:59, 04:59](1740 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:50, 08:15](2310 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [23:30, 08:24](2035 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:29, 07:25](2007 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:04, 08:15](2049 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [26:36, 07:49](2036 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:13] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:42, 06:46](1910 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:58, 06:56](1956 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [28:50, 11:29](2073 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:26] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:30, 08:03](1933 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:14, 34:51] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:59, 06:18](1966 MB) - -PASS -- COMPILE 's2s_intel' [36:14, 35:09] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:36](3072 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:11, 04:01](3054 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:00, 02:24](2484 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:19, 34:03] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:03, 07:35](2061 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [58:15, 47:59] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:47, 21:55](1917 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:55, 12:38](1138 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:02, 25:31](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:11, 05:31] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:31, 32:51](1937 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:13, 37:39] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [06:11, 04:42](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:59, 04:02](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:03, 04:19](1563 MB) -PASS -- TEST 'control_latlon_intel' [06:54, 03:58](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:03, 04:10](1545 MB) -PASS -- TEST 'control_c48_intel' [13:34, 12:00](1725 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:21, 10:16](850 MB) -PASS -- TEST 'control_c192_intel' [18:10, 14:22](1679 MB) -PASS -- TEST 'control_c384_intel' [22:38, 17:55](1817 MB) -PASS -- TEST 'control_c384gdas_intel' [19:38, 13:28](1021 MB) -PASS -- TEST 'control_stochy_intel' [03:46, 03:02](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 01:24](440 MB) -PASS -- TEST 'control_lndp_intel' [03:46, 02:49](604 MB) -PASS -- TEST 'control_iovr4_intel' [04:51, 04:02](608 MB) -PASS -- TEST 'control_iovr5_intel' [04:53, 04:03](601 MB) -PASS -- TEST 'control_p8_intel' [08:45, 04:44](1830 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:32, 04:56](1847 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:43, 04:44](1846 MB) -PASS -- TEST 'control_restart_p8_intel' [04:17, 02:53](1059 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:53, 04:44](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:25, 02:59](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:30, 04:56](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:31, 04:41](1941 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:04, 07:55](1850 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:10, 06:01](1916 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:37, 04:51](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [08:55, 05:07](1849 MB) -PASS -- TEST 'regional_control_intel' [10:42, 08:31](1017 MB) -PASS -- TEST 'regional_restart_intel' [05:48, 04:24](1015 MB) -PASS -- TEST 'regional_decomp_intel' [10:38, 08:53](1013 MB) -PASS -- TEST 'regional_2threads_intel' [08:42, 06:09](1004 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:19, 08:40](1009 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:38, 08:13](1014 MB) - -PASS -- COMPILE 'rrfs_intel' [35:15, 34:55] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:11, 10:08](986 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:18, 05:46](1215 MB) -PASS -- TEST 'rap_decomp_intel' [12:12, 10:48](983 MB) -PASS -- TEST 'rap_2threads_intel' [12:02, 09:40](1093 MB) -PASS -- TEST 'rap_restart_intel' [07:37, 05:17](996 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:19, 10:01](993 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 10:52](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 07:36](1000 MB) -PASS -- TEST 'hrrr_control_intel' [07:10, 05:12](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:03, 05:27](984 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:06, 04:52](1057 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:50](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:40, 10:03](990 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:27, 12:18](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:31, 12:15](1926 MB) - -PASS -- COMPILE 'csawmg_intel' [33:15, 32:23] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:42, 09:00](962 MB) -PASS -- TEST 'control_ras_intel' [05:26, 04:27](667 MB) - -PASS -- COMPILE 'wam_intel' [33:15, 32:18] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:04, 14:54](1620 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:16, 52:19] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:32, 04:21](1818 MB) -PASS -- TEST 'regional_control_faster_intel' [08:47, 07:24](1013 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 07:15] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:08, 03:23](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:10, 03:27](1553 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 03:51](775 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:28](775 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:01, 06:02](1097 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 03:31](788 MB) -PASS -- TEST 'control_diag_debug_intel' [05:08, 03:30](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [06:15, 04:21](1835 MB) -PASS -- TEST 'regional_debug_intel' [25:05, 23:30](1046 MB) -PASS -- TEST 'rap_control_debug_intel' [07:34, 06:16](1169 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:35, 06:13](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:35, 06:19](1165 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:19](1168 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 06:21](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:46, 06:35](1251 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:30](1136 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 06:18](1169 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:31, 06:17](1172 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:11](1161 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:27, 06:08](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 06:10](1171 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:29, 10:10](1162 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 06:05](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:30](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:27, 06:09](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:40, 10:43](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:10, 04:44] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:04, 16:53](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:29] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:15, 05:32](1077 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:26, 09:27](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [15:18, 04:32](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:19, 08:04](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:18, 04:07](912 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [15:18, 04:47](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:09, 06:21](908 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:26](855 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:17, 48:37] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:55](1108 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:47, 01:22](1057 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:46, 01:43](1024 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:14, 30:54] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:06, 05:30](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:50] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 06:07](1049 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:00](1045 MB) -PASS -- TEST 'conus13km_debug_intel' [20:02, 18:33](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:02, 18:42](869 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:54, 10:53](1108 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:55, 18:33](1230 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 04:18] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [14:30, 06:18](1089 MB) - -PASS -- COMPILE 'hafsw_intel' [38:16, 38:03] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:38, 07:12](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:41, 06:40](1084 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:50, 09:47](771 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:39](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:57, 18:33](816 MB) -PASS -- TEST 'gnv1_nested_intel' [16:07, 07:52](1682 MB) - -PASS -- COMPILE 'hafs_all_intel' [36:17, 34:09] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:43, 09:09](770 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:41, 09:43](757 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 07:16] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:58](1058 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:13](1022 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:26, 03:34](924 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:38](913 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:37](928 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:27, 03:38](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:40](1055 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:33](919 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:26, 07:57](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 07:54](838 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:38](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 05:06](2395 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 05:08](2327 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:39] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:28, 08:00](1012 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:29] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:50](1077 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:51] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:39](234 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:32, 01:21](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:51](255 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 33:58] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:18, 05:40](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [28:14, 26:41] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:34, 05:29](1887 MB) - -PASS -- COMPILE 'atml_intel' [38:16, 37:20] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:45, 09:24](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 08:52](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 04:58](1071 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:43, 08:32](1886 MB) - -PASS -- COMPILE 'atmw_intel' [34:15, 33:54] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:29, 03:05](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [33:16, 33:10] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:25, 06:10](1945 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:23, 06:28](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:12, 06:39](1728 MB) +PASS -- COMPILE 's2swa_32bit_intel' [42:17, 40:48] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:16, 08:54](2009 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:18, 48:21] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:36, 22:10](1890 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:19, 23:46](1980 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 11:19](1112 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:32, 25:39](1842 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:21, 48:49] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:11, 21:06](1891 MB) + +PASS -- COMPILE 's2swa_intel' [43:17, 41:35] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:22, 09:18](2064 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 09:20](2053 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:15, 05:34](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:20](2077 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:12, 05:53](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:21, 09:08](2310 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 09:02](2038 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:58, 08:05](2001 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:17](2057 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:52](2035 MB) + +PASS -- COMPILE 's2sw_intel' [51:19, 39:50] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 07:17](1906 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 07:25](1958 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:18] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:37, 11:26](2083 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:46] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 08:14](1934 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:14, 34:35] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 07:00](1977 MB) + +PASS -- COMPILE 's2s_intel' [35:16, 34:45] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:59](3067 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [06:08, 04:13](3056 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:25](2489 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:27, 34:32] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:09, 08:27](2043 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 47:14] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:40, 22:44](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:39, 11:33](1124 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:45, 25:08](1884 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:43] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:19, 33:06](1934 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:35] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [08:40, 04:50](654 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [31:30, 04:11](1554 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:32, 04:42](1554 MB) +PASS -- TEST 'control_latlon_intel' [31:25, 04:09](1555 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 04:17](1555 MB) +PASS -- TEST 'control_c48_intel' [13:31, 12:05](1732 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:56, 10:24](850 MB) +PASS -- TEST 'control_c192_intel' [38:40, 15:13](1686 MB) +PASS -- TEST 'control_c384_intel' [28:51, 19:05](1824 MB) +PASS -- TEST 'control_c384gdas_intel' [39:57, 14:04](1026 MB) +PASS -- TEST 'control_stochy_intel' [03:40, 02:28](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [26:01, 01:29](438 MB) +PASS -- TEST 'control_lndp_intel' [03:40, 02:27](610 MB) +PASS -- TEST 'control_iovr4_intel' [04:37, 03:40](580 MB) +PASS -- TEST 'control_iovr5_intel' [04:37, 03:50](600 MB) +PASS -- TEST 'control_p8_intel' [32:59, 04:52](1843 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:13, 04:52](1845 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [11:11, 04:55](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [04:15, 02:56](1058 MB) +PASS -- TEST 'control_noqr_p8_intel' [33:08, 05:05](1836 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:46](1079 MB) +PASS -- TEST 'control_decomp_p8_intel' [33:50, 05:06](1840 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:01, 05:37](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [32:29, 08:22](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [31:07, 06:14](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [30:04, 05:24](1844 MB) +PASS -- TEST 'merra2_thompson_intel' [30:22, 05:53](1847 MB) +PASS -- TEST 'regional_control_intel' [10:11, 08:44](1013 MB) +PASS -- TEST 'regional_restart_intel' [06:48, 04:56](1017 MB) +PASS -- TEST 'regional_decomp_intel' [11:12, 09:08](1016 MB) +PASS -- TEST 'regional_2threads_intel' [08:12, 06:34](1002 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:21, 08:26](1019 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:11, 08:46](1012 MB) + +PASS -- COMPILE 'rrfs_intel' [35:19, 35:01] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [25:03, 10:20](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:20, 05:58](1214 MB) +PASS -- TEST 'rap_decomp_intel' [25:03, 10:54](976 MB) +PASS -- TEST 'rap_2threads_intel' [24:30, 10:00](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:37, 05:36](996 MB) +PASS -- TEST 'rap_sfcdiff_intel' [25:13, 10:20](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:13, 10:57](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 07:53](997 MB) +PASS -- TEST 'hrrr_control_intel' [20:16, 05:15](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [20:16, 05:32](986 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [20:16, 04:58](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:33, 02:53](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:45, 10:14](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [25:40, 12:43](1948 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:38, 12:26](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [32:19, 32:14] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [25:54, 09:03](962 MB) +PASS -- TEST 'control_ras_intel' [21:35, 04:51](664 MB) + +PASS -- COMPILE 'wam_intel' [33:17, 32:14] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [15:58, 14:37](1625 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [54:21, 53:07] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:41, 04:10](1846 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:33](1014 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:13, 06:29] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 03:27](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:40](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:50](771 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 03:26](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:58](1090 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 03:40](783 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 03:27](1632 MB) +PASS -- TEST 'control_debug_p8_intel' [08:56, 06:53](1872 MB) +PASS -- TEST 'regional_debug_intel' [23:48, 22:46](1042 MB) +PASS -- TEST 'rap_control_debug_intel' [07:32, 06:20](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:32, 06:06](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 06:14](1166 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:17](1165 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:13](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:51, 06:37](1240 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:24](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 06:24](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:30, 06:23](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:15](1158 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:28, 06:13](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1163 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:10](1166 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:10](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:31](1169 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:14](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:33, 10:40](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [18:13, 04:47] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [20:12, 16:55](1646 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:24] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:41](1074 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:07, 08:53](899 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:53, 22:42](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 08:39](956 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:49, 04:17](916 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:10, 04:56](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:43](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:50, 02:37](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:16, 48:22] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:17, 03:08](1111 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:55, 01:27](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:42](1029 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:13, 30:59] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:55](913 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:03](1044 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:57](1041 MB) +PASS -- TEST 'conus13km_debug_intel' [20:09, 18:36](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:08, 18:41](873 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:46](1098 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:03, 18:40](1225 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:12](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [38:16, 37:51] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:33, 07:21](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:42, 07:13](1082 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:44, 09:28](772 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:37, 16:44](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:51, 18:23](816 MB) +PASS -- TEST 'gnv1_nested_intel' [17:03, 07:20](1681 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:16, 33:26] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:31, 08:55](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:36, 08:56](754 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:31] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1059 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:18](1033 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 03:46](922 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:27, 03:47](927 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 03:42](921 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 03:47](1056 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:47](1062 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](927 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:52, 07:56](893 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 07:49](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:25, 03:34](1065 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:28, 05:15](2400 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 05:07](2339 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:43] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 08:01](1010 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:25] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:21, 03:42](1064 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:50] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:41, 02:14](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:31, 01:29](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 01:06](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:56] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:32](1906 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:19, 33:08] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:36, 05:11](1890 MB) + +PASS -- COMPILE 'atml_intel' [40:13, 37:16] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:04, 11:36](1857 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 11:03](1866 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:04, 17:03](1072 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 05:55] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:44, 08:08](1884 MB) + +PASS -- COMPILE 'atmw_intel' [41:17, 34:35] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:01, 03:15](1843 MB) + +PASS -- COMPILE 'atmaero_intel' [34:14, 33:16] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:45, 07:10](1932 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:38, 07:34](1711 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:21, 07:38](1742 MB) SYNOPSIS: -Starting Date/Time: 20240714 18:58:23 -Ending Date/Time: 20240714 22:58:27 -Total Time: 04h:00m:45s +Starting Date/Time: 20240716 21:47:09 +Ending Date/Time: 20240717 02:06:24 +Total Time: 04h:19m:54s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8d0babe17c..cc666b3552 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: -452cc402e677436c64cb2139db02568551062088 +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,8 +11,8 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (heads/hotfix/acs-hash) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,285 +36,378 @@ 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-20240624 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2453183 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:12, 16:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:48, 14:46](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:12, 21:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:41, 18:08](1973 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 19:05](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:16, 09:01](1215 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:43, 20:27](1878 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:12, 21:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:41, 17:48](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:54] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:42, 27:03](1941 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 16:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:43, 14:21](2138 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:52, 14:23](2133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:01, 08:00](1818 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:43, 14:21](2170 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:01, 08:07](1713 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:47, 13:07](2435 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:43, 14:31](2128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:47, 12:20](2042 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:55, 14:16](2148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:47, 16:14](2724 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:10, 08:52](2730 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:49, 11:39](3658 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:03, 07:11](3498 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:38, 06:02](2120 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:36, 13:48](1990 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:44, 04:46](2055 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:42] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:56](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:55] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:14, 06:11](2013 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:18] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:35](2054 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:03, 09:38](3100 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:00, 03:05](3077 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:02, 02:00](2521 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:11, 23:48] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:38, 15:00](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:11, 21:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:21, 18:10](1997 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:33, 09:10](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:21, 20:17](1915 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:43] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:14, 28:42](1984 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:41](691 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:46, 03:07](1585 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:14](1593 MB) -PASS -- TEST 'control_latlon_intel' [04:43, 03:12](1589 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:49, 03:13](1592 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:27](1738 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:36, 07:59](857 MB) -PASS -- TEST 'control_c192_intel' [12:02, 11:09](1736 MB) -PASS -- TEST 'control_c384_intel' [14:55, 12:13](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [12:45, 09:45](1357 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:51](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:47, 01:11](474 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:47](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:43](643 MB) -PASS -- TEST 'control_iovr5_intel' [03:31, 02:46](642 MB) -PASS -- TEST 'control_p8_intel' [05:20, 03:38](1892 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:19, 03:32](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:33, 03:20](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [03:15, 01:59](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:23, 03:24](1878 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:27, 02:07](1136 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:33](1870 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:41](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:52, 05:56](1881 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:28, 04:49](1951 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:23, 03:28](1896 MB) -PASS -- TEST 'merra2_thompson_intel' [05:41, 03:45](1897 MB) -PASS -- TEST 'regional_control_intel' [07:42, 06:31](1090 MB) -PASS -- TEST 'regional_restart_intel' [04:49, 03:29](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 06:53](1078 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1083 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 06:15](1390 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:42, 06:15](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 06:30](1091 MB) -PASS -- TEST 'regional_wofs_intel' [08:41, 07:45](1907 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:58] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:24, 08:15](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:04, 05:11](1306 MB) -PASS -- TEST 'rap_decomp_intel' [10:15, 08:30](1026 MB) -PASS -- TEST 'rap_2threads_intel' [09:57, 08:18](1160 MB) -PASS -- TEST 'rap_restart_intel' [06:40, 04:20](1043 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:10, 08:16](1061 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:00, 08:32](1021 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:36, 06:15](1078 MB) -PASS -- TEST 'hrrr_control_intel' [06:03, 04:19](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 04:25](1017 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:05](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:25](953 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:21, 08:07](1043 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:32, 09:43](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:24](2030 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:19] -PASS -- TEST 'control_csawmg_intel' [07:39, 06:35](1021 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:28](716 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:41, 12:12](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:22](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 06:03](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 07:48] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:45](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:57, 02:48](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:10](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:49](818 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:48, 04:25](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:52](833 MB) -PASS -- TEST 'control_diag_debug_intel' [03:54, 02:45](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 03:11](1911 MB) -PASS -- TEST 'regional_debug_intel' [18:47, 17:35](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [05:28, 04:56](1211 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:53](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:59](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 05:00](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:30, 04:54](1215 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:39, 05:07](1297 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:05](1210 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:03](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:04](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:01](1214 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:23, 04:51](1208 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:54](1207 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:29, 08:02](1210 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:28, 04:57](1211 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:31, 05:54](1217 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:57](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:33](1217 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:40](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:10, 11:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:05, 04:56](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:01, 07:12](995 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:54, 03:46](924 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:16, 07:07](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:20, 03:35](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:15, 03:50](903 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 05:15](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 02:07](878 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:08, 02:40](1171 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:49, 01:12](1130 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:32](1089 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:51, 04:32](974 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 05:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:27, 04:54](1086 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:48](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:57, 14:27](1247 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 14:14](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:17](1183 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [14:51, 14:11](1314 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:29, 05:03](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:56] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:05](753 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 06:29](1138 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:34](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:16, 24:51](874 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 29:00](895 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:10, 07:16](513 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:40, 08:32](522 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:28](381 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:26, 09:36](491 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:57, 04:50](538 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 04:30](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 05:48](595 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:51](407 MB) -PASS -- TEST 'gnv1_nested_intel' [07:09, 04:20](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:38] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 13:18](602 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:00, 12:49](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:28, 12:53](828 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:09, 08:49](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:11, 12:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:18, 07:39](831 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:15, 07:34](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:24](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:10, 10:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:58](1149 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:54](1092 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:50](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:20, 02:59](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:54](1014 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 03:10](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 03:00](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:55](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:26](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:04, 06:28](1018 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:54](1137 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:18](2384 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:26](2443 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 06:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:30](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:02](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:58](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:36](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:29] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:10, 04:08](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:10, 11:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:53](1961 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 13:00] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:30, 04:46](1867 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:28, 04:49](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:43](1082 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:30] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:54](1910 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 12:09] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:16, 02:12](1923 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:51] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:11, 04:36](2001 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:10, 05:16](1778 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:20](1790 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:05] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 21:11](4552 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:52, 24:11](2085 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:38, 21:27](1964 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:55, 24:02](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [16:43, 11:37](1210 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:25, 24:38](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:13, 22:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:57, 21:59](1959 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 10:13] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:23, 28:28](1943 MB) + +PASS -- COMPILE 's2swa_intel' [20:11, 19:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [27:07, 24:09](2145 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:37, 24:26](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:25, 10:50](1817 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [28:16, 25:05](2172 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:53, 11:20](1712 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:50, 23:45](2433 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:50, 23:59](2127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [26:50, 23:42](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:55, 24:03](2137 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [30:00, 22:56](2736 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:36, 27:04](3657 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:23, 27:56](3505 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [22:58, 19:27](2110 MB) + +PASS -- COMPILE 's2sw_intel' [19:15, 18:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [27:40, 24:17](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:47, 22:08](2047 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:10, 10:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:30, 14:59](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:00, 09:14](2009 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:00] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:29, 18:45](2049 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:33] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:47, 12:33](3103 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:09, 07:16](3079 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:21, 04:24](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:19, 26:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [23:13, 19:55](2150 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:22, 21:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:36, 23:33](1999 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:22, 13:54](1254 MB) +FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:13, 08:46] ( 1560 warnings 2000 remarks ) +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:17, 15:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [10:39, 08:12](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:53, 06:49](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:47, 06:45](1601 MB) +PASS -- TEST 'control_latlon_intel' [09:41, 06:12](1595 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:43, 07:17](1595 MB) +PASS -- TEST 'control_c48_intel' [13:58, 10:47](1744 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:43, 10:03](861 MB) +PASS -- TEST 'control_c192_intel' [20:36, 16:56](1735 MB) +PASS -- TEST 'control_c384_intel' [28:36, 22:20](2010 MB) +PASS -- TEST 'control_c384gdas_intel' [21:55, 16:51](1355 MB) +PASS -- TEST 'control_stochy_intel' [04:58, 03:11](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:45](478 MB) +PASS -- TEST 'control_lndp_intel' [04:47, 03:09](646 MB) +PASS -- TEST 'control_iovr4_intel' [06:03, 04:54](638 MB) +PASS -- TEST 'control_iovr5_intel' [06:00, 05:09](644 MB) +PASS -- TEST 'control_p8_intel' [09:02, 06:16](1889 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:42, 06:02](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 06:21](1892 MB) +PASS -- TEST 'control_restart_p8_intel' [06:11, 03:36](1097 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:21, 05:14](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:49, 02:58](1131 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:50, 05:03](1886 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:03, 05:26](1969 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:24, 09:20](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:48, 06:15](1954 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:27, 05:17](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [09:55, 06:11](1900 MB) +PASS -- TEST 'regional_control_intel' [14:23, 12:48](1088 MB) +PASS -- TEST 'regional_restart_intel' [09:14, 07:45](1084 MB) +PASS -- TEST 'regional_decomp_intel' [15:33, 13:59](1080 MB) +PASS -- TEST 'regional_2threads_intel' [13:21, 11:40](1082 MB) +PASS -- TEST 'regional_noquilt_intel' [13:31, 11:52](1386 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:15, 13:56](1093 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:59, 12:47](1086 MB) +PASS -- TEST 'regional_wofs_intel' [16:35, 14:50](1906 MB) + +PASS -- COMPILE 'rrfs_intel' [16:21, 15:11] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:57, 13:46](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:41, 07:14](1305 MB) +PASS -- TEST 'rap_decomp_intel' [15:57, 13:44](1020 MB) +PASS -- TEST 'rap_2threads_intel' [15:24, 13:05](1165 MB) +PASS -- TEST 'rap_restart_intel' [12:37, 09:50](1048 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:19, 13:48](1063 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:23, 15:35](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [19:12, 15:31](1076 MB) +PASS -- TEST 'hrrr_control_intel' [09:21, 06:34](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:28, 06:46](1017 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:19, 06:58](1100 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:10, 03:55](955 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:10, 14:03](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:06, 17:15](1987 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:52, 16:10](2030 MB) + +PASS -- COMPILE 'csawmg_intel' [14:12, 13:57] +PASS -- TEST 'control_csawmg_intel' [14:49, 12:39](1027 MB) +PASS -- TEST 'control_ras_intel' [08:49, 07:25](722 MB) + +PASS -- COMPILE 'wam_intel' [15:12, 14:42] ( 1 remarks ) +FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:16, 20:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [09:17, 05:14](1886 MB) +FAILED: TEST TIMED OUT -- TEST 'regional_control_faster_intel' [, ]( MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:12] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 04:10](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 03:28](1619 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:49, 03:52](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:49, 03:32](823 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:23, 05:03](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [04:47, 03:58](831 MB) +PASS -- TEST 'control_diag_debug_intel' [06:34, 04:09](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [05:20, 03:52](1914 MB) +PASS -- TEST 'regional_debug_intel' [25:10, 23:11](1091 MB) +PASS -- TEST 'rap_control_debug_intel' [07:17, 05:59](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:13, 06:06](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 06:24](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 06:11](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:46, 06:02](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:11, 07:44](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:48, 06:58](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:50, 06:22](1216 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:27, 06:39](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:50, 06:46](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:29, 07:03](1211 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 07:00](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 10:37](1209 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 06:46](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:42](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:50, 06:58](1207 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:39, 10:27](1208 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 07:53] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:13, 14:30](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:46, 11:17](1164 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:35, 21:16](1010 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:59, 10:26](930 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [27:53, 25:12](1078 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:05, 11:14](954 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:52, 10:16](906 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:38, 05:20](982 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:12, 09:20](876 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:12, 20:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:03, 05:48](1182 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:04, 04:42](1132 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:22, 05:04](1080 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 13:35] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:27, 13:59](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:14, 06:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:15](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:02, 05:35](1087 MB) +PASS -- TEST 'conus13km_debug_intel' [18:45, 16:13](1248 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:18](943 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [14:09, 12:56](1176 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:06, 15:57](1311 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 07:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:06, 06:25](1144 MB) + +PASS -- COMPILE 'hafsw_intel' [16:10, 15:27] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [23:29, 21:46](762 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:54, 22:12](1131 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:38, 23:11](834 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:40, 28:39](870 MB) +FAILED: TEST TIMED OUT -- TEST 'hafs_regional_atm_ocn_wav_intel' [, ]( MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:32, 22:31](512 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:54, 22:45](520 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:32, 18:22](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:04, 21:37](494 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:16, 17:11](538 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:56, 17:04](542 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:42, 13:03](599 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:04, 11:24](407 MB) +PASS -- TEST 'gnv1_nested_intel' [14:19, 10:09](1733 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:10, 08:28] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:33, 16:46](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:13, 24:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:58, 16:39](660 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:45, 17:20](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 16:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:21, 13:41](725 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:13, 16:15] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:08, 12:13](837 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:39, 11:42](817 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 17:44](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:27] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:45, 06:20](1150 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:59](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:42, 05:40](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:46, 05:30](1013 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:43, 05:14](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 04:01](1139 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 03:10](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:51](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:40](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:29](999 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:56](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 04:19](2382 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 04:21](2439 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:13, 06:03] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:33](1062 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 09:21] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 03:06](1143 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:35] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 01:00](320 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:36](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:48] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:09](1976 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:20, 04:04](1964 MB) + +PASS -- COMPILE 'atml_intel' [15:19, 15:05] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 05:01](1875 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:43, 04:55](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:57](1069 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:13, 08:50] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:00](1909 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 13:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 02:13](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [17:11, 16:40] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:30, 04:37](1998 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:27, 05:20](1776 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:25](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:12, 08:29] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:13, 25:57](4555 MB) SYNOPSIS: -Starting Date/Time: 20240712 15:10:18 -Ending Date/Time: 20240712 16:41:44 -Total Time: 01h:32m:12s +Starting Date/Time: 20240717 08:36:40 +Ending Date/Time: 20240717 10:51:22 +Total Time: 02h:15m:24s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 179/185 +Failed Tests: +* TEST cpld_control_c192_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_control_c192_p8_intel/err +* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_mpi_pdlib_p8_intel/err +* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_debug_pdlib_p8_intel/err +* TEST control_wam_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/control_wam_intel/err +* TEST regional_control_faster_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/regional_control_faster_intel/err +* TEST hafs_regional_atm_ocn_wav_intel: FAILED: TEST TIMED OUT +-- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/hafs_regional_atm_ocn_wav_intel/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1454326 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [20:11, 19:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:16, 16:45](2716 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 21:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:26, 19:12](2002 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:38](1914 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:46] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 29:00](1972 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:46] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:44, 12:40](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [22:12, 21:58] ( 1 remarks ) +PASS -- TEST 'regional_control_faster_intel' [07:45, 06:42](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 16:12] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:45, 29:17](870 MB) + +SYNOPSIS: +Starting Date/Time: 20240717 12:40:54 +Ending Date/Time: 20240717 13:48:08 +Total Time: 01h:07m:27s +Compiles Completed: 6/6 +Tests Completed: 7/7 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 67277b6cf3..a09f25969f 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: -8555c2d1538cd59b2db5399da9a63e1848c3fed3 +31eab834de3e8b497f0a2b397567e8517d16dd72 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3388412e3576865197990e82187d8fc372140193 FV3 (remotes/origin/HEAD-2-g3388412) - bb89a58601c3fa28549c291811e04d5db6c9b37b FV3/atmos_cubed_sphere (201912_public_release-401-gbb89a58) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,240 +36,311 @@ 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-20240624 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_55034 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_155005 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:54, 35:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:51, 01:45](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:30, 12:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:34, 01:46](1817 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:43, 01:35](1854 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:43, 02:07](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [31:35, 01:03](1797 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:45, 19:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [38:02, 01:01](1815 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:28, 10:43] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [33:37, 01:52](1850 MB) - -PASS -- COMPILE 's2swa_intel' [17:35, 17:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [27:29, 01:33](3136 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:29, 01:52](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [19:21, 01:04](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [27:29, 01:28](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:21, 01:52](3084 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [27:29, 01:05](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [27:29, 01:33](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [27:30, 01:38](3075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:29, 01:48](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:38, 04:19](4122 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [09:00, 04:24](4265 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [27:29, 01:52](3112 MB) - -PASS -- COMPILE 's2sw_intel' [23:40, 23:11] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:24, 00:47](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:24, 00:56](1895 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [26:43, 26:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [18:20, 01:04](1895 MB) - -PASS -- COMPILE 's2s_intel' [22:40, 22:17] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [22:23, 01:02](2921 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [22:23, 01:27](2926 MB) -PASS -- TEST 'cpld_restart_c48_intel' [18:25, 01:04](2322 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:33, 15:38] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [28:31, 01:52](3130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 22:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:24, 01:14](1836 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [04:45, 01:27](1010 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [04:25, 01:39](1808 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [34:59, 33:55] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [58:29, 01:33](1859 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:39, 21:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:54, 00:24](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:54, 00:31](1467 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:54, 00:26](1486 MB) -PASS -- TEST 'control_latlon_intel' [09:54, 00:24](1471 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:54, 00:34](1471 MB) -PASS -- TEST 'control_c48_intel' [09:53, 01:05](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:53, 00:54](714 MB) -PASS -- TEST 'control_c192_intel' [09:54, 00:36](1590 MB) -PASS -- TEST 'control_c384_intel' [09:58, 01:32](1907 MB) -PASS -- TEST 'control_c384gdas_intel' [09:58, 02:06](1089 MB) -PASS -- TEST 'control_stochy_intel' [09:54, 00:29](528 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:21, 01:11](334 MB) -PASS -- TEST 'control_lndp_intel' [09:54, 00:36](525 MB) -PASS -- TEST 'control_iovr4_intel' [08:51, 00:43](524 MB) -PASS -- TEST 'control_iovr5_intel' [08:51, 00:45](523 MB) -PASS -- TEST 'control_p8_intel' [07:52, 01:58](1768 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:20, 02:05](1771 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:19, 02:04](1774 MB) -PASS -- TEST 'control_restart_p8_intel' [02:19, 00:57](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:14, 01:27](1769 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:08, 00:57](924 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:06, 01:54](1763 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:02, 00:59](1853 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:00, 01:17](1774 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:55, 01:04](1829 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:26, 02:00](1785 MB) -PASS -- TEST 'merra2_thompson_intel' [05:21, 01:53](1774 MB) -PASS -- TEST 'regional_control_intel' [05:16, 00:27](854 MB) -PASS -- TEST 'regional_restart_intel' [59:22, 00:12](852 MB) -PASS -- TEST 'regional_decomp_intel' [05:14, 01:01](852 MB) -PASS -- TEST 'regional_2threads_intel' [05:15, 01:03](916 MB) -PASS -- TEST 'regional_noquilt_intel' [04:45, 00:32](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [04:23, 01:19](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [04:22, 01:07](860 MB) -PASS -- TEST 'regional_wofs_intel' [04:22, 00:52](1578 MB) - -PASS -- COMPILE 'rrfs_intel' [14:28, 13:38] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [14:02, 02:17](913 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [14:03, 01:08](1092 MB) -PASS -- TEST 'rap_decomp_intel' [14:02, 02:03](913 MB) -PASS -- TEST 'rap_2threads_intel' [14:02, 02:00](1000 MB) -PASS -- TEST 'rap_restart_intel' [04:19, 01:16](780 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:02, 02:19](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:02, 02:02](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [04:18, 01:38](781 MB) -PASS -- TEST 'hrrr_control_intel' [14:02, 01:07](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:02, 01:02](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:03, 01:31](985 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:02, 01:04](734 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:02, 01:25](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:02, 01:03](1871 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:02, 01:21](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [12:26, 12:08] -PASS -- TEST 'control_csawmg_intel' [15:03, 00:31](872 MB) -PASS -- TEST 'control_ras_intel' [15:03, 00:57](565 MB) - -PASS -- COMPILE 'wam_intel' [13:30, 12:40] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [02:43, 00:56](1564 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [24:48, 23:54] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [57:36, 02:04](1775 MB) -PASS -- TEST 'regional_control_faster_intel' [57:26, 00:22](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:40, 16:17] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:45, 01:26](1501 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [01:39, 01:32](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [01:37, 00:47](704 MB) -PASS -- TEST 'control_lndp_debug_intel' [01:35, 01:10](703 MB) -PASS -- TEST 'control_csawmg_debug_intel' [00:56, 00:31](1016 MB) -PASS -- TEST 'control_ras_debug_intel' [00:32, 01:02](711 MB) -PASS -- TEST 'control_diag_debug_intel' [00:30, 01:17](1563 MB) -PASS -- TEST 'control_debug_p8_intel' [00:29, 01:00](1795 MB) -PASS -- TEST 'regional_debug_intel' [59:44, 00:48](892 MB) -PASS -- TEST 'rap_control_debug_intel' [59:37, 00:22](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [59:30, 00:25](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [59:09, 00:39](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [59:05, 00:35](1087 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [58:48, 00:40](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [58:44, 00:43](1169 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:41, 00:42](1087 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:38, 00:40](1090 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:15, 00:41](1090 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [57:06, 00:48](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [56:57, 00:53](1085 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [56:48, 00:52](1085 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [56:46, 00:42](1083 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:45, 00:52](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:40, 01:01](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [56:35, 00:47](1087 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:59, 02:09](1090 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:42, 18:23] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [55:42, 01:13](1598 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:59, 36:08] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:04, 01:23](959 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:03, 01:18](792 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:03, 01:54](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:03, 01:47](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:04, 02:15](845 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:03, 01:51](788 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [30:31, 01:36](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [32:29, 00:20](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:45, 23:58] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [49:16, 00:59](1004 MB) -PASS -- TEST 'conus13km_2threads_intel' [44:50, 00:54](1010 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [44:49, 00:46](881 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:34, 10:24] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [55:41, 01:27](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:35, 13:05] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [55:34, 01:00](963 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [55:08, 01:15](957 MB) -PASS -- TEST 'conus13km_debug_intel' [54:26, 01:13](1055 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [54:06, 01:02](726 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [53:06, 00:28](1056 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:58, 01:09](1120 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:40, 20:24] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [48:13, 00:55](996 MB) - -PASS -- COMPILE 'hafsw_intel' [15:34, 14:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:12, 02:00](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:12, 01:07](970 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:10, 01:40](665 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [49:10, 01:28](692 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:11, 02:14](716 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:10, 01:04](392 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:11, 02:12](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [49:11, 01:37](286 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:14, 02:23](375 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:10, 01:28](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:10, 00:49](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:12, 01:41](504 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:11, 00:27](325 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [14:30, 13:17] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [45:11, 01:28](518 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:42, 24:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [32:57, 00:49](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:57, 01:42](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:29, 11:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [45:52, 00:53](710 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:36, 20:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [37:00, 02:14](663 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:00, 02:15](644 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:58, 00:26](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:34, 18:48] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [36:00, 01:38](1829 MB) - -PASS -- COMPILE 'atml_intel' [23:38, 22:49] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:25, 09:59] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [15:29, 14:52] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [32:44, 01:28](3027 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [32:44, 01:52](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [32:44, 01:48](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:26, 09:51] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:23, 01:14](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:42, 21:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:15, 01:32](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:37, 17:06] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [32:20, 01:45](1819 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:24, 01:41](1850 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 02:19](981 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:21, 01:33](1799 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:29, 11:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [37:27, 01:08](1823 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:45] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [44:35, 01:51](1843 MB) + +PASS -- COMPILE 's2swa_intel' [16:35, 16:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:21, 01:30](3132 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:21, 01:49](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:11, 01:55](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [33:21, 01:27](3150 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [25:11, 01:51](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [33:21, 01:02](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [33:21, 01:36](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [33:22, 01:35](3075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:21, 01:50](3131 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:30, 04:31](4127 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:21, 05:52](4270 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [33:21, 01:51](3114 MB) + +PASS -- COMPILE 's2sw_intel' [11:30, 11:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [38:26, 00:53](1835 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:26, 01:58](1898 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:29, 10:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:27, 01:59](1894 MB) + +PASS -- COMPILE 's2s_intel' [24:42, 23:55] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [25:12, 01:08](2920 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [25:00, 01:24](2926 MB) +PASS -- TEST 'cpld_restart_c48_intel' [20:53, 01:18](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [37:00, 36:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:24, 02:15](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 22:25] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:17, 01:00](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:54, 01:43](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:55, 01:37](1810 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:37, 21:59] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:34, 01:40](1857 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 11:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:01, 00:20](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [27:02, 00:28](1470 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:01, 01:24](1473 MB) +PASS -- TEST 'control_latlon_intel' [27:01, 01:17](1478 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:02, 01:30](1472 MB) +PASS -- TEST 'control_c48_intel' [27:00, 00:54](1595 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [27:00, 00:51](713 MB) +PASS -- TEST 'control_c192_intel' [27:01, 00:34](1587 MB) +PASS -- TEST 'control_c384_intel' [27:06, 01:24](1904 MB) +PASS -- TEST 'control_c384gdas_intel' [27:05, 02:00](1089 MB) +PASS -- TEST 'control_stochy_intel' [27:02, 00:24](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [24:34, 00:53](331 MB) +PASS -- TEST 'control_lndp_intel' [27:01, 00:28](524 MB) +PASS -- TEST 'control_iovr4_intel' [27:02, 00:46](525 MB) +PASS -- TEST 'control_iovr5_intel' [27:02, 00:46](522 MB) +PASS -- TEST 'control_p8_intel' [27:01, 01:53](1775 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [26:00, 01:49](1774 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [26:00, 01:52](1769 MB) +PASS -- TEST 'control_restart_p8_intel' [20:37, 00:41](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [24:51, 01:27](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [19:38, 00:53](910 MB) +PASS -- TEST 'control_decomp_p8_intel' [24:51, 01:27](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [24:35, 01:37](1870 MB) +PASS -- TEST 'control_p8_lndp_intel' [23:27, 01:10](1768 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [23:26, 01:59](1827 MB) +PASS -- TEST 'control_p8_mynn_intel' [23:14, 01:47](1774 MB) +PASS -- TEST 'merra2_thompson_intel' [22:32, 01:43](1776 MB) +PASS -- TEST 'regional_control_intel' [22:19, 00:14](852 MB) +PASS -- TEST 'regional_restart_intel' [16:37, 00:22](849 MB) +PASS -- TEST 'regional_decomp_intel' [22:09, 00:58](849 MB) +PASS -- TEST 'regional_2threads_intel' [22:07, 00:53](904 MB) +PASS -- TEST 'regional_noquilt_intel' [22:06, 00:19](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:33, 00:23](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:32, 01:12](862 MB) +PASS -- TEST 'regional_wofs_intel' [20:17, 01:05](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [36:02, 35:30] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [02:22, 01:44](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:23, 01:30](1097 MB) +PASS -- TEST 'rap_decomp_intel' [02:22, 01:28](913 MB) +PASS -- TEST 'rap_2threads_intel' [02:22, 01:52](1004 MB) +PASS -- TEST 'rap_restart_intel' [53:11, 01:14](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [02:22, 02:12](912 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:22, 01:58](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [52:43, 01:42](780 MB) +PASS -- TEST 'hrrr_control_intel' [02:22, 01:07](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [02:22, 01:03](901 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [02:23, 01:29](983 MB) +PASS -- TEST 'hrrr_control_restart_intel' [57:09, 00:59](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [02:22, 01:19](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [02:22, 00:56](1869 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:22, 01:14](1855 MB) + +PASS -- COMPILE 'csawmg_intel' [27:50, 26:37] +PASS -- TEST 'control_csawmg_intel' [09:37, 00:26](872 MB) +PASS -- TEST 'control_ras_intel' [09:37, 01:05](564 MB) + +PASS -- COMPILE 'wam_intel' [11:26, 10:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [19:45, 00:56](1566 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:42, 20:51] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:38, 02:19](1769 MB) +PASS -- TEST 'regional_control_faster_intel' [10:37, 00:24](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:46] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:51, 01:19](1496 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:51, 01:25](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [16:51, 00:46](707 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:51, 01:04](704 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:51, 00:29](1017 MB) +PASS -- TEST 'control_ras_debug_intel' [16:51, 01:03](714 MB) +PASS -- TEST 'control_diag_debug_intel' [16:51, 01:12](1568 MB) +PASS -- TEST 'control_debug_p8_intel' [16:51, 00:52](1807 MB) +PASS -- TEST 'regional_debug_intel' [16:50, 00:23](893 MB) +PASS -- TEST 'rap_control_debug_intel' [16:51, 00:47](1088 MB) +PASS -- TEST 'hrrr_control_debug_intel' [16:51, 00:46](1081 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [16:51, 00:47](1083 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [16:51, 00:46](1088 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:42, 00:43](1089 MB) +PASS -- TEST 'rap_diag_debug_intel' [16:31, 00:38](1170 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:23, 00:37](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:52, 00:40](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:31, 00:46](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:28, 00:45](1084 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:48, 00:45](1084 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:53, 00:52](1086 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:01, 00:38](1086 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:20, 00:56](1084 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:20, 00:59](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:20, 00:49](1094 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:06, 02:00](1094 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:24, 09:29] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:05, 01:18](1596 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:40, 18:24] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:23, 01:23](958 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 01:10](792 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:22, 02:03](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 01:37](855 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:23, 02:23](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:22, 01:54](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:02, 01:36](689 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 00:23](672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:36, 14:26] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:37, 01:10](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:51](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:37, 00:40](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:38, 16:19] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:17, 01:50](808 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_qr_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:31, 09:42] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 00:49](994 MB) + +PASS -- COMPILE 'hafsw_intel' [16:38, 16:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [00:13, 01:51](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [00:13, 00:51](971 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [00:11, 01:44](660 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [00:11, 01:17](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:12, 01:25](717 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:11, 01:03](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:12, 02:09](409 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [00:12, 01:42](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:51, 02:21](371 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:11, 01:28](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:43, 00:51](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:44, 00:48](501 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:11, 00:34](322 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:37, 16:56] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:22, 01:20](512 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:40, 18:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [51:00, 00:51](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:00, 01:39](713 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:33, 16:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [52:06, 00:51](709 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:37, 16:39] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [52:00, 02:15](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:00, 01:15](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [51:58, 00:27](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:34, 17:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:47, 01:42](1829 MB) + +PASS -- COMPILE 'atml_intel' [17:33, 16:32] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [05:23, 04:48] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [18:33, 17:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [43:49, 01:22](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [43:49, 01:53](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:49, 01:50](2925 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:27, 11:17] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:44, 01:15](4441 MB) SYNOPSIS: -Starting Date/Time: 20240715 18:14:30 -Ending Date/Time: 20240715 19:51:33 -Total Time: 01h:37m:42s -Compiles Completed: 33/33 -Tests Completed: 156/156 +Starting Date/Time: 20240717 16:09:47 +Ending Date/Time: 20240717 17:38:50 +Total Time: 01h:29m:40s +Compiles Completed: 32/33 +Tests Completed: 150/156 +Failed Compiles: +* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +31eab834de3e8b497f0a2b397567e8517d16dd72 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48576 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:45] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:44, 00:57](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:44, 01:03](956 MB) +PASS -- TEST 'conus13km_debug_intel' [43:44, 01:06](1049 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [43:44, 00:59](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [43:45, 01:19](1054 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:44, 00:55](1120 MB) + +SYNOPSIS: +Starting Date/Time: 20240717 21:11:58 +Ending Date/Time: 20240717 21:34:40 +Total Time: 00h:23m:03s +Compiles Completed: 1/1 +Tests Completed: 6/6 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 01cff398b5..cd606178f6 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -58,6 +58,13 @@ elif [[ ${MACHINE_ID} = stampede ]] ; then fi module purge +elif [[ ${MACHINE_ID} = frontera ]] ; then + # We are on TACC Frontera + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/apps/lmod/lmod/init/bash + fi + module purge + elif [[ ${MACHINE_ID} = gaea ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 403ecc4506..a8aba0860d 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -14,6 +14,13 @@ ECFLOW_RUNNING=false jobid=0 +redirect_out_err() { + ( set -e -o pipefail ; ( "$@" 2>&1 1>&3 3>&- | tee err ) 3>&1 1>&2 | tee out ) + # The above shell redirection copies stdout to "out" and stderr to "err" + # while still sending them to stdout and stderr. It ensures the entire + # redirect_out_err command will return non-zero if "$@" or tee return non-zero. +} + function compute_petbounds_and_tasks() { # each test MUST define ${COMPONENT}_tasks variable for all components it is using @@ -373,10 +380,9 @@ check_results() { if [[ ${test_status} = 'FAIL' ]]; then echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - - if [[ ${ROCOTO} = true || ${ECFLOW} == true ]]; then - exit 1 - fi + return 1 + else + return 0 fi } @@ -427,7 +433,7 @@ rocoto_create_compile_task() { cat << EOF >> "${ROCOTO_XML}" - &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log + bash -c 'set -xe -o pipefail ; &PATHRT;/run_compile.sh &PATHRT; &RUNDIR_ROOT; "${MAKE_OPT}" ${COMPILE_ID} 2>&1 | tee &LOG;/compile_${COMPILE_ID}.log' compile_${COMPILE_ID} ${ACCNR} ${COMPILE_QUEUE} @@ -471,7 +477,7 @@ rocoto_create_run_task() { cat << EOF >> "${ROCOTO_XML}" ${DEP_STRING} - &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log + bash -c 'set -xe -o pipefail ; &PATHRT;/run_test.sh &PATHRT; &RUNDIR_ROOT; ${TEST_NAME} ${TEST_ID} ${COMPILE_ID} 2>&1 | tee &LOG;/run_${TEST_ID}${RT_SUFFIX}.log' ${TEST_ID}${RT_SUFFIX} ${ACCNR} ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} diff --git a/tests/run_compile.sh b/tests/run_compile.sh index a9bf0070b6..1685f89653 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -81,10 +82,7 @@ if [[ ${ROCOTO} = 'false' ]]; then submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi #ls -l "${PATHTR}/tests/fv3_${COMPILE_ID}.exe" diff --git a/tests/run_test.sh b/tests/run_test.sh index e2dcb31196..ace4fd0cf1 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -1,5 +1,6 @@ #!/bin/bash set -eux +set -o pipefail echo "PID=$$" SECONDS=0 @@ -364,17 +365,24 @@ elif [[ ${SCHEDULER} = 'slurm' ]]; then fi fi +# This "if" block is part of the rt.sh self-tests in error-test.conf. +# It emulates run_test.sh not being able to populate the work directory. +if [[ "${JOB_SHOULD_FAIL:-NO}" == WHEN_COPYING ]] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + ################################################################################ # Submit test job ################################################################################ export OMP_ENV=${OMP_ENV:-""} if [[ ${SCHEDULER} = 'none' ]]; then - ulimit -s unlimited if [[ ${CI_TEST} = 'true' ]]; then - eval "${OMP_ENV}" mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) + eval "${OMP_ENV}" redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe else - mpiexec -n "${TASKS}" ./fv3.exe >out 2> >(tee err >&3 || true) + redirect_out_err mpiexec -n "${TASKS}" ./fv3.exe fi else @@ -383,18 +391,16 @@ else submit_and_wait job_card else chmod u+x job_card - ( ./job_card 2>&1 1>&3 3>&- | tee err || true ) 3>&1 1>&2 | tee out - # The above shell redirection copies stdout to "out" and stderr to "err" - # while still sending them to stdout and stderr. It does this without - # relying on bash-specific extensions or non-standard OS features. + redirect_out_err ./job_card fi fi skip_check_results=${skip_check_results:-false} +results_okay=YES if [[ ${skip_check_results} = false ]]; then - check_results || true - # The above call will exit with an error on its own and does - # not need to cause run_test to TRAP the failure and error out itself. + if ( ! check_results ) ; then + results_okay=NO + fi else { echo @@ -410,7 +416,7 @@ if [[ ${SCHEDULER} != 'none' ]]; then cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ ${ROCOTO} = true ]]; then +if [[ ${results_okay} == YES ]]; then remove_fail_test fi diff --git a/tests/tests/dependency_unmet b/tests/tests/dependency_unmet new file mode 100644 index 0000000000..22e56406e7 --- /dev/null +++ b/tests/tests/dependency_unmet @@ -0,0 +1,86 @@ +############################################################################### +# +# Regression test self-test: a job that is never submitted due to a failed dependency. +# This file was modified from control_c48. +# +############################################################################### + +export TEST_DESCR="This test should use a compile job that fails. Its purpose is to ensure the rt.sh workflow won't submit the dependent job." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi diff --git a/tests/tests/fail_to_copy b/tests/tests/fail_to_copy new file mode 100644 index 0000000000..9158005b33 --- /dev/null +++ b/tests/tests/fail_to_copy @@ -0,0 +1,85 @@ +############################################################################### +# +# Regression test self-test: a job that fails to copy inputs. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime before the job_card: +export JOB_SHOULD_FAIL=WHEN_COPYING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because run_test.sh will abort before the job_card." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN diff --git a/tests/tests/fail_to_run b/tests/tests/fail_to_run new file mode 100644 index 0000000000..cf906e532e --- /dev/null +++ b/tests/tests/fail_to_run @@ -0,0 +1,89 @@ +############################################################################### +# +# Regression test self-test: a job that fails to run the model. +# This file was modified from control_c48. +# +############################################################################### + +# A special flag that tells the job to fail at runtime inside the job_card +export JOB_SHOULD_FAIL=WHEN_RUNNING + +export TEST_DESCR="The rt.sh workflow shouldn't complete when this test is enabled because the job_card will abort." + +export CNTL_DIR=control_c48 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export_tiled + +export INPES=1 +export JNPES=1 +export WRTTASK_PER_GROUP=2 +export NPZ=127 +export NPZP=128 +export NPX=49 +export NPY=49 +export DT_ATMOS=1200 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL=0 +export CDMBWD=${CDMBWD_c48} +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.false. +export OUTPUT_FH="6 -1" +export IAER=5111 +export IOVR=3 +export IMO=192 +export JMO=94 + +export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH_control="'global_slmask.t62.192.94.grb'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export INPUT_NML=global_control.nml.IN + +if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then + ZSTANDARD_LEVEL=5 +fi From c12760125ce7c5a85e8ced92d7f37c9ad6a59afe Mon Sep 17 00:00:00 2001 From: lisa-bengtsson <54411948+lisa-bengtsson@users.noreply.github.com> Date: Fri, 19 Jul 2024 19:27:11 -0600 Subject: [PATCH 2/8] HR4 and SFS baseline update: Improve convection/radiation interaction in the GFS physics suite (#2340) * ccpp-physics - update convection and PBL schemes to improve cloud/convection interaction * Output updraft value of convective cloud condensate in FV3 and CCPP * update xkinv1 to 0.15 * add check if progsigma is true --- FV3 | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 634 ++++++-------- tests/logs/RegressionTests_gaea.log | 548 ++++++------ tests/logs/RegressionTests_hera.log | 752 +++++++++-------- tests/logs/RegressionTests_hercules.log | 797 ++++++++++-------- tests/logs/RegressionTests_jet.log | 486 +++++------ tests/logs/RegressionTests_orion.log | 642 ++++++-------- tests/logs/RegressionTests_wcoss2.log | 535 +++++------- tests/test_changes.list | 118 +++ 13 files changed, 2277 insertions(+), 2341 deletions(-) diff --git a/FV3 b/FV3 index 3581423f39..2527c11754 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 3581423f397e2eb0c1f0cd7f6b728593511278a9 +Subproject commit 2527c11754f1b8144dcbfb59952d0e06446a0166 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index fab229196b..e46a9938cf 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240624 +export BL_DATE=20240718 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index fa28320843..4cb0905397 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 03:56:39 UTC 2024 +Fri Jul 19 00:14:31 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 279.926730 - 0: The maximum resident set size (KB) = 1464436 + 0: The total amount of wall time = 276.279391 + 0: The maximum resident set size (KB) = 1452840 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 981.451585 - 0: The maximum resident set size (KB) = 1435700 + 0: The total amount of wall time = 990.272278 + 0: The maximum resident set size (KB) = 1417316 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 251.528579 - 0: The maximum resident set size (KB) = 1422160 + 0: The total amount of wall time = 246.988630 + 0: The maximum resident set size (KB) = 1434736 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 247.727184 - 0: The maximum resident set size (KB) = 1422076 + 0: The total amount of wall time = 250.035763 + 0: The maximum resident set size (KB) = 1422624 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 252.564799 - 0: The maximum resident set size (KB) = 1432092 + 0: The total amount of wall time = 245.869118 + 0: The maximum resident set size (KB) = 1433972 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 248.590179 - 0: The maximum resident set size (KB) = 1429984 + 0: The total amount of wall time = 264.558137 + 0: The maximum resident set size (KB) = 1429592 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_618270/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/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 = 252.979968 - 0: The maximum resident set size (KB) = 1430948 + 0: The total amount of wall time = 246.179584 + 0: The maximum resident set size (KB) = 1432416 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 05:20:20 UTC 2024 -Elapsed time: 01h:23m:41s. Have a nice day! +Fri Jul 19 01:24:28 UTC 2024 +Elapsed time: 01h:09m:58s. 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 bff455551c..2746035280 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 02:51:07 UTC 2024 +Thu Jul 18 23:13:29 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 1336.337850 - 0: The maximum resident set size (KB) = 1531400 + 0: The total amount of wall time = 1357.749216 + 0: The maximum resident set size (KB) = 1508564 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 560.046630 - 0: The maximum resident set size (KB) = 1537008 + 0: The total amount of wall time = 429.276836 + 0: The maximum resident set size (KB) = 1490048 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_425938/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/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 = 424.689553 - 0: The maximum resident set size (KB) = 1524172 + 0: The total amount of wall time = 415.555946 + 0: The maximum resident set size (KB) = 1523724 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 03:56:38 UTC 2024 -Elapsed time: 01h:05m:32s. Have a nice day! +Fri Jul 19 00:14:30 UTC 2024 +Elapsed time: 01h:01m:02s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index e9c9358bc9..07bd280888 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 17 00:17:07 UTC 2024 +Thu Jul 18 18:52:58 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 1486.948093 - 0: The maximum resident set size (KB) = 773156 + 0: The total amount of wall time = 1502.224676 + 0: The maximum resident set size (KB) = 751036 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2254.792018 - 0: The maximum resident set size (KB) = 709916 + 0: The total amount of wall time = 2256.388361 + 0: The maximum resident set size (KB) = 711284 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2233.046743 - 0: The maximum resident set size (KB) = 722680 + 0: The total amount of wall time = 2204.842817 + 0: The maximum resident set size (KB) = 698332 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2874969/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/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 = 2245.932321 - 0: The maximum resident set size (KB) = 719656 + 0: The total amount of wall time = 2259.205585 + 0: The maximum resident set size (KB) = 704392 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 17 02:51:06 UTC 2024 -Elapsed time: 02h:33m:59s. Have a nice day! +Thu Jul 18 23:13:28 UTC 2024 +Elapsed time: 04h:20m:30s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 9227f176a0..30ac89ebae 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -2f6d2791f9dbc985ef8aec444864bfe74923be57 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,371 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /glade/derecho/scratch/epicufsrt/FV3_RT/rt_72130 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127189 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_32bit_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_mixedmode_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [09:07, 27:21] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:51, 15:09](1920 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:03, 16:58](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 08:50](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:01, 17:02](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [09:06, 26:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:37, 14:48](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [54:59, 14:39] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [06:59, 24:57] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:47, 06:41](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:04, 07:07](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:08, 04:39](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:47, 06:36](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:08, 04:29](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:13, 06:26](3731 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:12, 06:46](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:00, 05:52](3543 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:06, 07:08](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:40, 10:21](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [21:12, 07:22](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [45:40, 11:20](4526 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:31, 08:35](4665 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:03, 06:24](3213 MB) - -PASS -- COMPILE 's2sw_intel' [03:58, 22:14] ( 10 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:08, 05:27](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 05:40](1988 MB) - -PASS -- COMPILE 's2swa_debug_intel' [55:02, 14:39] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:18, 08:55](3298 MB) - -PASS -- COMPILE 's2sw_debug_intel' [54:01, 13:38] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:28](1962 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [59:03, 18:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:14, 05:34](1982 MB) - -PASS -- COMPILE 's2s_intel' [59:04, 18:11] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:40, 07:15](2945 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:35, 03:00](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:53, 02:12](2341 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 's2swa_faster_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'cpld_control_p8_faster_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:18, 25:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:33, 15:12](1931 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:56, 09:04](1111 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:11](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:21, 14:09] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 24:13](1967 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:25, 17:35] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:09, 03:35](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:22, 02:35](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:01, 02:40](1570 MB) -PASS -- TEST 'control_latlon_intel' [05:37, 02:34](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:32, 02:34](1575 MB) -PASS -- TEST 'control_c48_intel' [09:37, 06:18](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:00, 05:20](736 MB) -PASS -- TEST 'control_c192_intel' [12:54, 08:50](1682 MB) -PASS -- TEST 'control_c384_intel' [20:39, 09:06](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [24:36, 07:29](1205 MB) -PASS -- TEST 'control_stochy_intel' [03:47, 01:32](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:08, 00:58](441 MB) -PASS -- TEST 'control_lndp_intel' [04:46, 01:27](628 MB) -PASS -- TEST 'control_iovr4_intel' [06:08, 02:16](625 MB) -PASS -- TEST 'control_iovr5_intel' [05:18, 02:17](619 MB) -PASS -- TEST 'control_p8_intel' [07:10, 03:32](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:23, 03:49](1871 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 03:43](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:55, 02:27](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:17, 03:49](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:05, 02:37](1022 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:45](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:04, 03:28](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:53, 05:41](1862 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_rrtmgp_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_mynn_intel' [, ]( MB) -PASS -- TEST 'merra2_thompson_intel' [07:25, 03:56](1867 MB) -PASS -- TEST 'regional_control_intel' [08:33, 05:42](874 MB) -PASS -- TEST 'regional_restart_intel' [06:14, 03:33](873 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:45](872 MB) -PASS -- TEST 'regional_noquilt_intel' [08:07, 05:22](1194 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:58, 05:31](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:25, 05:24](874 MB) -PASS -- TEST 'regional_wofs_intel' [08:28, 05:45](1606 MB) - -PASS -- COMPILE 'rrfs_intel' [16:19, 14:55] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:58, 06:19](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:47, 03:57](1193 MB) -PASS -- TEST 'rap_decomp_intel' [11:58, 06:29](1006 MB) -PASS -- TEST 'rap_2threads_intel' [11:58, 05:48](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:52, 03:24](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:04, 06:14](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:56, 06:34](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:47, 04:40](886 MB) -PASS -- TEST 'hrrr_control_intel' [09:01, 03:21](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:00, 03:32](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:02, 02:58](1092 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:22, 01:55](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:06, 06:09](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:23, 07:28](1968 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:15](1954 MB) - -PASS -- COMPILE 'csawmg_intel' [15:21, 13:18] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:41, 07:02](965 MB) -PASS -- TEST 'control_ras_intel' [05:04, 03:00](656 MB) - -PASS -- COMPILE 'wam_intel' [14:22, 12:32] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:27, 10:08](1661 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_faster_dyn32_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_p8_faster_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:23, 14:53] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:37, 02:47](1608 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:34, 02:44](1605 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:49, 02:58](808 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:56, 02:40](807 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:01](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [04:58, 02:41](814 MB) -PASS -- TEST 'control_diag_debug_intel' [09:31, 02:43](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [07:38, 03:50](1902 MB) -PASS -- TEST 'regional_debug_intel' [20:36, 17:40](941 MB) -PASS -- TEST 'rap_control_debug_intel' [07:30, 04:51](1193 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:15, 04:44](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:48, 04:44](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:48, 04:49](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:06, 04:48](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:20, 05:07](1275 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:04, 04:56](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:04, 05:06](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:06, 04:49](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:00, 04:51](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:57, 04:41](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:47, 04:48](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:18, 05:43](11889801190 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:34, 02:40](11834201188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:55, 04:00](11990641197 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:47, 04:54](1194 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 08:07](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:21, 08:33] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:43, 12:24](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:16, 12:31] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:52, 03:47](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:55, 05:18](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:11, 02:57](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:50, 04:53](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:45, 02:37](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:45, 03:04](882 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:45, 04:05](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:13, 01:41](780 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:17, 16:41] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:57, 02:19](1087 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:53, 01:18](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:45, 01:14](975 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:17, 12:39] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 03:45](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:58, 08:41] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:59, 04:40](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:16, 04:37](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [19:22, 13:36](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:09, 13:50](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:22, 08:00](1156 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:40, 13:38](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:20, 08:20] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:04, 04:42](1091 MB) - -PASS -- COMPILE 'hafsw_intel' [22:24, 20:21] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:27, 05:06](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:58, 05:51](1067 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:38, 06:58](776 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:24, 11:39](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:36, 12:34](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:47, 04:54](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:31, 06:08](497 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:35, 02:33](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:27, 06:35](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:36](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:38, 03:23](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:12, 04:16](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:48, 01:26](427 MB) -PASS -- TEST 'gnv1_nested_intel' [10:09, 04:39](1723 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:24, 10:31] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:20, 12:38](624 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [32:28, 28:40] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:24, 07:33](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:17, 07:38](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:28, 21:36] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:00, 05:54](684 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:18, 18:10] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:41, 05:59](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:32, 05:58](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:41, 16:15](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:15, 10:27] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:08, 02:33](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:15, 01:39](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:00, 02:23](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:05, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:11, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:14, 02:35](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:14, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [16:06, 06:45](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [15:22, 06:39](676 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 02:36](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:08](2019 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:12](2018 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:19, 07:44] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:52, 05:14](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 10:12] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:58, 02:35](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:24, 03:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:54, 02:14](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 02:09](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:55, 01:01](452 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:18, 15:15] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:03, 05:09](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:52, 13:53] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:52, 05:06](1912 MB) - -PASS -- COMPILE 'atml_intel' [18:23, 16:47] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:24, 09:26](1884 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:20, 09:30](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:19, 04:55](1041 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:24, 11:37] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:20, 07:43](1933 MB) - -PASS -- COMPILE 'atmw_intel' [16:32, 15:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:45, 03:22](1887 MB) - -PASS -- COMPILE 'atmaero_intel' [15:31, 13:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:45, 05:26](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 04:32](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:32, 04:47](3012 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:19, 09:15] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [29:37, 22:59](4543 MB) +PASS -- COMPILE 's2swa_32bit_intel' [23:24, 22:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 05:32](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 24:42] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:35](1916 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:51](1953 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 07:58](1084 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:58, 16:44](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 24:44] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:14, 14:28](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:22, 12:46] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [23:24, 22:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:41, 06:13](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:52, 04:06](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 06:28](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:58, 04:13](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:41, 06:02](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:41, 06:08](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:37, 05:21](3540 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 06:22](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:56, 09:42](3894 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:54, 06:42](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:42, 10:45](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:53, 07:19](4672 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:32, 06:06](3208 MB) + +PASS -- COMPILE 's2sw_intel' [21:24, 20:44] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:34, 04:54](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:49, 05:06](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:22, 12:44] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:22, 08:33](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:22, 12:07] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:35, 05:55](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:22, 16:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:08, 05:01](1991 MB) + +PASS -- COMPILE 's2s_intel' [17:22, 16:41] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:53](2939 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 02:31](2951 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:12, 01:37](2343 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:25, 26:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:27, 06:22](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:23, 23:12] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 14:57](1941 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 08:07](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:44, 16:39](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:19, 11:44] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:32, 23:57](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:22, 15:49] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:39, 03:27](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:29](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:34](1580 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 02:29](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:30](1574 MB) +PASS -- TEST 'control_c48_intel' [08:14, 06:05](1616 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:17](735 MB) +PASS -- TEST 'control_c192_intel' [12:17, 08:45](1694 MB) +PASS -- TEST 'control_c384_intel' [16:06, 08:45](2006 MB) +PASS -- TEST 'control_c384gdas_intel' [15:27, 07:06](1202 MB) +PASS -- TEST 'control_stochy_intel' [02:32, 01:29](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:53](443 MB) +PASS -- TEST 'control_lndp_intel' [02:29, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:35, 02:06](622 MB) +PASS -- TEST 'control_iovr5_intel' [03:40, 02:11](620 MB) +PASS -- TEST 'control_p8_intel' [05:29, 03:16](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:13](1859 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:11](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [04:25, 02:11](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:18](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 02:15](1018 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:15](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:03](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:08](1929 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:46, 03:23](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [05:30, 03:38](1871 MB) +PASS -- TEST 'regional_control_intel' [06:53, 05:08](874 MB) +PASS -- TEST 'regional_restart_intel' [05:06, 03:13](870 MB) +PASS -- TEST 'regional_decomp_intel' [06:55, 05:17](873 MB) +PASS -- TEST 'regional_noquilt_intel' [06:52, 05:00](1187 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 05:05](879 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 05:12](882 MB) +PASS -- TEST 'regional_wofs_intel' [06:58, 05:42](1605 MB) + +PASS -- COMPILE 'rrfs_intel' [14:21, 13:24] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:29, 06:08](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:28, 03:43](1194 MB) +PASS -- TEST 'rap_decomp_intel' [08:29, 06:25](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 05:41](1101 MB) +PASS -- TEST 'rap_restart_intel' [05:19, 03:17](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:07](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:23](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 04:38](884 MB) +PASS -- TEST 'hrrr_control_intel' [05:09, 03:18](1004 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 03:22](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 02:50](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:45](839 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:01](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:03, 07:27](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:05, 07:11](1951 MB) + +PASS -- COMPILE 'csawmg_intel' [13:13, 11:49] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:14, 06:43](965 MB) +PASS -- TEST 'control_ras_intel' [04:40, 02:57](661 MB) + +PASS -- COMPILE 'wam_intel' [12:15, 11:23] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:36, 10:05](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 17:48] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 03:09](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:59, 05:00](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 13:23] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:03, 02:32](1603 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:36](1602 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:52](809 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:41](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:00, 04:37](1120 MB) +PASS -- TEST 'control_ras_debug_intel' [03:43, 02:39](816 MB) +PASS -- TEST 'control_diag_debug_intel' [04:51, 02:35](1664 MB) +PASS -- TEST 'control_debug_p8_intel' [05:01, 03:30](1903 MB) +PASS -- TEST 'regional_debug_intel' [19:01, 17:05](932 MB) +PASS -- TEST 'rap_control_debug_intel' [06:35, 04:47](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:34](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:34, 04:40](1192 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:48](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:55](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:55](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:40, 04:51](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:37, 04:48](1197 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:53](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:49](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:35](1191 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 04:42](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:33](1191 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:40](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:47, 05:33](1198 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:46, 04:44](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:16, 07:59](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:13, 07:27] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:05, 12:16](1703 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:32] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:34](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:11](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 02:52](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 04:47](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:16, 02:28](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](882 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:56](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:42, 01:35](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:54, 01:55](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:33, 01:00](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:12](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:20, 11:43] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:39](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:42] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1070 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:36, 04:32](1068 MB) +PASS -- TEST 'conus13km_debug_intel' [15:45, 13:16](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:37, 13:26](837 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:01, 07:45](1152 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 13:25](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:14, 07:28] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [19:22, 18:48] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:34, 04:42](718 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 05:16](1063 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:16, 06:33](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:24, 11:07](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:13](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:29, 04:44](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:51](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 02:24](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:12](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:22](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:21, 03:07](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:24, 03:54](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:15](428 MB) +PASS -- TEST 'gnv1_nested_intel' [07:29, 04:10](1721 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:51] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:19, 12:17](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:28] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 07:15](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:53, 07:20](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 20:06] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:40, 05:32](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:24, 16:12] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:25, 05:40](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:37, 05:44](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:13, 16:15](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:19, 09:09] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:31](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:50, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 02:22](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:43, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:25](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:32](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:23](639 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:45, 05:41](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 05:44](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:33](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:57](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:51, 03:57](2025 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:21, 06:28] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:40, 05:11](748 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:21, 09:01] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:31](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 03:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:19](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:15](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:22, 13:51] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:52, 04:02](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 03:45](1900 MB) + +PASS -- COMPILE 'atml_intel' [17:21, 15:55] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:04](1884 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:17](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:03](1029 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:20, 10:28] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:45, 06:12](1938 MB) + +PASS -- COMPILE 'atmw_intel' [15:19, 14:33] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:15](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:16](3126 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:21](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:22, 04:24](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:12, 21:53](4534 MB) SYNOPSIS: -Starting Date/Time: 20240717 17:53:45 -Ending Date/Time: 20240717 21:27:52 -Total Time: 03h:35m:49s -Compiles Completed: 38/41 -Tests Completed: 177/183 -Failed Compiles: -* COMPILE s2swa_32bit_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_32bit_intel.log -* COMPILE s2swa_faster_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_s2swa_faster_intel.log -* COMPILE atm_faster_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/compile_atm_faster_dyn32_intel.log -Failed Tests: -* TEST control_p8_rrtmgp_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_rrtmgp_intel.log -* TEST control_p8_mynn_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /glade/derecho/scratch/epicufsrt/jenkins/workspace/sandbox/Land_DA_Sandbox_Pipeline_Final/rt-2335/tests/logs/log_derecho/run_control_p8_mynn_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_5262 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [23:18, 22:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:10, 05:46](3205 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:40, 27:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:58, 06:29](3232 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:18, 18:03] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:25, 03:27](1868 MB) -PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](871 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:14, 15:46] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 04:33](1923 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:05, 03:32](1875 MB) - -SYNOPSIS: -Starting Date/Time: 20240718 07:21:40 -Ending Date/Time: 20240718 08:04:53 -Total Time: 00h:43m:33s -Compiles Completed: 4/4 -Tests Completed: 6/6 +Starting Date/Time: 20240719 10:21:56 +Ending Date/Time: 20240719 12:00:26 +Total Time: 01h:39m:41s +Compiles Completed: 41/41 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index a935178f3f..e42e626032 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_256117 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_218421 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:16, 41:09] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:57, 07:24](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:18, 13:47](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:26, 15:07](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:06, 07:28](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:37, 15:37](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:17, 42:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:53, 13:27](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [38:14, 38:09] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [30:25, 24:40](1949 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 40:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:57, 08:23](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:58, 08:22](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:18, 05:40](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:57, 08:13](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:18, 05:46](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:54, 06:54](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:17, 07:57](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:57, 07:18](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:58, 08:09](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:51, 10:33](3446 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:21, 08:22](3608 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:19, 13:16](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [19:46, 09:25](4357 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:37, 08:18](3207 MB) - -PASS -- COMPILE 's2sw_intel' [41:15, 40:17] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:26, 05:02](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:17, 05:23](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [38:12, 38:09] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:23, 10:34](3279 MB) - -PASS -- COMPILE 's2sw_debug_intel' [36:16, 35:46] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:34, 06:02](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:14, 37:38] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:17, 05:14](1998 MB) - -PASS -- COMPILE 's2s_intel' [37:16, 36:14] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:33, 06:35](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:03, 02:01](2930 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:28, 01:12](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [44:15, 44:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:47, 08:07](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [39:16, 38:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:04, 15:16](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 07:27](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:34, 17:47](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [32:16, 31:16] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:41, 27:20](1963 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [28:15, 27:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:50, 03:50](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:21, 03:04](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:11](1569 MB) -PASS -- TEST 'control_latlon_intel' [05:39, 03:06](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:10](1572 MB) -PASS -- TEST 'control_c48_intel' [10:46, 06:37](1600 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:26, 05:39](719 MB) -PASS -- TEST 'control_c192_intel' [12:23, 10:07](1682 MB) -PASS -- TEST 'control_c384_intel' [22:01, 18:24](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [19:48, 14:20](1178 MB) -PASS -- TEST 'control_stochy_intel' [04:15, 01:57](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:32, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [04:05, 01:51](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:17, 02:40](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:45, 02:32](619 MB) -PASS -- TEST 'control_p8_intel' [06:48, 03:21](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:20, 03:22](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:30, 03:21](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:18, 01:53](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:19, 03:21](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:29, 01:58](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 03:26](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:08, 02:55](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:42, 05:28](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:42, 04:16](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:28](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [07:23, 03:50](1865 MB) -PASS -- TEST 'regional_control_intel' [06:50, 04:43](859 MB) -PASS -- TEST 'regional_restart_intel' [04:59, 02:39](861 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:11](860 MB) -PASS -- TEST 'regional_2threads_intel' [05:57, 03:05](999 MB) -PASS -- TEST 'regional_noquilt_intel' [07:00, 04:38](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:10, 04:47](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 04:46](858 MB) -PASS -- TEST 'regional_wofs_intel' [08:04, 06:05](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [27:12, 26:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:17, 06:58](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:43, 04:02](1187 MB) -PASS -- TEST 'rap_decomp_intel' [11:49, 07:10](1009 MB) -PASS -- TEST 'rap_2threads_intel' [11:17, 06:10](1096 MB) -PASS -- TEST 'rap_restart_intel' [07:20, 03:56](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 07:02](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:48, 07:19](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:33, 04:57](880 MB) -PASS -- TEST 'hrrr_control_intel' [08:34, 03:51](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:34, 03:57](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:34, 03:07](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:44, 02:04](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:08, 06:49](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:58, 08:12](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:06, 07:59](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [25:16, 24:57] -PASS -- TEST 'control_csawmg_intel' [09:16, 06:41](964 MB) -PASS -- TEST 'control_ras_intel' [05:43, 03:24](657 MB) - -PASS -- COMPILE 'wam_intel' [25:17, 24:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:31, 11:39](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [34:14, 33:12] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:05, 03:16](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [06:21, 04:49](857 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [27:21, 26:59] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:31, 03:16](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:02](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:00, 03:13](796 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:17, 02:59](794 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:41](1107 MB) -PASS -- TEST 'control_ras_debug_intel' [04:27, 02:56](803 MB) -PASS -- TEST 'control_diag_debug_intel' [04:59, 03:04](1659 MB) -PASS -- TEST 'control_debug_p8_intel' [05:54, 03:20](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:43, 16:36](899 MB) -PASS -- TEST 'rap_control_debug_intel' [07:18, 05:18](1180 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:28, 05:12](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:27, 05:08](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 05:06](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:17, 05:12](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:37, 05:14](1263 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:28, 05:10](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 05:15](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:11, 05:06](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:16, 05:05](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:05, 05:00](1178 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:54, 05:09](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:22, 08:01](1178 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:46, 05:01](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:03](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:47, 05:02](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:50, 08:50](1182 MB) - -PASS -- COMPILE 'wam_debug_intel' [22:19, 21:10] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:45, 13:43](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:15, 25:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:59, 03:48](1047 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:21, 05:56](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:28](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:21, 05:17](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:06, 02:43](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:25, 03:36](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:12](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:51](764 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [30:15, 30:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:52, 02:17](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:32, 01:05](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:04, 01:26](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [25:15, 24:56] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:34, 04:18](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [22:15, 21:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 04:58](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:09](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [18:18, 14:27](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:18, 14:18](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:40, 08:21](1124 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:17](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [22:14, 21:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:18](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [35:16, 34:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:30, 05:18](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:55, 04:33](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:18, 07:43](754 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:47, 11:44](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:28, 12:56](800 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:12, 05:28](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:03, 06:58](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:03, 02:55](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:36, 08:22](447 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:20, 03:47](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:41, 03:33](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:20, 04:47](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:18, 01:45](403 MB) -PASS -- TEST 'gnv1_nested_intel' [12:11, 06:27](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [29:13, 28:17] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:59, 13:05](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [40:16, 39:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:13, 07:43](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:14, 07:47](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [36:16, 35:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:19, 06:02](784 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:12, 33:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:03, 06:17](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:13, 06:20](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:13, 20:08](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [27:18, 26:13] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:13, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:37, 01:36](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:02, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:35](758 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:13, 02:25](638 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:05, 06:06](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:05, 05:49](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:14, 04:40](2017 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 04:40](2019 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [24:15, 23:25] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:39, 05:32](730 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [27:21, 26:11] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 02:36](760 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [12:16, 11:59] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:49, 02:06](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:42](455 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:48, 01:11](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [29:15, 28:50] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:49, 04:11](1925 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [26:15, 25:45] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:02, 04:17](1914 MB) - -PASS -- COMPILE 'atml_intel' [25:11, 24:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:03, 07:40](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 07:43](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:55, 04:03](1023 MB) - -PASS -- COMPILE 'atml_debug_intel' [21:12, 20:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:53, 06:37](1931 MB) - -PASS -- COMPILE 'atmw_intel' [21:16, 19:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:09, 02:21](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [19:11, 18:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:41, 06:09](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:41, 06:37](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:16, 06:43](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:11, 15:07] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:06, 18:25](4445 MB) +PASS -- COMPILE 's2swa_32bit_intel' [53:17, 52:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:28, 07:23](3196 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:50, 13:51](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:51, 15:16](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 06:57](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 15:12](1895 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:26, 14:18](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:13, 48:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:49, 24:18](1951 MB) + +PASS -- COMPILE 's2swa_intel' [52:14, 51:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:09, 08:45](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:41, 08:20](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [14:39, 06:45](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:09, 08:41](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:39, 06:31](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:49, 06:53](3466 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:08, 08:07](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 07:25](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:41, 08:23](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:58, 10:34](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:36, 07:57](3610 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:26, 13:09](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 09:24](4361 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 08:22](3207 MB) + +PASS -- COMPILE 's2sw_intel' [51:17, 51:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:40, 05:23](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:40, 05:52](1995 MB) + +PASS -- COMPILE 's2swa_debug_intel' [49:13, 48:29] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [18:39, 10:42](3278 MB) + +PASS -- COMPILE 's2sw_debug_intel' [43:17, 42:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:59, 06:33](1957 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [46:17, 45:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:57, 05:30](1998 MB) + +PASS -- COMPILE 's2s_intel' [45:17, 44:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:32, 06:36](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:22, 02:09](2929 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:25, 01:11](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [02:17, 01:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:14](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [55:23, 55:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 15:37](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:18, 08:25](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 18:11](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [47:23, 46:10] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:33, 27:03](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [40:13, 39:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:47, 04:05](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:46, 03:06](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:42, 03:35](1569 MB) +PASS -- TEST 'control_latlon_intel' [07:17, 03:34](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:27, 03:08](1571 MB) +PASS -- TEST 'control_c48_intel' [11:38, 06:32](1599 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 05:44](719 MB) +PASS -- TEST 'control_c192_intel' [13:53, 10:28](1684 MB) +PASS -- TEST 'control_c384_intel' [22:18, 18:36](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [20:49, 14:22](1181 MB) +PASS -- TEST 'control_stochy_intel' [04:44, 02:20](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:03, 01:22](425 MB) +PASS -- TEST 'control_lndp_intel' [03:36, 01:54](623 MB) +PASS -- TEST 'control_iovr4_intel' [05:29, 02:59](619 MB) +PASS -- TEST 'control_iovr5_intel' [05:50, 03:12](620 MB) +PASS -- TEST 'control_p8_intel' [09:03, 04:02](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:35, 03:34](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:40, 03:47](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [06:41, 02:07](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:30, 03:32](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:02](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:29, 04:01](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:34, 03:14](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:30](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:25](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:52, 03:37](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [08:39, 03:46](1865 MB) +PASS -- TEST 'regional_control_intel' [07:38, 04:55](859 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:38](861 MB) +PASS -- TEST 'regional_decomp_intel' [07:13, 05:00](861 MB) +PASS -- TEST 'regional_2threads_intel' [06:23, 03:11](997 MB) +PASS -- TEST 'regional_noquilt_intel' [07:19, 04:55](1179 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:50](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:07](859 MB) +PASS -- TEST 'regional_wofs_intel' [09:07, 06:35](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:21] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:03, 06:55](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 04:03](1190 MB) +PASS -- TEST 'rap_decomp_intel' [13:56, 07:13](1009 MB) +PASS -- TEST 'rap_2threads_intel' [13:03, 06:14](1095 MB) +PASS -- TEST 'rap_restart_intel' [07:55, 03:55](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:53, 06:52](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:58, 07:11](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 05:30](880 MB) +PASS -- TEST 'hrrr_control_intel' [08:27, 03:52](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:57](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 03:04](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:58, 02:00](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:06, 07:13](1002 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:50, 08:06](1963 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 07:59](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [34:13, 33:42] +PASS -- TEST 'control_csawmg_intel' [09:36, 06:48](964 MB) +PASS -- TEST 'control_ras_intel' [06:02, 03:31](657 MB) + +PASS -- COMPILE 'wam_intel' [35:21, 34:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:01, 11:59](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [41:16, 40:18] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:04, 03:41](1859 MB) +PASS -- TEST 'regional_control_faster_intel' [07:04, 04:58](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [39:19, 38:48] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:44, 03:08](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:07](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:03, 03:30](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:59](793 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 04:32](1106 MB) +PASS -- TEST 'control_ras_debug_intel' [05:10, 03:08](803 MB) +PASS -- TEST 'control_diag_debug_intel' [06:13, 03:16](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:22](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:12](900 MB) +PASS -- TEST 'rap_control_debug_intel' [06:15, 05:00](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:12](1174 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:04, 05:02](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:04, 05:01](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:14, 05:03](1180 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:20, 05:36](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:08, 05:13](1181 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:21](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:09](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:12, 05:05](1180 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:04, 05:02](1177 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:07, 05:11](1178 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:12, 08:02](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1173 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:06](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:26](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 08:41](1183 MB) + +PASS -- COMPILE 'wam_debug_intel' [32:17, 31:24] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:35, 13:51](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [29:19, 28:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:54](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 06:22](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:52](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:15, 05:23](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:00, 02:59](934 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:48](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:46, 04:34](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:57](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 32:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:38, 02:17](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:36, 01:13](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 02:06](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:16, 28:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:37, 04:30](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:14, 25:41] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:16](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:59](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [18:03, 14:21](1137 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 14:09](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:16, 08:23](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 14:20](1209 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:19, 19:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:36, 05:22](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [35:15, 35:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:32, 05:25](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:53, 04:36](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:09, 07:33](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](780 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:10, 12:44](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:20](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:56](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:13, 02:57](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 08:01](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:23, 03:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:04, 03:32](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:07, 05:52](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:17, 01:43](403 MB) +PASS -- TEST 'gnv1_nested_intel' [11:24, 06:12](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [30:15, 29:40] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:47, 12:48](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [44:12, 43:48] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:44](615 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:49](788 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 32:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:17, 06:32](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [30:15, 29:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:14](738 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:13](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:10](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:11, 24:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:05, 02:35](747 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:44, 01:34](750 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:05, 02:26](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:05, 02:28](636 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:07, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:05, 02:33](760 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:25](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:11](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:40, 06:00](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:55, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:01, 04:39](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:40](2015 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [20:16, 19:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:35](744 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:18, 22:45] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:43, 02:35](747 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:14, 09:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:25, 02:36](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:16, 01:38](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:14, 02:19](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:12, 26:00] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:10](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [24:19, 23:43] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:21](1913 MB) + +PASS -- COMPILE 'atml_intel' [25:12, 24:16] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 07:01](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 07:01](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 03:55](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [20:11, 20:08] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:31, 06:45](1931 MB) + +PASS -- COMPILE 'atmw_intel' [22:11, 21:18] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:21](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [20:11, 19:19] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:21, 06:08](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:22, 06:46](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:16, 07:08](3016 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:17, 14:20] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:23](4483 MB) SYNOPSIS: -Starting Date/Time: 20240716 17:46:49 -Ending Date/Time: 20240716 20:20:15 -Total Time: 02h:35m:37s +Starting Date/Time: 20240719 03:43:01 +Ending Date/Time: 20240719 06:38:43 +Total Time: 02h:56m:50s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 178360535f..71eb3baa5b 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: -49f4d2924a6e9ac32d439c07a897d5732b6f49ef +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,384 +24,384 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 13:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:24, 05:42](3326 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:05, 17:28](1978 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:21, 18:11](2159 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:18, 08:19](1251 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:59, 19:18](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:09](1976 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:13, 05:10] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:59, 22:49](1936 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:42] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:04](3340 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:28, 05:55](3351 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:22, 03:33](3257 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:17, 06:08](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:24, 03:39](3291 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:15, 05:36](3631 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:15, 06:01](3343 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:17, 05:02](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:26, 06:05](3348 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:10, 10:20](3529 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:59, 06:33](3632 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:47, 09:45](4346 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:30](4396 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:20, 05:31](3342 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 13:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:10, 04:54](1997 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:17, 04:31](2052 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:13, 05:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:47](3387 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:13, 04:57] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:59, 05:58](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 12:06] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:22](2057 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 12:10] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:44, 09:07](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:44](3096 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:36](2508 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:30] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:18, 05:34](3359 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 17:23](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:25](1278 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:57](1926 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 05:03] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:01, 25:20](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 12:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:21](708 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:53](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:55, 03:00](1601 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:54](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:50, 02:56](1609 MB) -PASS -- TEST 'control_c48_intel' [08:48, 07:40](1757 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:31, 06:28](876 MB) -PASS -- TEST 'control_c192_intel' [12:05, 10:35](1765 MB) -PASS -- TEST 'control_c384_intel' [13:07, 10:24](2004 MB) -PASS -- TEST 'control_c384gdas_intel' [13:11, 08:04](1401 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:39](656 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:59](508 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:32](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:29, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:29](659 MB) -PASS -- TEST 'control_p8_intel' [04:58, 03:10](1876 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:05, 03:07](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:55, 02:59](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:52, 01:53](1137 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:57, 03:01](1889 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:07, 01:51](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:14](1883 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:58](1989 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:24](1901 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:57, 04:08](1968 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:57, 03:09](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [06:55, 03:33](1912 MB) -PASS -- TEST 'regional_control_intel' [08:40, 05:19](1101 MB) -PASS -- TEST 'regional_restart_intel' [03:40, 02:53](1096 MB) -PASS -- TEST 'regional_decomp_intel' [08:40, 05:49](1090 MB) -PASS -- TEST 'regional_2threads_intel' [06:43, 03:33](1092 MB) -PASS -- TEST 'regional_noquilt_intel' [07:43, 05:24](1397 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 05:23](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 05:27](1104 MB) -PASS -- TEST 'regional_wofs_intel' [08:39, 06:59](1918 MB) - -PASS -- COMPILE 'rrfs_intel' [11:12, 11:03] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:44](1113 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:13, 04:14](1301 MB) -PASS -- TEST 'rap_decomp_intel' [09:43, 08:16](1032 MB) -PASS -- TEST 'rap_2threads_intel' [08:43, 07:18](1180 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 04:09](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1114 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:43, 08:09](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 05:58](1138 MB) -PASS -- TEST 'hrrr_control_intel' [05:45, 04:01](1047 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 04:08](1038 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:45, 03:39](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:10](994 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:51, 07:36](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:36, 09:24](1997 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:35, 09:08](2048 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:39] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:08](1023 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:18](757 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:18] -PASS -- TEST 'control_csawmg_gnu' [09:37, 08:21](745 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:35] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:51, 10:48](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:51, 02:46](1896 MB) -PASS -- TEST 'regional_control_faster_intel' [05:42, 04:52](1106 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:19] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:44, 02:37](1631 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:48, 02:41](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:05](831 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:23, 02:51](835 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:38, 04:25](1154 MB) -PASS -- TEST 'control_ras_debug_intel' [04:23, 02:50](845 MB) -PASS -- TEST 'control_diag_debug_intel' [04:46, 02:52](1690 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 02:58](1926 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:52](1118 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:58](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:49](1224 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:08](1215 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 04:57](1224 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 05:05](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:16](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:00](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:04](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 05:05](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:01](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:25, 04:50](1221 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 05:09](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:16](1222 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:58](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:00](1224 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:56](1219 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:35](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 05:03] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](733 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 03:59] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:27](1697 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:08, 03:57](1162 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:45, 06:25](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:39, 03:22](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:03](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:34, 03:09](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](926 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:52](1040 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:52](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:52] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:59, 02:07](1208 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:43, 00:57](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:14](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:17](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:52](1095 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 05:01](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [15:55, 14:54](1255 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:54, 14:30](909 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:49, 08:14](1181 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:39](1318 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 05:04](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:15, 05:01](739 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 05:47](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:49](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:22, 13:38](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:38, 15:11](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:03, 05:25](506 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:24, 06:40](527 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:40](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:13, 07:08](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:45, 03:41](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:50, 03:30](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:03](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:13](1745 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:29] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 12:52](597 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:03, 08:46](645 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:09, 08:55](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:06, 06:38](733 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:14, 11:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:41](841 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:20, 06:26](821 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 16:01](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:21, 02:36](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:38](1104 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:38](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:21, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:42](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:39](1166 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:33](1022 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:26, 06:24](1072 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:15](1054 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:43](1168 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 04:01](2491 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:52](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:19] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 06:15](1051 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:13, 06:36] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:36](1172 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:15] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 00:49](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:49](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:31](326 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 11:32] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:10, 03:51](1961 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 03:39](1969 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:33] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:25](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:05, 04:27](1833 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:23](1102 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 05:01] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:42](1902 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:57](1942 MB) - -PASS -- COMPILE 'atmaero_intel' [11:11, 11:07] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:05, 04:06](3187 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:01, 04:53](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:11](3099 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 04:01] ( 884 warnings 6 remarks ) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:51](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:54] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:08, 17:26](1986 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 18:08](2162 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:19, 08:13](1237 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:38](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:16](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:13] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:13](1943 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:14, 05:56](3326 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 06:05](3354 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:22, 03:38](3251 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 05:58](3373 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 03:37](3286 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:34](3632 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:11, 06:05](3335 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:11, 04:48](3203 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:25, 05:55](3357 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:20](3525 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:36](3638 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 09:34](4308 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:14](4378 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:25](3336 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:50] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:51](1994 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:04, 04:24](2020 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:12] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:02, 08:55](3399 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:49] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:51](1990 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:59] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:32](2044 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:02](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:41](3095 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:33](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:36](3328 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 17:50](2003 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:18](1272 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 19:53](1937 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:57] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:02, 25:05](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:24, 03:37](702 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:41, 02:58](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:59](1607 MB) +PASS -- TEST 'control_latlon_intel' [04:37, 02:57](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 02:55](1598 MB) +PASS -- TEST 'control_c48_intel' [09:42, 07:29](1763 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 06:26](871 MB) +PASS -- TEST 'control_c192_intel' [11:56, 10:33](1761 MB) +PASS -- TEST 'control_c384_intel' [15:50, 10:30](2005 MB) +PASS -- TEST 'control_c384gdas_intel' [13:57, 07:53](1399 MB) +PASS -- TEST 'control_stochy_intel' [02:28, 01:39](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:02](504 MB) +PASS -- TEST 'control_lndp_intel' [05:30, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [06:27, 02:27](657 MB) +PASS -- TEST 'control_iovr5_intel' [06:27, 02:27](659 MB) +PASS -- TEST 'control_p8_intel' [07:58, 03:12](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:01, 03:14](1893 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:04](1905 MB) +PASS -- TEST 'control_restart_p8_intel' [04:48, 01:46](1129 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:01](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:44](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:11](1882 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:45, 02:56](1981 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:43, 05:24](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:52, 04:06](1961 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:56, 03:07](1905 MB) +PASS -- TEST 'merra2_thompson_intel' [08:53, 03:23](1907 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:22](1108 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 02:54](1092 MB) +PASS -- TEST 'regional_decomp_intel' [10:36, 05:40](1093 MB) +PASS -- TEST 'regional_2threads_intel' [06:42, 03:31](1097 MB) +PASS -- TEST 'regional_noquilt_intel' [09:46, 05:19](1399 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 05:27](1092 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 05:27](1104 MB) +PASS -- TEST 'regional_wofs_intel' [10:40, 06:48](1920 MB) + +PASS -- COMPILE 'rrfs_intel' [12:15, 11:15] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:37, 07:46](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:10](1302 MB) +PASS -- TEST 'rap_decomp_intel' [11:38, 08:09](1043 MB) +PASS -- TEST 'rap_2threads_intel' [10:40, 07:18](1188 MB) +PASS -- TEST 'rap_restart_intel' [16:44, 04:01](1105 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:41, 07:45](1109 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:09](1038 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [18:47, 05:50](1135 MB) +PASS -- TEST 'hrrr_control_intel' [06:39, 03:59](1046 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:06](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:40](1115 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:12](1003 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:34](1103 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:17](1995 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2049 MB) + +PASS -- COMPILE 'csawmg_intel' [11:14, 10:30] +PASS -- TEST 'control_csawmg_intel' [07:48, 06:14](1026 MB) +PASS -- TEST 'control_ras_intel' [05:26, 03:21](749 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:25] +PASS -- TEST 'control_csawmg_gnu' [09:47, 08:24](762 MB) + +PASS -- COMPILE 'wam_intel' [11:14, 10:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:52, 10:57](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:16, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:45](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [05:38, 04:52](1110 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:13, 06:19] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:47](1629 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:45](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:07](838 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:49](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:28](1149 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:51](840 MB) +PASS -- TEST 'control_diag_debug_intel' [08:54, 02:44](1689 MB) +PASS -- TEST 'control_debug_p8_intel' [08:50, 03:00](1930 MB) +PASS -- TEST 'regional_debug_intel' [24:46, 17:41](1112 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:00](1222 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 05:00](1219 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:03](1224 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:06](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 05:03](1219 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:11](1298 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:08](1220 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:15](1219 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1218 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:55](1222 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:58](1216 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:08](1229 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:25, 08:01](1218 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 05:03](1224 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [18:27, 05:57](1223 MB) +PASS -- TEST 'rap_flake_debug_intel' [17:24, 05:07](1225 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:41, 08:24](1222 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:35] +PASS -- TEST 'control_csawmg_debug_gnu' [05:43, 02:24](723 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:03] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:46, 13:38](1694 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:52](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:37, 06:25](1055 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 03:26](988 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:41, 06:06](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:32, 03:10](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:32, 03:34](931 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 04:50](1033 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:13, 13:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [15:00, 02:06](1211 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:47, 00:52](1126 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1118 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:45, 04:09](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [17:27, 04:57](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 04:45](1103 MB) +PASS -- TEST 'conus13km_debug_intel' [26:53, 14:25](1261 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 14:55](945 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:46, 08:21](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:45, 14:50](1318 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 03:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:25, 05:02](1145 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 12:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:17, 05:07](738 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:31, 06:08](1106 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:31, 06:58](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:21, 13:34](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:48, 15:25](895 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 05:30](505 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:27, 06:50](523 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:39](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:11](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:45, 03:52](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:33](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 04:06](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:17](407 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 04:02](1734 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 12:55](592 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:13, 16:31] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:07, 08:46](663 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](752 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 12:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:30](741 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:12, 11:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:30](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:34](823 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:34](1223 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:50](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1121 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1030 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 03:01](999 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:42, 06:31](1066 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:09](1045 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:40](1152 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:59](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:18] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:06](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:29] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:39](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 01:02] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:44](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 11:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:44](1994 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 10:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:36](1968 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 12:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:20](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:21](1105 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 05:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:08, 05:50](1908 MB) + +PASS -- COMPILE 'atmw_intel' [14:11, 11:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:52](1933 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 11:01] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:08](3208 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:50](3100 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:01, 05:03](3104 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:57] ( 884 warnings 6 remarks ) FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) -PASS -- COMPILE 'atm_gnu' [06:11, 04:54] -PASS -- TEST 'control_c48_gnu' [12:41, 11:19](1535 MB) -PASS -- TEST 'control_stochy_gnu' [04:24, 03:21](500 MB) -PASS -- TEST 'control_ras_gnu' [05:23, 04:44](502 MB) -PASS -- TEST 'control_p8_gnu' [05:58, 04:50](1453 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:53, 04:39](1460 MB) -PASS -- TEST 'control_flake_gnu' [11:24, 10:08](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:24] -PASS -- TEST 'rap_control_gnu' [11:36, 10:43](853 MB) -PASS -- TEST 'rap_decomp_gnu' [11:39, 11:02](818 MB) -PASS -- TEST 'rap_2threads_gnu' [10:38, 09:48](929 MB) -PASS -- TEST 'rap_restart_gnu' [07:44, 05:28](576 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:46, 10:49](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:39, 11:08](852 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:46, 08:10](582 MB) -PASS -- TEST 'hrrr_control_gnu' [06:35, 05:33](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:32, 05:50](795 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:38, 05:00](926 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:33, 05:36](843 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:30, 02:59](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:28, 02:49](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:47, 10:32](810 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] -PASS -- TEST 'control_diag_debug_gnu' [02:47, 01:36](1275 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:24](733 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:24, 02:40](821 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:24, 02:35](823 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:24, 02:34](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:36](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:49](910 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](824 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:24, 02:35](828 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:33](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:35](494 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:44](451 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 01:48](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:27, 02:37](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:53](825 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:24](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:34] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:32, 09:24](711 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:33, 04:56](705 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:27](752 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:44, 04:28](749 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:30, 05:04](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:38, 07:01](554 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:40, 02:35](535 MB) -PASS -- TEST 'conus13km_control_gnu' [04:55, 03:11](877 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:46, 06:13](882 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:48](559 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 10:54] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:41, 05:40](727 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:29] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:32](721 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:25, 02:33](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 06:55](896 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:49, 07:08](584 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:46](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 07:02](963 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:26, 02:37](743 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:39] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:11] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:09, 07:13](1530 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:12, 03:20] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:02, 20:27](1450 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 03:05] +PASS -- COMPILE 'atm_gnu' [05:11, 04:47] +PASS -- TEST 'control_c48_gnu' [11:40, 11:07](1536 MB) +PASS -- TEST 'control_stochy_gnu' [04:27, 03:26](502 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 04:47](505 MB) +PASS -- TEST 'control_p8_gnu' [06:00, 04:52](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:43](1459 MB) +PASS -- TEST 'control_flake_gnu' [11:28, 10:21](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:13] +PASS -- TEST 'rap_control_gnu' [11:38, 10:45](811 MB) +PASS -- TEST 'rap_decomp_gnu' [11:35, 10:54](849 MB) +PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](937 MB) +PASS -- TEST 'rap_restart_gnu' [06:41, 05:24](578 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:46](817 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:33, 11:00](850 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:58](579 MB) +PASS -- TEST 'hrrr_control_gnu' [06:34, 05:35](850 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:30, 05:37](800 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 04:58](919 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:35, 05:36](846 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:54](564 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:48](654 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:30] +PASS -- TEST 'control_diag_debug_gnu' [03:01, 01:43](1275 MB) +PASS -- TEST 'regional_debug_gnu' [12:45, 12:06](727 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:35](823 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](826 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:39](825 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:46](829 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:47](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:05](860 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:44](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:37](814 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:34](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:43](455 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:47](1441 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:38](826 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:58](822 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:41, 04:19](833 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:33] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:07] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:18](712 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:40, 05:00](704 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](754 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:33](746 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:05](702 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:04](555 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:32](541 MB) +PASS -- TEST 'conus13km_control_gnu' [05:00, 03:09](878 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:50, 06:01](878 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:46](553 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:55] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:40](728 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:37] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:29](712 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](711 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:02](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 07:07](581 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:41, 07:42](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:56](961 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:34] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:37](745 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] + +PASS -- COMPILE 's2s_gnu' [18:12, 16:05] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 07:14](1547 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [12:12, 03:17] + +PASS -- COMPILE 's2sw_pdlib_gnu' [26:13, 16:13] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:57, 19:38](1453 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:12, 03:09] FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:33] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 02:57](692 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [26:17, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:56](687 MB) SYNOPSIS: -Starting Date/Time: 20240716 15:26:34 -Ending Date/Time: 20240716 17:30:47 -Total Time: 02h:04m:46s +Starting Date/Time: 20240719 06:09:15 +Ending Date/Time: 20240719 08:28:29 +Total Time: 02h:19m:33s Compiles Completed: 57/57 Tests Completed: 243/245 Failed Tests: * TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/regional_atmaq_debug_intel/err +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/regional_atmaq_debug_intel/err * TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_2335013/cpld_debug_pdlib_p8_gnu/err +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/cpld_debug_pdlib_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -414,7 +414,7 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -49f4d2924a6e9ac32d439c07a897d5732b6f49ef +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -422,7 +422,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -430,29 +430,31 @@ Submodule hashes used in testing: d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_RT/rt_3432358 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_270761 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW -PASS -- COMPILE 'atmaq_debug_intel' [21:15, 04:10] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21.51, 45:32](4455 MB) +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:08] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [33:55, 25:33](4444 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:30] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [41:02, 16:47](1445 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:24] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:54, 13:00](1448 MB) SYNOPSIS: -Starting Date/Time: 20240716 20:11:10 -Ending Date/Time: 20240716 20:57:40 -Total Time: 00h:46m:36s +Starting Date/Time: 20240719 14:49:13 +Ending Date/Time: 20240719 15:29:43 +Total Time: 00h:40m:42s Compiles Completed: 2/2 Tests Completed: 2/2 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 8c11ab9059..ad7efc7a77 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: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,378 +35,443 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_962708 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_647280 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:19] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:03, 08:44](2134 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:15] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:55, 14:05](2003 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:18, 15:15](2286 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:22, 07:32](1336 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:33, 15:34](1914 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:16, 18:31] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:27, 13:52](1996 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:14, 05:49] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:24, 21:03](1975 MB) - -PASS -- COMPILE 's2swa_intel' [11:22, 10:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:58, 07:53](2197 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:17, 08:11](2185 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:44, 05:38](1977 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:57, 07:48](2211 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:44, 05:20](1744 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:44, 10:27](2558 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:57, 07:33](2192 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:52, 06:35](2083 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:52, 07:39](2196 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:14, 17:37](2976 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 07:37](2936 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:09, 10:13](3796 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:09, 06:49](3643 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:12, 04:54](2156 MB) - -PASS -- COMPILE 's2sw_intel' [12:12, 11:20] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:10, 07:54](2027 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:29, 04:36](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:54] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:48, 08:04](2218 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:45] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:26, 06:06](2051 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:15, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:17](2085 MB) - -PASS -- COMPILE 's2s_intel' [09:13, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:57, 07:02](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:48, 02:05](3085 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:36, 02:05](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:21, 17:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:23, 08:32](2194 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:14, 15:39] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:53, 14:23](2051 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:10, 07:57](1364 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:35, 16:27](1960 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:48] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:09, 22:45](2021 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:16, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:36, 02:50](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:51, 02:25](1608 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:28, 02:33](1636 MB) -PASS -- TEST 'control_latlon_intel' [06:21, 02:29](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:11, 02:28](1610 MB) -PASS -- TEST 'control_c48_intel' [08:58, 07:19](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:39, 05:47](862 MB) -PASS -- TEST 'control_c192_intel' [11:01, 08:56](1759 MB) -PASS -- TEST 'control_c384_intel' [13:28, 09:37](2038 MB) -PASS -- TEST 'control_c384gdas_intel' [14:27, 07:28](1526 MB) -PASS -- TEST 'control_stochy_intel' [06:07, 01:39](671 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:46, 00:51](540 MB) -PASS -- TEST 'control_lndp_intel' [07:21, 01:38](675 MB) -PASS -- TEST 'control_iovr4_intel' [06:59, 02:04](667 MB) -PASS -- TEST 'control_iovr5_intel' [06:58, 02:09](659 MB) -PASS -- TEST 'control_p8_intel' [10:58, 04:01](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:24, 03:35](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:58, 03:37](1908 MB) -PASS -- TEST 'control_restart_p8_intel' [08:12, 02:42](1163 MB) -PASS -- TEST 'control_noqr_p8_intel' [11:49, 03:34](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:17, 02:10](1222 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:29, 03:43](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:35, 03:31](1999 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:14, 05:24](1915 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:56, 04:38](1981 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:46, 03:30](1913 MB) -PASS -- TEST 'merra2_thompson_intel' [12:42, 03:59](1913 MB) -PASS -- TEST 'regional_control_intel' [12:30, 05:37](1203 MB) -PASS -- TEST 'regional_restart_intel' [06:56, 03:29](1180 MB) -PASS -- TEST 'regional_decomp_intel' [12:54, 06:00](1201 MB) -PASS -- TEST 'regional_2threads_intel' [07:56, 04:26](1157 MB) -PASS -- TEST 'regional_noquilt_intel' [11:50, 06:02](1519 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:53, 05:34](1202 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:00, 05:43](1205 MB) -PASS -- TEST 'regional_wofs_intel' [10:55, 05:42](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [08:21, 08:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:00, 06:59](1234 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:26, 03:45](1416 MB) -PASS -- TEST 'rap_decomp_intel' [16:27, 07:22](1150 MB) -PASS -- TEST 'rap_2threads_intel' [14:00, 06:32](1375 MB) -PASS -- TEST 'rap_restart_intel' [09:31, 03:40](1161 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:24, 06:57](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:31, 07:27](1158 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:31, 05:19](1214 MB) -PASS -- TEST 'hrrr_control_intel' [11:20, 03:34](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:59, 03:31](1041 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 03:08](1127 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:41, 01:55](1026 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:34, 07:09](1196 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:21, 07:48](2006 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:23, 07:29](2193 MB) - -PASS -- COMPILE 'csawmg_intel' [08:15, 07:26] -PASS -- TEST 'control_csawmg_intel' [13:05, 06:42](1056 MB) -PASS -- TEST 'control_ras_intel' [09:44, 02:54](821 MB) - -PASS -- COMPILE 'csawmg_gnu' [06:18, 04:43] -PASS -- TEST 'control_csawmg_gnu' [16:00, 07:39](1075 MB) - -PASS -- COMPILE 'wam_intel' [09:14, 07:23] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:04, 09:47](1672 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 13:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:09, 03:16](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [10:06, 05:04](1204 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:16, 05:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:25, 02:20](1637 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:04, 02:11](1635 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:32, 02:45](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:38, 02:18](845 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:46, 04:26](1162 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 02:20](859 MB) -PASS -- TEST 'control_diag_debug_intel' [06:51, 02:19](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [06:56, 03:13](1938 MB) -PASS -- TEST 'regional_debug_intel' [17:52, 15:43](1163 MB) -PASS -- TEST 'rap_control_debug_intel' [05:34, 04:08](1229 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:45, 03:56](1223 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:47, 04:01](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:37, 04:01](1230 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:03](1239 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:49, 04:27](1313 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:45, 04:09](1235 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 04:09](1249 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:26, 04:03](1242 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 04:07](1231 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 03:56](1236 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:11](1238 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:32, 06:38](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:36, 03:58](1230 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 04:52](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:29, 04:07](1235 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 07:02](1231 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:28, 04:45] -PASS -- TEST 'control_csawmg_debug_gnu' [06:00, 03:35](1060 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:15, 03:18] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:30, 07:32] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:03, 03:33](1272 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:03, 05:21](1177 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:11, 02:51](1014 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:27, 05:03](1290 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:19](1045 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:16, 03:05](997 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 04:07](1117 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:46, 01:32](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:15, 12:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:12, 01:43](1298 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:03, 00:51](1208 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:46, 01:02](1155 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:13, 07:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:24, 03:44](1080 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:23, 03:20] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:40, 04:09](1103 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:59, 04:04](1110 MB) -PASS -- TEST 'conus13km_debug_intel' [13:59, 12:13](1374 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [14:43, 12:24](1003 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:41, 07:06](1262 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:05, 12:04](1419 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:37, 02:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:16](1165 MB) - -PASS -- COMPILE 'hafsw_intel' [11:16, 09:48] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:30, 05:15](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:35, 05:05](1271 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:58, 06:38](927 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:16, 14:39](999 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:30, 15:36](1160 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:32, 05:31](606 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:07, 07:12](620 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:00, 02:37](440 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:29, 07:45](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:55](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:53, 03:43](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:37, 05:02](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:05, 01:05](459 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:23, 04:12] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 11:44](646 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:12, 15:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:45, 17:04](724 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:26, 16:35](854 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:15, 10:18] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:34, 10:19](831 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:17, 10:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:48, 05:42](943 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:32, 05:42](935 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:30](1339 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:15, 07:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:35, 02:17](1151 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:21](1107 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:09](1006 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:10](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:11](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:16](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:26, 02:24](1141 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:21](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 05:06](1162 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:29, 04:52](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:27, 02:24](1167 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:27](2329 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:49, 03:38](2384 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:26, 02:50] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:35, 05:15](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:20, 06:46] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:28](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:15, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:58, 00:51](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:53, 00:50](582 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:55, 00:33](569 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:19, 08:07] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:22, 04:35](2023 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:16, 07:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:03, 04:15](1985 MB) - -PASS -- COMPILE 'atml_intel' [14:14, 09:25] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:07, 06:42](1907 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:23, 06:59](1902 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 03:25](1148 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:14, 04:22] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:15, 06:18](1933 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 09:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:50, 02:57](1944 MB) - -PASS -- COMPILE 'atmaero_intel' [11:13, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:38, 04:52](2033 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:48, 04:40](1807 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:17, 04:37](1828 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:17, 03:36] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:15, 17:38](4635 MB) - -PASS -- COMPILE 'atm_gnu' [12:24, 07:43] -PASS -- TEST 'control_c48_gnu' [12:48, 10:00](1575 MB) -PASS -- TEST 'control_stochy_gnu' [05:02, 03:09](733 MB) -PASS -- TEST 'control_ras_gnu' [05:35, 04:35](737 MB) -PASS -- TEST 'control_p8_gnu' [07:33, 05:17](1730 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:16, 04:56](1760 MB) -PASS -- TEST 'control_flake_gnu' [08:17, 05:20](812 MB) - -PASS -- COMPILE 'rrfs_gnu' [10:11, 07:14] -PASS -- TEST 'rap_control_gnu' [10:03, 08:05](1084 MB) -PASS -- TEST 'rap_decomp_gnu' [10:00, 08:16](1085 MB) -PASS -- TEST 'rap_2threads_gnu' [10:10, 07:36](1148 MB) -PASS -- TEST 'rap_restart_gnu' [05:36, 03:55](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:59, 08:51](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:29, 08:24](1089 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:22, 05:45](885 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:18](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:29, 05:15](1136 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:43, 04:14](1046 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:33, 04:17](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:22](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:47, 02:02](937 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:02, 08:10](1098 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [15:13, 12:10] -PASS -- TEST 'control_diag_debug_gnu' [02:59, 01:30](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:55, 06:55](1116 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:31, 02:25](1102 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:30, 02:07](1093 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:57, 02:26](1103 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:34, 02:29](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:53, 02:03](1281 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:30, 03:43](1104 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:48, 01:59](1106 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:33, 04:17](1097 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:37, 01:15](728 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:23, 02:43](730 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:23](1726 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:33, 01:59](1102 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:26, 02:08](1109 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:58, 03:16](1107 MB) - -PASS -- COMPILE 'wam_debug_gnu' [07:13, 05:32] -PASS -- TEST 'control_wam_debug_gnu' [07:48, 05:39](1575 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:12, 07:11] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:48, 07:14](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:15, 04:37](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 06:45](971 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:56, 03:28](895 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:52, 03:50](966 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:46, 05:31](859 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:35, 02:05](858 MB) -PASS -- TEST 'conus13km_control_gnu' [04:39, 03:07](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:12, 01:04](1174 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:50, 01:27](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [16:11, 15:24] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:01, 04:21](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [16:17, 11:59] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:42, 01:58](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:47, 02:27](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:04, 06:10](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:36, 05:51](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:00, 03:58](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:41, 05:45](1360 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [14:18, 12:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:08, 02:47](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [21:16, 20:20] - -PASS -- COMPILE 's2s_gnu' [18:20, 17:35] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:57, 05:37](3092 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [13:12, 11:39] - -PASS -- COMPILE 's2sw_pdlib_gnu' [22:13, 19:55] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:33, 26:05](3052 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [12:14, 09:20] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:20, 13:10](2914 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [20:11, 18:00] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:51, 03:01](766 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:29] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:35](2138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:15](2012 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:21](2321 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 06:30](1327 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:01, 15:09](1928 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:33, 14:12](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:55] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:01](1976 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:00, 08:04](2183 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:22](2193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:16, 04:18](1968 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:01, 08:19](2222 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 04:26](1750 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:59, 10:04](2551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 07:45](2175 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 06:57](2087 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:08, 08:37](2186 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:40, 15:56](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:23, 06:44](2928 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [17:31, 10:13](3799 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:12, 06:49](3646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 05:07](2155 MB) + +PASS -- COMPILE 's2sw_intel' [12:11, 11:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:16](2032 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:58, 04:07](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:55] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:46, 08:21](2211 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:26] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:53](2059 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:50, 03:57](2081 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:49] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:42, 07:06](3114 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:13](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:12](2512 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:53] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:06, 07:21](2196 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:32] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:05, 13:55](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:52](1400 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:55, 16:56](1973 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 22:33](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:30] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:20, 02:50](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:24](1615 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1622 MB) +PASS -- TEST 'control_latlon_intel' [03:28, 02:26](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:27](1613 MB) +PASS -- TEST 'control_c48_intel' [07:33, 06:51](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:45](857 MB) +PASS -- TEST 'control_c192_intel' [09:41, 08:54](1775 MB) +PASS -- TEST 'control_c384_intel' [10:19, 08:56](2050 MB) +PASS -- TEST 'control_c384gdas_intel' [08:54, 07:08](1523 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](671 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:49](551 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:18](674 MB) +PASS -- TEST 'control_iovr4_intel' [02:20, 02:05](661 MB) +PASS -- TEST 'control_iovr5_intel' [02:23, 02:04](662 MB) +PASS -- TEST 'control_p8_intel' [03:47, 02:54](1899 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:48, 02:51](1908 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:35](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:45, 01:30](1157 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:38, 02:39](1900 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:46, 01:29](1216 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:38, 03:12](1902 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:40](1997 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:29, 05:01](1904 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:33](1984 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:38](1918 MB) +PASS -- TEST 'merra2_thompson_intel' [03:53, 02:54](1919 MB) +PASS -- TEST 'regional_control_intel' [05:26, 04:39](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:29, 03:12](1181 MB) +PASS -- TEST 'regional_decomp_intel' [05:23, 04:56](1189 MB) +PASS -- TEST 'regional_2threads_intel' [03:23, 03:01](1159 MB) +PASS -- TEST 'regional_noquilt_intel' [05:28, 04:26](1517 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:37](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1209 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 06:23](2085 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:58] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:46, 06:58](1209 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:30](1405 MB) +PASS -- TEST 'rap_decomp_intel' [08:40, 07:12](1151 MB) +PASS -- TEST 'rap_2threads_intel' [07:32, 06:30](1376 MB) +PASS -- TEST 'rap_restart_intel' [04:58, 03:40](1141 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:48, 07:00](1206 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:36, 07:08](1152 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:15](1221 MB) +PASS -- TEST 'hrrr_control_intel' [04:51, 03:28](1089 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 03:31](1054 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:37, 03:09](1132 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:29, 01:49](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:55, 06:46](1211 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:28](2194 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] +PASS -- TEST 'control_csawmg_intel' [06:31, 05:37](1041 MB) +PASS -- TEST 'control_ras_intel' [03:17, 02:53](876 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:10, 04:05] +PASS -- TEST 'control_csawmg_gnu' [07:39, 07:07](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:34, 11:24](1679 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:10] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [05:27, 04:54](1197 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:10](1645 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:31, 02:09](1634 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:33](847 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:16](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:27, 04:27](1166 MB) +PASS -- TEST 'control_ras_debug_intel' [03:19, 02:17](851 MB) +PASS -- TEST 'control_diag_debug_intel' [04:34, 02:22](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [05:34, 03:32](1931 MB) +PASS -- TEST 'regional_debug_intel' [17:28, 15:36](1160 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:04](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:01](1231 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 04:08](1233 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 04:07](1240 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:11](1233 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:29, 04:20](1321 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:11](1236 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:17](1238 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:15](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:14](1234 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:16](1240 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:52](1225 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 04:08](1230 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:57](1238 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:07](1241 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:09](1243 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] +PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:45](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:40](1273 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 05:33](1136 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:08, 02:54](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 05:04](1295 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:39](1048 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:02](978 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:55, 04:06](1092 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:37, 01:35](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:41, 01:51](1317 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:39, 00:52](1210 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:37, 01:04](1156 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 04:09](1118 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:57](1116 MB) +PASS -- TEST 'conus13km_debug_intel' [13:32, 12:23](1359 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 12:22](1019 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 07:09](1255 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 12:05](1425 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:01] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:03](1173 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:24](839 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:17](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:52](961 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:14, 14:54](986 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:29, 15:11](1000 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:03, 05:33](608 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:25, 07:00](621 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [10:43, 02:38](437 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 07:37](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:00](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:56](618 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:49](682 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:09](456 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:24] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:45, 11:40](648 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:52, 17:06](765 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:53, 16:23](843 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:58, 10:14](824 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:39] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:08, 05:41](957 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 05:39](917 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:46, 16:39](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:11](1132 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:28](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:06](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:09](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:07](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:12](1143 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:12](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:04](1014 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:57](1156 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:54, 04:50](1151 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:10](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2385 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:05](2372 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:07](1071 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:14](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:54](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](579 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:29](588 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 03:54](2037 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 07:42] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:48, 03:44](2009 MB) + +PASS -- COMPILE 'atml_intel' [09:10, 08:35] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:07, 06:22](1906 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 06:39](1912 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:03](1149 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:10, 03:59] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:53, 06:06](1938 MB) + +PASS -- COMPILE 'atmw_intel' [09:10, 09:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:45](1948 MB) + +PASS -- COMPILE 'atmaero_intel' [09:10, 07:39] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:41](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1795 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:17](1838 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:12] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:29, 16:54](4561 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:42] +PASS -- TEST 'control_c48_gnu' [10:40, 09:25](1571 MB) +PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](745 MB) +PASS -- TEST 'control_ras_gnu' [04:19, 03:47](739 MB) +PASS -- TEST 'control_p8_gnu' [05:48, 04:48](1709 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:48](1732 MB) +PASS -- TEST 'control_flake_gnu' [05:19, 04:32](816 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:22] +PASS -- TEST 'rap_control_gnu' [08:34, 07:41](1089 MB) +PASS -- TEST 'rap_decomp_gnu' [08:46, 07:49](1089 MB) +PASS -- TEST 'rap_2threads_gnu' [07:46, 07:04](1122 MB) +PASS -- TEST 'rap_restart_gnu' [04:59, 03:57](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:49, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 08:02](1084 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:04, 05:46](885 MB) +PASS -- TEST 'hrrr_control_gnu' [04:49, 03:55](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:38, 04:05](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:43](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:57](1074 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:05](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:21, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1086 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:38] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:16](1631 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 07:45](1118 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1105 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:58](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1106 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:08](1099 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:16](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:11](1101 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 02:06](1111 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:06](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:15](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](733 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:57](1757 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:06](1105 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:23](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:21](1108 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:19] +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:38] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:23](966 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:46, 03:54](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:51](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:33](873 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:56](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:58, 05:28](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:00](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:41, 02:32](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:01](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:31](951 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 11:28] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:28](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:33] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:04](979 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:59](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:32, 05:32](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:49](969 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:34](1191 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:28, 05:35](1361 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:38] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:16](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [16:10, 15:30] + +PASS -- COMPILE 's2s_gnu' [15:16, 14:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:06, 04:47](2722 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:47] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:00, 25:47](2873 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:10, 05:00] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:50, 12:14](2893 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 17:29] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:20](762 MB) SYNOPSIS: -Starting Date/Time: 20240717 08:37:30 -Ending Date/Time: 20240717 10:30:01 -Total Time: 01h:53m:28s +Starting Date/Time: 20240719 09:01:22 +Ending Date/Time: 20240719 10:35:41 +Total Time: 01h:35m:03s Compiles Completed: 57/57 -Tests Completed: 244/244 +Tests Completed: 243/244 +Failed Tests: +* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2340/tests/logs/log_hercules/run_control_wam_debug_gnu.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF HERCULES REGRESSION TESTING LOG==== +====START OF HERCULES REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_902260 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] +PASS -- TEST 'control_wam_debug_gnu' [10:32, 05:19](1576 MB) + +SYNOPSIS: +Starting Date/Time: 20240719 11:23:50 +Ending Date/Time: 20240719 11:37:33 +Total Time: 00h:13m:48s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index f915017cff..f04154312b 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,254 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2732353 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3314321 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:17, 40:48] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:16, 08:54](2009 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:18, 48:21] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:36, 22:10](1890 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:19, 23:46](1980 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:57, 11:19](1112 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:32, 25:39](1842 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:21, 48:49] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:11, 21:06](1891 MB) - -PASS -- COMPILE 's2swa_intel' [43:17, 41:35] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:22, 09:18](2064 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:09, 09:20](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:15, 05:34](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:20](2077 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:12, 05:53](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:21, 09:08](2310 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:35, 09:02](2038 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:58, 08:05](2001 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:17](2057 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:35, 08:52](2035 MB) - -PASS -- COMPILE 's2sw_intel' [51:19, 39:50] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:33, 07:17](1906 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:13, 07:25](1958 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:37, 11:26](2083 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:46] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:26, 08:14](1934 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:14, 34:35] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:48, 07:00](1977 MB) - -PASS -- COMPILE 's2s_intel' [35:16, 34:45] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:59](3067 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:08, 04:13](3056 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 02:25](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:27, 34:32] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:09, 08:27](2043 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:18, 47:14] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:40, 22:44](1924 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:39, 11:33](1124 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:45, 25:08](1884 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:43] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:19, 33:06](1934 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:35] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [08:40, 04:50](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [31:30, 04:11](1554 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [29:32, 04:42](1554 MB) -PASS -- TEST 'control_latlon_intel' [31:25, 04:09](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 04:17](1555 MB) -PASS -- TEST 'control_c48_intel' [13:31, 12:05](1732 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:56, 10:24](850 MB) -PASS -- TEST 'control_c192_intel' [38:40, 15:13](1686 MB) -PASS -- TEST 'control_c384_intel' [28:51, 19:05](1824 MB) -PASS -- TEST 'control_c384gdas_intel' [39:57, 14:04](1026 MB) -PASS -- TEST 'control_stochy_intel' [03:40, 02:28](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [26:01, 01:29](438 MB) -PASS -- TEST 'control_lndp_intel' [03:40, 02:27](610 MB) -PASS -- TEST 'control_iovr4_intel' [04:37, 03:40](580 MB) -PASS -- TEST 'control_iovr5_intel' [04:37, 03:50](600 MB) -PASS -- TEST 'control_p8_intel' [32:59, 04:52](1843 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [33:13, 04:52](1845 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [11:11, 04:55](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [04:15, 02:56](1058 MB) -PASS -- TEST 'control_noqr_p8_intel' [33:08, 05:05](1836 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 02:46](1079 MB) -PASS -- TEST 'control_decomp_p8_intel' [33:50, 05:06](1840 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:01, 05:37](1938 MB) -PASS -- TEST 'control_p8_lndp_intel' [32:29, 08:22](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [31:07, 06:14](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [30:04, 05:24](1844 MB) -PASS -- TEST 'merra2_thompson_intel' [30:22, 05:53](1847 MB) -PASS -- TEST 'regional_control_intel' [10:11, 08:44](1013 MB) -PASS -- TEST 'regional_restart_intel' [06:48, 04:56](1017 MB) -PASS -- TEST 'regional_decomp_intel' [11:12, 09:08](1016 MB) -PASS -- TEST 'regional_2threads_intel' [08:12, 06:34](1002 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:21, 08:26](1019 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [10:11, 08:46](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [35:19, 35:01] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [25:03, 10:20](990 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [20:20, 05:58](1214 MB) -PASS -- TEST 'rap_decomp_intel' [25:03, 10:54](976 MB) -PASS -- TEST 'rap_2threads_intel' [24:30, 10:00](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:37, 05:36](996 MB) -PASS -- TEST 'rap_sfcdiff_intel' [25:13, 10:20](991 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [25:13, 10:57](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:39, 07:53](997 MB) -PASS -- TEST 'hrrr_control_intel' [20:16, 05:15](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [20:16, 05:32](986 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [20:16, 04:58](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:33, 02:53](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [25:45, 10:14](986 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [25:40, 12:43](1948 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:38, 12:26](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [32:19, 32:14] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [25:54, 09:03](962 MB) -PASS -- TEST 'control_ras_intel' [21:35, 04:51](664 MB) - -PASS -- COMPILE 'wam_intel' [33:17, 32:14] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [15:58, 14:37](1625 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:21, 53:07] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:41, 04:10](1846 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:33](1014 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:13, 06:29] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 03:27](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:40](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:50](771 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:26, 03:26](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:58](1090 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 03:40](783 MB) -PASS -- TEST 'control_diag_debug_intel' [04:52, 03:27](1632 MB) -PASS -- TEST 'control_debug_p8_intel' [08:56, 06:53](1872 MB) -PASS -- TEST 'regional_debug_intel' [23:48, 22:46](1042 MB) -PASS -- TEST 'rap_control_debug_intel' [07:32, 06:20](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:32, 06:06](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:31, 06:14](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:30, 06:17](1165 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:13](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:51, 06:37](1240 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:24](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:29, 06:24](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:30, 06:23](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:15](1158 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:28, 06:13](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:10](1166 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:10](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:31](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:14](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:33, 10:40](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [18:13, 04:47] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:12, 16:55](1646 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:24] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:41](1074 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:07, 08:53](899 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:53, 22:42](867 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:07, 08:39](956 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:49, 04:17](916 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:10, 04:56](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:23, 06:43](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:50, 02:37](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:16, 48:22] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:17, 03:08](1111 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:55, 01:27](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:56, 01:42](1029 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:13, 30:59] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 05:55](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 04:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:03](1044 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 05:57](1041 MB) -PASS -- TEST 'conus13km_debug_intel' [20:09, 18:36](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:08, 18:41](873 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:03, 10:46](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:03, 18:40](1225 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:48] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:12](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [38:16, 37:51] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:33, 07:21](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:42, 07:13](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:44, 09:28](772 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:37, 16:44](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:51, 18:23](816 MB) -PASS -- TEST 'gnv1_nested_intel' [17:03, 07:20](1681 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:16, 33:26] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:31, 08:55](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:36, 08:56](754 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:31] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1059 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:18](1033 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:28, 03:46](922 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:27, 03:47](927 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:28, 03:42](921 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:28, 03:47](1056 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:47](1062 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](927 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:52, 07:56](893 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:53, 07:49](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:25, 03:34](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:28, 05:15](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 05:07](2339 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:43] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:23, 08:01](1010 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:13, 08:25] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:21, 03:42](1064 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:41, 02:14](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [11:31, 01:29](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:32, 01:06](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:56] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:32](1906 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:19, 33:08] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:36, 05:11](1890 MB) - -PASS -- COMPILE 'atml_intel' [40:13, 37:16] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:04, 11:36](1857 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [13:01, 11:03](1866 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [20:04, 17:03](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 05:55] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:44, 08:08](1884 MB) - -PASS -- COMPILE 'atmw_intel' [41:17, 34:35] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:01, 03:15](1843 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:16] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:45, 07:10](1932 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:38, 07:34](1711 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:21, 07:38](1742 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:51] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:43, 08:35](2017 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 21:41](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:15, 23:18](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:18, 11:39](1113 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:49, 23:16](1837 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:15, 47:00] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:17](1892 MB) + +PASS -- COMPILE 's2swa_intel' [42:15, 41:02] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:21, 09:04](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 08:39](2047 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:53, 04:48](1713 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 08:49](2077 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:52, 05:06](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:30](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:17, 09:05](2047 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 07:44](2012 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:09](2056 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 08:48](2031 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:41] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:39, 07:34](1912 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 07:54](1977 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:06] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:47, 11:02](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:13, 05:36] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:29, 07:44](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:17, 34:33] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 06:41](1972 MB) + +PASS -- COMPILE 's2s_intel' [36:17, 35:13] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:07, 12:36](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:07, 03:55](3057 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:28](2481 MB) + +PASS -- COMPILE 's2swa_faster_intel' [36:22, 34:12] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:07](2054 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 52:24] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:40, 21:42](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 11:23](1131 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:33, 25:08](1881 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:31, 33:26](1930 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:51] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 04:33](649 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:03](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:12](1555 MB) +PASS -- TEST 'control_latlon_intel' [05:10, 03:59](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 04:05](1548 MB) +PASS -- TEST 'control_c48_intel' [13:29, 11:47](1727 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:16](848 MB) +PASS -- TEST 'control_c192_intel' [16:47, 14:19](1685 MB) +PASS -- TEST 'control_c384_intel' [20:36, 18:00](1822 MB) +PASS -- TEST 'control_c384gdas_intel' [17:57, 13:34](1020 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 02:21](607 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:21](441 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:13](609 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:25](604 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:22](599 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:40](1845 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:43](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 04:30](1841 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 02:39](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:41](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:48](1077 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:48](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:38](1935 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:52](1846 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:49](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:45](1851 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 05:09](1850 MB) +PASS -- TEST 'regional_control_intel' [09:08, 08:03](1016 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 04:52](1024 MB) +PASS -- TEST 'regional_decomp_intel' [10:08, 08:27](1018 MB) +PASS -- TEST 'regional_2threads_intel' [07:09, 05:43](1006 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:15, 07:54](1019 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 08:01](1011 MB) + +PASS -- COMPILE 'rrfs_intel' [36:14, 35:12] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [13:28, 10:13](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:35, 05:41](1221 MB) +PASS -- TEST 'rap_decomp_intel' [14:15, 10:37](987 MB) +PASS -- TEST 'rap_2threads_intel' [13:28, 09:41](1077 MB) +PASS -- TEST 'rap_restart_intel' [10:27, 06:00](997 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:12, 10:10](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:38, 10:47](990 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:17, 08:20](1007 MB) +PASS -- TEST 'hrrr_control_intel' [13:18, 05:15](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:45, 05:24](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:18, 04:48](1062 MB) +PASS -- TEST 'hrrr_control_restart_intel' [07:34, 03:51](916 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:52, 10:02](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 12:18](1941 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:43, 12:16](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:19] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [15:55, 08:52](966 MB) +PASS -- TEST 'control_ras_intel' [10:32, 04:29](667 MB) + +PASS -- COMPILE 'wam_intel' [33:18, 32:25] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [17:03, 14:37](1620 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:29] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 04:15](1845 MB) +PASS -- TEST 'regional_control_faster_intel' [08:47, 07:09](1020 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:11] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 03:26](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:05, 03:18](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:55](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:35](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:59, 06:01](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:34](785 MB) +PASS -- TEST 'control_diag_debug_intel' [08:05, 03:26](1637 MB) +PASS -- TEST 'control_debug_p8_intel' [08:01, 04:16](1877 MB) +PASS -- TEST 'regional_debug_intel' [27:00, 23:08](1037 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 06:16](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [09:51, 06:07](1162 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:45, 06:12](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:41, 06:14](1169 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:16](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:00, 06:34](1245 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 06:26](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 06:51](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:13](1161 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:28, 06:10](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:31, 06:03](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:34, 06:21](1169 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:31, 10:10](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [09:30, 06:13](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 07:32](1161 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:38, 06:13](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:47, 10:46](1173 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:43] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:08, 16:54](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:27] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 05:17](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:19](907 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:27](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:06, 07:59](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 04:06](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 04:40](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:10, 06:26](906 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:25](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:16, 49:06] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:09, 02:59](1109 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:24](1047 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:37](1025 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 31:05] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 05:41](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:11](1046 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:04](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [20:07, 18:41](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:45](883 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 10:53](1101 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:37](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:18](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [39:17, 38:12] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [11:29, 09:19](692 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 12:16](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:47, 13:02](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 17:18](800 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:52, 18:34](818 MB) +PASS -- TEST 'gnv1_nested_intel' [15:48, 13:04](1675 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:34] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:26, 10:40](774 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 10:59](749 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:21] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:49](1058 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:15](1030 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:41](921 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:44](926 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:48](919 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:27, 03:40](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:45](1057 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:34](923 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 08:16](886 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:33, 08:10](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:53](1061 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:19](2386 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:35](2346 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 08:06](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:39] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:38](1063 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:13, 01:50] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:39](236 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:23](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:51](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:16, 33:38] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 06:09](1915 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:17, 33:29] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:37, 05:41](1905 MB) + +PASS -- COMPILE 'atml_intel' [38:14, 37:25] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:49, 18:45](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [20:46, 18:24](1856 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 05:19](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:44] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:54, 09:22](1887 MB) + +PASS -- COMPILE 'atmw_intel' [36:16, 35:28] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:36, 03:13](1866 MB) + +PASS -- COMPILE 'atmaero_intel' [34:19, 33:55] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:04](1936 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:39, 06:32](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:17, 06:37](1741 MB) SYNOPSIS: -Starting Date/Time: 20240716 21:47:09 -Ending Date/Time: 20240717 02:06:24 -Total Time: 04h:19m:54s +Starting Date/Time: 20240719 07:42:32 +Ending Date/Time: 20240719 11:45:08 +Total Time: 04h:03m:15s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index cc666b3552..24218707bd 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: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,379 +35,287 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3326160 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [28:52, 24:11](2085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:38, 21:27](1964 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:55, 24:02](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [16:43, 11:37](1210 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:25, 24:38](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:13, 22:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:57, 21:59](1959 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:10, 10:13] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:23, 28:28](1943 MB) - -PASS -- COMPILE 's2swa_intel' [20:11, 19:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [27:07, 24:09](2145 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:37, 24:26](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:25, 10:50](1817 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [28:16, 25:05](2172 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [15:53, 11:20](1712 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:50, 23:45](2433 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [26:50, 23:59](2127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:50, 23:42](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [28:55, 24:03](2137 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [30:00, 22:56](2736 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:36, 27:04](3657 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [43:23, 27:56](3505 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:58, 19:27](2110 MB) - -PASS -- COMPILE 's2sw_intel' [19:15, 18:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [27:40, 24:17](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [24:47, 22:08](2047 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:10, 10:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:30, 14:59](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [10:11, 09:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:00, 09:14](2009 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:00] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:29, 18:45](2049 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 15:33] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:47, 12:33](3103 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:09, 07:16](3079 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:21, 04:24](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:19, 26:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [23:13, 19:55](2150 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:22, 21:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:36, 23:33](1999 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:22, 13:54](1254 MB) -FAILED: TEST TIMED OUT -- TEST 'cpld_mpi_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:13, 08:46] ( 1560 warnings 2000 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_intel' [, ]( MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:17, 15:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:39, 08:12](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:53, 06:49](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:47, 06:45](1601 MB) -PASS -- TEST 'control_latlon_intel' [09:41, 06:12](1595 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:43, 07:17](1595 MB) -PASS -- TEST 'control_c48_intel' [13:58, 10:47](1744 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:43, 10:03](861 MB) -PASS -- TEST 'control_c192_intel' [20:36, 16:56](1735 MB) -PASS -- TEST 'control_c384_intel' [28:36, 22:20](2010 MB) -PASS -- TEST 'control_c384gdas_intel' [21:55, 16:51](1355 MB) -PASS -- TEST 'control_stochy_intel' [04:58, 03:11](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:32, 01:45](478 MB) -PASS -- TEST 'control_lndp_intel' [04:47, 03:09](646 MB) -PASS -- TEST 'control_iovr4_intel' [06:03, 04:54](638 MB) -PASS -- TEST 'control_iovr5_intel' [06:00, 05:09](644 MB) -PASS -- TEST 'control_p8_intel' [09:02, 06:16](1889 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:42, 06:02](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 06:21](1892 MB) -PASS -- TEST 'control_restart_p8_intel' [06:11, 03:36](1097 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:21, 05:14](1877 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:49, 02:58](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:50, 05:03](1886 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:03, 05:26](1969 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:24, 09:20](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:48, 06:15](1954 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:27, 05:17](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [09:55, 06:11](1900 MB) -PASS -- TEST 'regional_control_intel' [14:23, 12:48](1088 MB) -PASS -- TEST 'regional_restart_intel' [09:14, 07:45](1084 MB) -PASS -- TEST 'regional_decomp_intel' [15:33, 13:59](1080 MB) -PASS -- TEST 'regional_2threads_intel' [13:21, 11:40](1082 MB) -PASS -- TEST 'regional_noquilt_intel' [13:31, 11:52](1386 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:15, 13:56](1093 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:59, 12:47](1086 MB) -PASS -- TEST 'regional_wofs_intel' [16:35, 14:50](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [16:21, 15:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [15:57, 13:46](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:41, 07:14](1305 MB) -PASS -- TEST 'rap_decomp_intel' [15:57, 13:44](1020 MB) -PASS -- TEST 'rap_2threads_intel' [15:24, 13:05](1165 MB) -PASS -- TEST 'rap_restart_intel' [12:37, 09:50](1048 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:19, 13:48](1063 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:23, 15:35](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [19:12, 15:31](1076 MB) -PASS -- TEST 'hrrr_control_intel' [09:21, 06:34](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:28, 06:46](1017 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:19, 06:58](1100 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:10, 03:55](955 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:10, 14:03](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:06, 17:15](1987 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [16:52, 16:10](2030 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 13:57] -PASS -- TEST 'control_csawmg_intel' [14:49, 12:39](1027 MB) -PASS -- TEST 'control_ras_intel' [08:49, 07:25](722 MB) - -PASS -- COMPILE 'wam_intel' [15:12, 14:42] ( 1 remarks ) -FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:16, 20:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [09:17, 05:14](1886 MB) -FAILED: TEST TIMED OUT -- TEST 'regional_control_faster_intel' [, ]( MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:12] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:57, 04:10](1624 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:44, 03:28](1619 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:49, 03:52](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:49, 03:32](823 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:23, 05:03](1139 MB) -PASS -- TEST 'control_ras_debug_intel' [04:47, 03:58](831 MB) -PASS -- TEST 'control_diag_debug_intel' [06:34, 04:09](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [05:20, 03:52](1914 MB) -PASS -- TEST 'regional_debug_intel' [25:10, 23:11](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [07:17, 05:59](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:13, 06:06](1210 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:22, 06:24](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 06:11](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:46, 06:02](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:11, 07:44](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:48, 06:58](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:50, 06:22](1216 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:27, 06:39](1213 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:50, 06:46](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:29, 07:03](1211 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 07:00](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:57, 10:37](1209 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 06:46](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:22, 07:42](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:50, 06:58](1207 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:39, 10:27](1208 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 07:53] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:13, 14:30](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:12, 14:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [14:46, 11:17](1164 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [24:35, 21:16](1010 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:59, 10:26](930 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [27:53, 25:12](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:05, 11:14](954 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:52, 10:16](906 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:38, 05:20](982 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:12, 09:20](876 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [21:12, 20:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:03, 05:48](1182 MB) -PASS -- TEST 'conus13km_2threads_intel' [07:04, 04:42](1132 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:22, 05:04](1080 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 13:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:27, 13:59](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:14, 06:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:15](1094 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:02, 05:35](1087 MB) -PASS -- TEST 'conus13km_debug_intel' [18:45, 16:13](1248 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:18](943 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:09, 12:56](1176 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:06, 15:57](1311 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 07:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:06, 06:25](1144 MB) - -PASS -- COMPILE 'hafsw_intel' [16:10, 15:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [23:29, 21:46](762 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:54, 22:12](1131 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:38, 23:11](834 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [30:40, 28:39](870 MB) -FAILED: TEST TIMED OUT -- TEST 'hafs_regional_atm_ocn_wav_intel' [, ]( MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:32, 22:31](512 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:54, 22:45](520 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [20:32, 18:22](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [25:04, 21:37](494 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [18:16, 17:11](538 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [17:56, 17:04](542 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [16:42, 13:03](599 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:04, 11:24](407 MB) -PASS -- TEST 'gnv1_nested_intel' [14:19, 10:09](1733 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:10, 08:28] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:33, 16:46](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:13, 24:08] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [20:58, 16:39](660 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:45, 17:20](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:12, 16:03] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:21, 13:41](725 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:13, 16:15] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:08, 12:13](837 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [14:39, 11:42](817 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:37, 17:44](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:45, 06:20](1150 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:59](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:42, 05:40](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:46, 05:30](1013 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:43, 05:14](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 04:01](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 03:10](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:51](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:20, 06:40](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:21, 06:29](999 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:56](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:22, 04:19](2382 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 04:21](2439 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:13, 06:03] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:33](1062 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 09:21] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 03:06](1143 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:35] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:35, 01:02](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 01:00](320 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:36](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:48] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 04:09](1976 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:14, 14:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:20, 04:04](1964 MB) - -PASS -- COMPILE 'atml_intel' [15:19, 15:05] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:53, 05:01](1875 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:43, 04:55](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:04, 02:57](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 08:50] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:40, 06:00](1909 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:36, 02:13](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [17:11, 16:40] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:30, 04:37](1998 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:27, 05:20](1776 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:11, 05:25](1787 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:12, 08:29] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:13, 25:57](4555 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:15](2096 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:28] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:44, 18:05](1957 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 19:17](2139 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 09:05](1199 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:52, 20:21](1882 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:38, 17:46](1954 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:37] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:45, 27:22](1940 MB) + +PASS -- COMPILE 's2swa_intel' [16:12, 15:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:41, 14:47](2147 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:22](2147 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:47, 07:46](1809 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:41, 14:30](2156 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 07:46](1709 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:13](2434 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 14:02](2128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:59](2048 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:22](2153 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 16:15](2750 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:01, 08:43](2725 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 11:27](3659 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 07:18](3499 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:51](2120 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 13:39](1983 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:29, 04:43](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 07:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:34](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:50] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:15](2009 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:30, 04:38](2054 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:51](3105 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:19](3085 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:14](2521 MB) + +PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:12] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:34, 15:07](2133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:13, 29:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:23, 18:09](2008 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 09:09](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 20:21](1919 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:25, 28:42](1974 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:23, 03:39](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 03:14](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:36, 03:04](1593 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:47, 03:08](1587 MB) +PASS -- TEST 'control_c48_intel' [09:48, 09:09](1743 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:55](857 MB) +PASS -- TEST 'control_c192_intel' [12:56, 11:16](1728 MB) +PASS -- TEST 'control_c384_intel' [13:42, 12:08](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:39, 09:24](1360 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:47](645 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:04](477 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:40](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:42](643 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:39](642 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:26](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:31](1887 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:24](1886 MB) +PASS -- TEST 'control_restart_p8_intel' [03:16, 02:06](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:11, 03:24](1875 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 02:03](1118 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:30](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:37](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:46](1885 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:48](1955 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:32, 03:28](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:45](1894 MB) +PASS -- TEST 'regional_control_intel' [07:40, 06:21](1071 MB) +PASS -- TEST 'regional_restart_intel' [04:34, 03:29](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:39, 06:39](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:29, 04:37](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 06:23](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 06:17](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 06:21](1094 MB) +PASS -- TEST 'regional_wofs_intel' [08:42, 07:32](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 12:09] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:26, 08:16](1056 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 05:04](1306 MB) +PASS -- TEST 'rap_decomp_intel' [10:09, 08:31](1025 MB) +PASS -- TEST 'rap_2threads_intel' [09:57, 08:16](1171 MB) +PASS -- TEST 'rap_restart_intel' [06:33, 04:18](1046 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:18, 08:12](1054 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:26](1029 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:10](1077 MB) +PASS -- TEST 'hrrr_control_intel' [05:55, 04:13](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:51, 04:20](1024 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:18, 04:04](1091 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:23](947 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:22, 08:04](1048 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:44](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:23](2024 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:50] +PASS -- TEST 'control_csawmg_intel' [07:45, 06:27](1022 MB) +PASS -- TEST 'control_ras_intel' [04:27, 03:25](723 MB) + +PASS -- COMPILE 'wam_intel' [11:12, 10:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:13](1668 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:56] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:23, 03:13](1894 MB) +PASS -- TEST 'regional_control_faster_intel' [06:41, 06:03](1087 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:41](1620 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:36](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:00](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:49](821 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:27](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:46](831 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [03:50, 03:01](1923 MB) +PASS -- TEST 'regional_debug_intel' [18:46, 17:39](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [05:29, 04:58](1213 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:48](1211 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:50](1218 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:55](1211 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:54](1208 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:12](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:13](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:02](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:21, 05:00](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:09](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:54](1206 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:05](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:04](1211 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:53](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:03](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:58](1210 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:29](1217 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:28] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 13:39](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:49](1166 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:04, 06:59](1001 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 03:42](934 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 07:08](1075 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:35](949 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:50](905 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:26, 05:13](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:58](885 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 18:50] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:36](1173 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:10](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:28](1087 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:15, 11:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 04:28](980 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:52](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:43](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [14:54, 14:10](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:25](946 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1178 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 14:23](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:53](1141 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:02](760 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 06:22](1134 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:37](832 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:21](866 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:21, 28:49](890 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 07:02](517 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 08:24](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:24](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 09:31](492 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 04:26](544 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:45](595 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) +PASS -- TEST 'gnv1_nested_intel' [07:13, 04:16](1732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:15, 05:37] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:17](594 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:15, 22:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:01, 12:58](674 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 13:05](741 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 14:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:04, 08:47](724 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:13, 13:33] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:37](834 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 07:25](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:01, 16:26](1202 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:12, 09:26] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:57](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:52](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:53](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1010 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 03:04](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:50](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:18, 06:30](1017 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:18, 06:24](1004 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:59](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 04:18](2437 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2381 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 05:15] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:33](1077 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 03:00](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 01:03](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 01:03](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:38](317 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 12:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 04:07](1968 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:18, 03:52](1963 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:53] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:47](1874 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:31, 04:49](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:49](1087 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 06:25] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:53](1900 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 12:08] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 02:05](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:12, 11:42] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1994 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:08, 05:11](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:19](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:03] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 21:02](4556 MB) SYNOPSIS: -Starting Date/Time: 20240717 08:36:40 -Ending Date/Time: 20240717 10:51:22 -Total Time: 02h:15m:24s +Starting Date/Time: 20240719 09:03:08 +Ending Date/Time: 20240719 10:34:12 +Total Time: 01h:32m:06s Compiles Completed: 41/41 -Tests Completed: 179/185 -Failed Tests: -* TEST cpld_control_c192_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_control_c192_p8_intel/err -* TEST cpld_mpi_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_mpi_pdlib_p8_intel/err -* TEST cpld_debug_pdlib_p8_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/cpld_debug_pdlib_p8_intel/err -* TEST control_wam_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/control_wam_intel/err -* TEST regional_control_faster_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/regional_control_faster_intel/err -* TEST hafs_regional_atm_ocn_wav_intel: FAILED: TEST TIMED OUT --- LOG: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1235393/hafs_regional_atm_ocn_wav_intel/err - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -a3771eaecd5c6e2e72e9ca1b474e4693c7705ba9 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (EP4-823-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1454326 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [20:11, 19:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:16, 16:45](2716 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:12, 21:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:26, 19:12](2002 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:18, 20:38](1914 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:11, 08:46] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:08, 29:00](1972 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 12:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:44, 12:40](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [22:12, 21:58] ( 1 remarks ) -PASS -- TEST 'regional_control_faster_intel' [07:45, 06:42](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 16:12] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:45, 29:17](870 MB) - -SYNOPSIS: -Starting Date/Time: 20240717 12:40:54 -Ending Date/Time: 20240717 13:48:08 -Total Time: 01h:07m:27s -Compiles Completed: 6/6 -Tests Completed: 7/7 +Tests Completed: 185/185 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 a09f25969f..99ed895c99 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: -31eab834de3e8b497f0a2b397567e8517d16dd72 +64efdbc9603ff8a1dad35b3050a8bbdccc306e1f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) + a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) + 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,312 +35,241 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_155005 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240718 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17359 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:42, 21:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [27:15, 01:32](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:37, 17:06] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:20, 01:45](1819 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:24, 01:41](1850 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:23, 02:19](981 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:21, 01:33](1799 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:29, 11:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [37:27, 01:08](1823 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:22, 04:45] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [44:35, 01:51](1843 MB) - -PASS -- COMPILE 's2swa_intel' [16:35, 16:19] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [33:21, 01:30](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:21, 01:49](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [25:11, 01:55](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [33:21, 01:27](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [25:11, 01:51](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [33:21, 01:02](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [33:21, 01:36](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:22, 01:35](3075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [33:21, 01:50](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:30, 04:31](4127 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:21, 05:52](4270 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:21, 01:51](3114 MB) - -PASS -- COMPILE 's2sw_intel' [11:30, 11:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:26, 00:53](1835 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [38:26, 01:58](1898 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:29, 10:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [38:27, 01:59](1894 MB) - -PASS -- COMPILE 's2s_intel' [24:42, 23:55] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [25:12, 01:08](2920 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [25:00, 01:24](2926 MB) -PASS -- TEST 'cpld_restart_c48_intel' [20:53, 01:18](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [37:00, 36:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:24, 02:15](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:40, 22:25] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:17, 01:00](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:54, 01:43](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [09:55, 01:37](1810 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:37, 21:59] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:34, 01:40](1857 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 11:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [27:01, 00:20](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [27:02, 00:28](1470 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [27:01, 01:24](1473 MB) -PASS -- TEST 'control_latlon_intel' [27:01, 01:17](1478 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [27:02, 01:30](1472 MB) -PASS -- TEST 'control_c48_intel' [27:00, 00:54](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [27:00, 00:51](713 MB) -PASS -- TEST 'control_c192_intel' [27:01, 00:34](1587 MB) -PASS -- TEST 'control_c384_intel' [27:06, 01:24](1904 MB) -PASS -- TEST 'control_c384gdas_intel' [27:05, 02:00](1089 MB) -PASS -- TEST 'control_stochy_intel' [27:02, 00:24](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [24:34, 00:53](331 MB) -PASS -- TEST 'control_lndp_intel' [27:01, 00:28](524 MB) -PASS -- TEST 'control_iovr4_intel' [27:02, 00:46](525 MB) -PASS -- TEST 'control_iovr5_intel' [27:02, 00:46](522 MB) -PASS -- TEST 'control_p8_intel' [27:01, 01:53](1775 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [26:00, 01:49](1774 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [26:00, 01:52](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [20:37, 00:41](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [24:51, 01:27](1758 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [19:38, 00:53](910 MB) -PASS -- TEST 'control_decomp_p8_intel' [24:51, 01:27](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [24:35, 01:37](1870 MB) -PASS -- TEST 'control_p8_lndp_intel' [23:27, 01:10](1768 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [23:26, 01:59](1827 MB) -PASS -- TEST 'control_p8_mynn_intel' [23:14, 01:47](1774 MB) -PASS -- TEST 'merra2_thompson_intel' [22:32, 01:43](1776 MB) -PASS -- TEST 'regional_control_intel' [22:19, 00:14](852 MB) -PASS -- TEST 'regional_restart_intel' [16:37, 00:22](849 MB) -PASS -- TEST 'regional_decomp_intel' [22:09, 00:58](849 MB) -PASS -- TEST 'regional_2threads_intel' [22:07, 00:53](904 MB) -PASS -- TEST 'regional_noquilt_intel' [22:06, 00:19](1175 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:33, 00:23](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:32, 01:12](862 MB) -PASS -- TEST 'regional_wofs_intel' [20:17, 01:05](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [36:02, 35:30] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [02:22, 01:44](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [02:23, 01:30](1097 MB) -PASS -- TEST 'rap_decomp_intel' [02:22, 01:28](913 MB) -PASS -- TEST 'rap_2threads_intel' [02:22, 01:52](1004 MB) -PASS -- TEST 'rap_restart_intel' [53:11, 01:14](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [02:22, 02:12](912 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [02:22, 01:58](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [52:43, 01:42](780 MB) -PASS -- TEST 'hrrr_control_intel' [02:22, 01:07](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [02:22, 01:03](901 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [02:23, 01:29](983 MB) -PASS -- TEST 'hrrr_control_restart_intel' [57:09, 00:59](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [02:22, 01:19](901 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [02:22, 00:56](1869 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [02:22, 01:14](1855 MB) - -PASS -- COMPILE 'csawmg_intel' [27:50, 26:37] -PASS -- TEST 'control_csawmg_intel' [09:37, 00:26](872 MB) -PASS -- TEST 'control_ras_intel' [09:37, 01:05](564 MB) - -PASS -- COMPILE 'wam_intel' [11:26, 10:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:45, 00:56](1566 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:42, 20:51] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [10:38, 02:19](1769 MB) -PASS -- TEST 'regional_control_faster_intel' [10:37, 00:24](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:25, 09:46] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:51, 01:19](1496 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:51, 01:25](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [16:51, 00:46](707 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:51, 01:04](704 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:51, 00:29](1017 MB) -PASS -- TEST 'control_ras_debug_intel' [16:51, 01:03](714 MB) -PASS -- TEST 'control_diag_debug_intel' [16:51, 01:12](1568 MB) -PASS -- TEST 'control_debug_p8_intel' [16:51, 00:52](1807 MB) -PASS -- TEST 'regional_debug_intel' [16:50, 00:23](893 MB) -PASS -- TEST 'rap_control_debug_intel' [16:51, 00:47](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [16:51, 00:46](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [16:51, 00:47](1083 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [16:51, 00:46](1088 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [16:42, 00:43](1089 MB) -PASS -- TEST 'rap_diag_debug_intel' [16:31, 00:38](1170 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [16:23, 00:37](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:52, 00:40](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [15:31, 00:46](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:28, 00:45](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:48, 00:45](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:53, 00:52](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:01, 00:38](1086 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:20, 00:56](1084 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:20, 00:59](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [12:20, 00:49](1094 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:06, 02:00](1094 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:24, 09:29] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [12:05, 01:18](1596 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [18:40, 18:24] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:23, 01:23](958 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 01:10](792 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:22, 02:03](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:22, 01:37](855 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:23, 02:23](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:22, 01:54](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [01:02, 01:36](689 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:46, 00:23](672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:36, 14:26] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:37, 01:10](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:38, 00:51](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:37, 00:40](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:38, 16:19] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:17, 01:50](808 MB) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [, ] -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_dyn32_phy32_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_qr_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_debug_2threads_intel' [, ]( MB) -SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'conus13km_radar_tten_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [10:31, 09:42] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 00:49](994 MB) - -PASS -- COMPILE 'hafsw_intel' [16:38, 16:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [00:13, 01:51](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [00:13, 00:51](971 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [00:11, 01:44](660 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [00:11, 01:17](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:12, 01:25](717 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:11, 01:03](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [00:12, 02:09](409 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [00:12, 01:42](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:51, 02:21](371 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:11, 01:28](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [58:43, 00:51](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [57:44, 00:48](501 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [57:11, 00:34](322 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:37, 16:56] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [55:22, 01:20](512 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:40, 18:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [51:00, 00:51](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [51:00, 01:39](713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:33, 16:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [52:06, 00:51](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:37, 16:39] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [52:00, 02:15](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [52:00, 01:15](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [51:58, 00:27](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:34, 17:54] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [49:47, 01:42](1829 MB) - -PASS -- COMPILE 'atml_intel' [17:33, 16:32] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [05:23, 04:48] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [18:33, 17:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [43:49, 01:22](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [43:49, 01:53](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [43:49, 01:50](2925 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [12:27, 11:17] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [47:44, 01:15](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [35:53, 35:11] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:55, 01:12](3098 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 22:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [07:14, 01:46](1825 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:56, 01:51](1855 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [44:56, 01:27](971 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:15, 01:57](1802 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [07:15, 01:11](1824 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:40] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 02:06](1848 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 11:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:27, 01:07](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:27, 01:32](3131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:07, 01:13](3063 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:26, 01:12](3150 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:06, 01:11](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:27, 01:29](3371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 01:01](3124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:28, 01:18](3079 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 01:29](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:35, 04:37](4122 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:02, 04:41](4267 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:27, 01:40](3113 MB) + +PASS -- COMPILE 's2sw_intel' [11:26, 11:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:28, 00:58](1836 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:28, 01:18](1898 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:22] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:28, 01:19](1893 MB) + +PASS -- COMPILE 's2s_intel' [22:39, 22:04] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 00:46](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:14, 01:10](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [00:04, 01:04](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:38, 22:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 01:57](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 01:46](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:59, 00:54](1011 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:00, 01:16](1810 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:30, 15:58] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:05, 01:45](1862 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:38, 20:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [57:48, 00:19](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [57:48, 01:18](1476 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [57:48, 01:23](1479 MB) +PASS -- TEST 'control_latlon_intel' [57:48, 01:00](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:48, 01:10](1472 MB) +PASS -- TEST 'control_c48_intel' [57:47, 01:16](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [57:47, 00:56](715 MB) +PASS -- TEST 'control_c192_intel' [57:48, 01:10](1584 MB) +PASS -- TEST 'control_c384_intel' [57:52, 01:49](1909 MB) +PASS -- TEST 'control_c384gdas_intel' [57:52, 02:37](1091 MB) +PASS -- TEST 'control_stochy_intel' [57:48, 00:23](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [53:19, 00:57](333 MB) +PASS -- TEST 'control_lndp_intel' [57:48, 00:29](525 MB) +PASS -- TEST 'control_iovr4_intel' [57:48, 00:40](525 MB) +PASS -- TEST 'control_iovr5_intel' [57:48, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [57:48, 01:06](1768 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [57:48, 01:22](1764 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:03](1769 MB) +PASS -- TEST 'control_restart_p8_intel' [51:18, 01:47](921 MB) +PASS -- TEST 'control_noqr_p8_intel' [55:56, 01:37](1767 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [49:37, 01:39](915 MB) +PASS -- TEST 'control_decomp_p8_intel' [55:26, 00:59](1760 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:22, 01:05](1857 MB) +PASS -- TEST 'control_p8_lndp_intel' [53:20, 01:05](1769 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [52:16, 01:45](1833 MB) +PASS -- TEST 'control_p8_mynn_intel' [52:15, 01:29](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [51:15, 01:41](1772 MB) +PASS -- TEST 'regional_control_intel' [50:59, 01:08](853 MB) +PASS -- TEST 'regional_restart_intel' [44:18, 00:25](853 MB) +PASS -- TEST 'regional_decomp_intel' [50:54, 00:50](857 MB) +PASS -- TEST 'regional_2threads_intel' [50:51, 00:50](909 MB) +PASS -- TEST 'regional_noquilt_intel' [50:49, 00:21](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:12, 00:18](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:09, 01:14](853 MB) +PASS -- TEST 'regional_wofs_intel' [50:08, 00:32](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [33:52, 32:35] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [45:35, 01:31](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:36, 01:01](1088 MB) +PASS -- TEST 'rap_decomp_intel' [45:35, 01:17](911 MB) +PASS -- TEST 'rap_2threads_intel' [45:35, 01:42](999 MB) +PASS -- TEST 'rap_restart_intel' [36:27, 02:03](781 MB) +PASS -- TEST 'rap_sfcdiff_intel' [45:35, 01:57](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:35, 01:41](907 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:59, 01:45](781 MB) +PASS -- TEST 'hrrr_control_intel' [45:35, 01:11](902 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [45:35, 01:43](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [45:36, 01:36](984 MB) +PASS -- TEST 'hrrr_control_restart_intel' [40:12, 00:42](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [45:35, 02:00](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:35, 00:46](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:32, 01:04](1858 MB) + +PASS -- COMPILE 'csawmg_intel' [18:34, 18:08] +PASS -- TEST 'control_csawmg_intel' [59:53, 01:08](876 MB) +PASS -- TEST 'control_ras_intel' [59:53, 01:01](563 MB) + +PASS -- COMPILE 'wam_intel' [13:28, 12:59] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [04:58, 00:42](1567 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:33, 13:28] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [49:57, 01:23](1769 MB) +PASS -- TEST 'regional_control_faster_intel' [49:45, 00:50](851 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:42, 18:16] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:34, 00:53](1504 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:57](1500 MB) +PASS -- TEST 'control_stochy_debug_intel' [44:23, 00:34](706 MB) +PASS -- TEST 'control_lndp_debug_intel' [44:17, 00:37](702 MB) +PASS -- TEST 'control_csawmg_debug_intel' [43:26, 00:25](1016 MB) +PASS -- TEST 'control_ras_debug_intel' [43:23, 01:02](713 MB) +PASS -- TEST 'control_diag_debug_intel' [43:06, 01:09](1564 MB) +PASS -- TEST 'control_debug_p8_intel' [42:59, 00:51](1799 MB) +PASS -- TEST 'regional_debug_intel' [42:56, 00:16](904 MB) +PASS -- TEST 'rap_control_debug_intel' [42:24, 00:53](1088 MB) +PASS -- TEST 'hrrr_control_debug_intel' [41:49, 00:37](1086 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [41:45, 00:28](1088 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [40:23, 00:43](1093 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 00:44](1085 MB) +PASS -- TEST 'rap_diag_debug_intel' [39:51, 01:10](1169 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:50, 01:08](1092 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:36, 00:53](1093 MB) +PASS -- TEST 'rap_lndp_debug_intel' [39:30, 00:43](1091 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:29, 00:40](1090 MB) +PASS -- TEST 'rap_noah_debug_intel' [39:24, 00:32](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [38:53, 00:52](1089 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:18, 01:04](1086 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [38:16, 00:26](1082 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [37:37, 00:44](1097 MB) +PASS -- TEST 'rap_flake_debug_intel' [37:16, 00:43](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:14, 01:48](1095 MB) + +PASS -- COMPILE 'wam_debug_intel' [24:43, 19:06] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [36:53, 01:03](1595 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:04, 35:34] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:01, 01:10](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:53, 01:10](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:23, 01:44](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 01:28](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:12, 01:40](838 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 01:57](790 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:34, 01:15](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:16, 00:48](671 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:50, 23:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [36:41, 00:57](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [32:21, 00:51](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [32:20, 00:41](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:33, 12:29] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [48:57, 01:09](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:56, 19:01] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:31, 00:25](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:27, 00:33](955 MB) +PASS -- TEST 'conus13km_debug_intel' [32:14, 01:26](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [32:07, 01:04](726 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [31:59, 01:02](1054 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:59, 01:01](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:35, 15:25] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [36:26, 00:44](997 MB) + +PASS -- COMPILE 'hafsw_intel' [11:29, 10:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [36:05, 01:59](617 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:02, 01:05](965 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [35:58, 02:00](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [35:57, 01:48](696 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:37, 02:27](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [35:15, 01:05](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:15, 02:26](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [33:57, 00:51](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:58, 02:54](373 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:29, 01:24](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:24, 00:53](422 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:51, 01:25](498 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:57, 00:28](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:29] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:58, 01:30](517 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:56, 19:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 01:32](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:32, 01:19](716 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:42] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:56, 00:58](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:25, 09:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [29:39, 02:15](657 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:37, 01:54](644 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:54, 00:14](882 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:29, 13:51] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:12, 01:00](1829 MB) + +PASS -- COMPILE 'atml_intel' [20:36, 19:46] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:31, 13:23] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:50, 15:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:22, 01:13](3023 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [21:22, 01:39](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:22, 01:13](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:25] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:10, 01:51](4439 MB) SYNOPSIS: -Starting Date/Time: 20240717 16:09:47 -Ending Date/Time: 20240717 17:38:50 -Total Time: 01h:29m:40s -Compiles Completed: 32/33 -Tests Completed: 150/156 -Failed Compiles: -* COMPILE rrfs_dyn32_phy32_debug_intel: FAILED: UNABLE TO FINISH COMPILE --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_wcoss2/compile_rrfs_dyn32_phy32_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -31eab834de3e8b497f0a2b397567e8517d16dd72 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b16) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 3581423f397e2eb0c1f0cd7f6b728593511278a9 FV3 (remotes/origin/develop-88-g3581423) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 8103e21cd095eb2d81a5152019d6133a0374bb0a FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5269-g8103e21c) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240624 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_48576 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:16, 03:45] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [43:44, 00:57](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [43:44, 01:03](956 MB) -PASS -- TEST 'conus13km_debug_intel' [43:44, 01:06](1049 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [43:44, 00:59](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [43:45, 01:19](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:44, 00:55](1120 MB) - -SYNOPSIS: -Starting Date/Time: 20240717 21:11:58 -Ending Date/Time: 20240717 21:34:40 -Total Time: 00h:23m:03s -Compiles Completed: 1/1 -Tests Completed: 6/6 +Starting Date/Time: 20240719 15:28:45 +Ending Date/Time: 20240719 17:07:59 +Total Time: 01h:40m:04s +Compiles Completed: 33/33 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..9b0b0ff136 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,118 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 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_bmark_p8 intel +cpld_restart_bmark_p8 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_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 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_c192 intel +control_c384 intel +control_c384gdas intel +control_stochy intel +control_stochy_restart intel +control_lndp intel +control_iovr4 intel +control_iovr5 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 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 +control_csawmg intel +control_ras intel +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_stochy_debug intel +control_lndp_debug intel +control_ras_debug intel +control_diag_debug intel +control_debug_p8 intel +control_wam_debug intel +conus13km_debug_2threads intel +hafs_regional_atm intel +hafs_regional_atm_thompson_gfdlsf intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_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_regional_storm_following_1nest_atm_ocn intel +hafs_global_storm_following_1nest_atm intel +hafs_regional_storm_following_1nest_atm_ocn_debug intel +hafs_regional_storm_following_1nest_atm_ocn_wav intel +hafs_regional_storm_following_1nest_atm_ocn_wav_inline 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_sbs 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_debug intel +control_c48 gnu +control_stochy gnu +control_ras gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_flake gnu +control_diag_debug gnu +control_ras_debug gnu +control_stochy_debug gnu +control_debug_p8 gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu + From 7544ee8a6a432c005e172dbf9e089a7d4827f254 Mon Sep 17 00:00:00 2001 From: HelinWei-NOAA <48133472+HelinWei-NOAA@users.noreply.github.com> Date: Wed, 24 Jul 2024 08:04:21 -0400 Subject: [PATCH 3/8] Land surface upgrades for HR4 (#2354) * HR4 land surface upgrades to address surface cold biases * update noahmp table --- FV3 | 2 +- NOAHMP-interface/noahmp | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_derecho.log | 617 ++++++++------ tests/logs/RegressionTests_gaea.log | 550 ++++++------ tests/logs/RegressionTests_hera.log | 794 ++++++++---------- tests/logs/RegressionTests_hercules.log | 733 ++++++++-------- tests/logs/RegressionTests_jet.log | 488 +++++------ tests/logs/RegressionTests_orion.log | 550 ++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/parm/noahmptable.tbl | 32 +- tests/test_changes.list | 51 +- 15 files changed, 2184 insertions(+), 2199 deletions(-) diff --git a/FV3 b/FV3 index 2527c11754..927261d391 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 2527c11754f1b8144dcbfb59952d0e06446a0166 +Subproject commit 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp index ec38ea3d90..3ac32f0db7 160000 --- a/NOAHMP-interface/noahmp +++ b/NOAHMP-interface/noahmp @@ -1 +1 @@ -Subproject commit ec38ea3d902644cd4519d5fe060316859ccdc108 +Subproject commit 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index e46a9938cf..dcd06eace9 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240718 +export BL_DATE=20240722 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4cb0905397..72195a564d 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jul 19 00:14:31 UTC 2024 +Mon Jul 22 20:34:33 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 276.279391 - 0: The maximum resident set size (KB) = 1452840 + 0: The total amount of wall time = 290.687493 + 0: The maximum resident set size (KB) = 1455104 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 990.272278 - 0: The maximum resident set size (KB) = 1417316 + 0: The total amount of wall time = 991.650717 + 0: The maximum resident set size (KB) = 1439732 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 246.988630 - 0: The maximum resident set size (KB) = 1434736 + 0: The total amount of wall time = 255.224911 + 0: The maximum resident set size (KB) = 1430828 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 250.035763 - 0: The maximum resident set size (KB) = 1422624 + 0: The total amount of wall time = 252.620393 + 0: The maximum resident set size (KB) = 1433224 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 245.869118 - 0: The maximum resident set size (KB) = 1433972 + 0: The total amount of wall time = 262.750592 + 0: The maximum resident set size (KB) = 1435888 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 264.558137 - 0: The maximum resident set size (KB) = 1429592 + 0: The total amount of wall time = 252.883306 + 0: The maximum resident set size (KB) = 1432108 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2536879/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/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 = 246.179584 - 0: The maximum resident set size (KB) = 1432416 + 0: The total amount of wall time = 257.944152 + 0: The maximum resident set size (KB) = 1433316 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 19 01:24:28 UTC 2024 -Elapsed time: 01h:09m:58s. Have a nice day! +Mon Jul 22 21:47:03 UTC 2024 +Elapsed time: 01h:12m:31s. 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 2746035280..73884b41fa 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 @@ -Thu Jul 18 23:13:29 UTC 2024 +Mon Jul 22 19:01:08 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 1357.749216 - 0: The maximum resident set size (KB) = 1508564 + 0: The total amount of wall time = 1574.601495 + 0: The maximum resident set size (KB) = 1510852 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 429.276836 - 0: The maximum resident set size (KB) = 1490048 + 0: The total amount of wall time = 435.767884 + 0: The maximum resident set size (KB) = 1538868 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1423363/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/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 = 415.555946 - 0: The maximum resident set size (KB) = 1523724 + 0: The total amount of wall time = 435.149030 + 0: The maximum resident set size (KB) = 1523140 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 19 00:14:30 UTC 2024 -Elapsed time: 01h:01m:02s. Have a nice day! +Mon Jul 22 20:34:32 UTC 2024 +Elapsed time: 01h:33m:24s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 07bd280888..a85adfdae1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Jul 18 18:52:58 UTC 2024 +Mon Jul 22 16:30:51 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 1502.224676 - 0: The maximum resident set size (KB) = 751036 + 0: The total amount of wall time = 1397.064435 + 0: The maximum resident set size (KB) = 762344 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2256.388361 - 0: The maximum resident set size (KB) = 711284 + 0: The total amount of wall time = 2174.865742 + 0: The maximum resident set size (KB) = 709236 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2204.842817 - 0: The maximum resident set size (KB) = 698332 + 0: The total amount of wall time = 2179.697019 + 0: The maximum resident set size (KB) = 717568 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3107506/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/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 = 2259.205585 - 0: The maximum resident set size (KB) = 704392 + 0: The total amount of wall time = 2239.474214 + 0: The maximum resident set size (KB) = 705128 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Jul 18 23:13:28 UTC 2024 -Elapsed time: 04h:20m:30s. Have a nice day! +Mon Jul 22 19:01:08 UTC 2024 +Elapsed time: 02h:30m:17s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 30ac89ebae..301236ca75 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,354 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127189 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_70873 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [23:24, 22:36] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:47, 05:32](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:26, 24:42] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:35](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:51](1953 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:14, 07:58](1084 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:58, 16:44](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:26, 24:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:14, 14:28](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:22, 12:46] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [23:24, 22:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:41, 06:13](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:05, 06:33](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:52, 04:06](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:49, 06:28](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:58, 04:13](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:41, 06:02](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:41, 06:08](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:37, 05:21](3540 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:01, 06:22](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:56, 09:42](3894 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:54, 06:42](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:42, 10:45](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:53, 07:19](4672 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:32, 06:06](3208 MB) - -PASS -- COMPILE 's2sw_intel' [21:24, 20:44] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:34, 04:54](1928 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:49, 05:06](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:22, 12:44] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:22, 08:33](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:22, 12:07] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:35, 05:55](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:22, 16:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:08, 05:01](1991 MB) - -PASS -- COMPILE 's2s_intel' [17:22, 16:41] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:17, 06:53](2939 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:13, 02:31](2951 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:12, 01:37](2343 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:25, 26:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:27, 06:22](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:23, 23:12] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:59, 14:57](1941 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:28, 08:07](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:44, 16:39](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:19, 11:44] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:32, 23:57](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:22, 15:49] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:27](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:29](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:34](1580 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 02:29](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:12, 02:30](1574 MB) -PASS -- TEST 'control_c48_intel' [08:14, 06:05](1616 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:38, 05:17](735 MB) -PASS -- TEST 'control_c192_intel' [12:17, 08:45](1694 MB) -PASS -- TEST 'control_c384_intel' [16:06, 08:45](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [15:27, 07:06](1202 MB) -PASS -- TEST 'control_stochy_intel' [02:32, 01:29](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 00:53](443 MB) -PASS -- TEST 'control_lndp_intel' [02:29, 01:22](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:35, 02:06](622 MB) -PASS -- TEST 'control_iovr5_intel' [03:40, 02:11](620 MB) -PASS -- TEST 'control_p8_intel' [05:29, 03:16](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:55, 03:13](1859 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:51, 03:11](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [04:25, 02:11](1017 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:49, 03:18](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 02:15](1018 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:37, 03:15](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:34, 03:10](1954 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:03](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:52, 04:08](1929 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:46, 03:23](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [05:30, 03:38](1871 MB) -PASS -- TEST 'regional_control_intel' [06:53, 05:08](874 MB) -PASS -- TEST 'regional_restart_intel' [05:06, 03:13](870 MB) -PASS -- TEST 'regional_decomp_intel' [06:55, 05:17](873 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 05:00](1187 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:51, 05:05](879 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:01, 05:12](882 MB) -PASS -- TEST 'regional_wofs_intel' [06:58, 05:42](1605 MB) - -PASS -- COMPILE 'rrfs_intel' [14:21, 13:24] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:29, 06:08](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:28, 03:43](1194 MB) -PASS -- TEST 'rap_decomp_intel' [08:29, 06:25](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:34, 05:41](1101 MB) -PASS -- TEST 'rap_restart_intel' [05:19, 03:17](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:07](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 06:23](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 04:38](884 MB) -PASS -- TEST 'hrrr_control_intel' [05:09, 03:18](1004 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:09, 03:22](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:09, 02:50](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:45](839 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:37, 06:01](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:03, 07:27](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:05, 07:11](1951 MB) - -PASS -- COMPILE 'csawmg_intel' [13:13, 11:49] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:14, 06:43](965 MB) -PASS -- TEST 'control_ras_intel' [04:40, 02:57](661 MB) - -PASS -- COMPILE 'wam_intel' [12:15, 11:23] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:36, 10:05](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:15, 17:48] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:35, 03:09](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:59, 05:00](871 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 13:23] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:03, 02:32](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:04, 02:36](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:41, 02:52](809 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 02:41](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:00, 04:37](1120 MB) -PASS -- TEST 'control_ras_debug_intel' [03:43, 02:39](816 MB) -PASS -- TEST 'control_diag_debug_intel' [04:51, 02:35](1664 MB) -PASS -- TEST 'control_debug_p8_intel' [05:01, 03:30](1903 MB) -PASS -- TEST 'regional_debug_intel' [19:01, 17:05](932 MB) -PASS -- TEST 'rap_control_debug_intel' [06:35, 04:47](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:38, 04:34](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:34, 04:40](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:48](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:39, 04:55](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:40, 04:55](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:40, 04:51](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:37, 04:48](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:43, 04:53](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:49](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:44, 04:35](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 04:42](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:35, 07:33](1191 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:37, 04:40](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:47, 05:33](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:46, 04:44](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:16, 07:59](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:13, 07:27] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:05, 12:16](1703 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:32] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:35, 03:34](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:09, 05:11](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:12, 02:52](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 04:47](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:16, 02:28](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 02:57](882 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:03, 03:56](793 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:42, 01:35](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:54, 01:55](1090 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:33, 01:00](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:12](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:20, 11:43] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:11, 03:39](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:42] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:33](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:36, 04:32](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [15:45, 13:16](1152 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:37, 13:26](837 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:01, 07:45](1152 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 13:25](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:14, 07:28] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 04:37](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [19:22, 18:48] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:34, 04:42](718 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:52, 05:16](1063 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:16, 06:33](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:24, 11:07](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:13](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:29, 04:44](474 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:51](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:07, 02:24](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:00, 06:12](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:12, 03:22](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:21, 03:07](515 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:24, 03:54](587 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:15](428 MB) -PASS -- TEST 'gnv1_nested_intel' [07:29, 04:10](1721 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:14, 08:51] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:19, 12:17](625 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [28:23, 27:28] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:40, 07:15](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:53, 07:20](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 20:06] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:40, 05:32](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:24, 16:12] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:25, 05:40](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:37, 05:44](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:13, 16:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:19, 09:09] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:30, 02:31](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:50, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:43, 02:22](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:43, 02:27](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:25](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:45, 02:32](764 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:45, 02:32](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:23](639 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:45, 05:41](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 05:44](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:27, 02:33](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:49, 03:57](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:51, 03:57](2025 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:21, 06:28] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:40, 05:11](748 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:21, 09:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:32, 02:31](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:19, 03:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:45, 01:19](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:15](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:22, 13:51] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:52, 04:02](1926 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:20, 12:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 03:45](1900 MB) - -PASS -- COMPILE 'atml_intel' [17:21, 15:55] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:40, 07:04](1884 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:42, 07:17](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:00, 04:03](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:20, 10:28] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:45, 06:12](1938 MB) - -PASS -- COMPILE 'atmw_intel' [15:19, 14:33] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:15](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [13:19, 12:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:16](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:58, 04:21](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:22, 04:24](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:28] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:12, 21:53](4534 MB) +PASS -- COMPILE 's2swa_32bit_intel' [25:18, 21:53] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 05:31](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:20, 23:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:59, 14:42](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:50](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:53](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:36, 16:25](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 23:56] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:52, 14:22](1918 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:32, 11:57] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [37:34, 21:25] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:26, 06:02](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:10](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:14, 03:51](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:24, 06:15](3253 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:11](3184 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 05:54](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:08, 06:17](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:02, 05:06](3539 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:15](3235 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_bmark_p8_intel' [27:40, 10:29](4519 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 06:57](4665 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:49, 05:46](3210 MB) + +PASS -- COMPILE 's2sw_intel' [30:20, 19:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:58](1925 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:47, 04:56](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:33, 11:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:10](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [27:33, 11:08] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:39, 05:51](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [31:34, 15:43] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:25, 04:52](1987 MB) + +PASS -- COMPILE 's2s_intel' [19:16, 16:00] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [03:25, 06:47](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 02:21](2947 MB) +PASS -- TEST 'cpld_restart_c48_intel' [39:21, 01:38](2343 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:32, 25:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 06:07](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 22:11] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 14:36](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:48](1110 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 16:41](1907 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [01:27, 11:10] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 23:42](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [03:23, 15:14] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:37, 03:24](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1571 MB) +PASS -- TEST 'control_latlon_intel' [04:15, 02:24](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1562 MB) +PASS -- TEST 'control_c48_intel' [08:19, 06:05](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:43, 05:17](734 MB) +PASS -- TEST 'control_c192_intel' [11:59, 08:44](1687 MB) +PASS -- TEST 'control_c384_intel' [14:08, 08:45](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [12:54, 07:07](1197 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:26](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:53](435 MB) +PASS -- TEST 'control_lndp_intel' [02:34, 01:22](626 MB) +PASS -- TEST 'control_iovr4_intel' [03:38, 02:09](621 MB) +PASS -- TEST 'control_iovr5_intel' [03:38, 02:08](622 MB) +PASS -- TEST 'control_p8_intel' [05:21, 03:09](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:28, 03:10](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:01](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 02:14](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:10](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:58](1020 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:08](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:05](1956 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:00](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:17, 04:01](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:09](1873 MB) +PASS -- TEST 'merra2_thompson_intel' [05:25, 03:26](1870 MB) +PASS -- TEST 'regional_control_intel' [06:55, 04:58](869 MB) +PASS -- TEST 'regional_restart_intel' [04:54, 02:57](876 MB) +PASS -- TEST 'regional_decomp_intel' [06:48, 05:10](872 MB) +PASS -- TEST 'regional_noquilt_intel' [06:53, 04:55](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:56](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 05:02](872 MB) +PASS -- TEST 'regional_wofs_intel' [07:59, 05:41](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [59:23, 13:03] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:10, 06:09](1012 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:41](1193 MB) +PASS -- TEST 'rap_decomp_intel' [08:10, 06:25](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:10, 05:39](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:05, 03:13](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:08, 06:06](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 06:22](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:35](881 MB) +PASS -- TEST 'hrrr_control_intel' [05:00, 03:14](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 03:18](1007 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:00, 02:48](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:47](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:06, 06:00](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:21](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:07](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:21, 11:06] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:51, 06:26](963 MB) +PASS -- TEST 'control_ras_intel' [04:28, 02:52](657 MB) + +PASS -- COMPILE 'wam_intel' [11:21, 10:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:53, 09:56](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:24] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:03](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [06:48, 04:46](872 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:29] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:35](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:30](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:53](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:37](810 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:53, 04:33](1122 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:41](817 MB) +PASS -- TEST 'control_diag_debug_intel' [05:11, 02:39](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [04:49, 03:12](1908 MB) +PASS -- TEST 'regional_debug_intel' [17:49, 16:27](930 MB) +PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:41](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:44](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:33, 04:43](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:16, 04:53](1274 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:32, 04:45](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:57](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:42](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:41](1194 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:36, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:41](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:34](1192 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:37](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:47](1194 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:38](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:10, 07:52](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 06:38] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:09, 12:16](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:31](1056 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:06](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:45](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:45](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:26](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:52](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:30](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:20, 15:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:41, 01:52](1088 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:57](1087 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:18, 11:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:03, 03:37](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:17, 07:03] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:37](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:33](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [16:06, 13:20](1154 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:24](837 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:42](1153 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:37](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 06:52] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:47](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:37](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:05](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:25](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:49, 11:00](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:08, 12:11](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 04:40](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 05:49](491 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:17](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 06:12](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:21](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:06](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:52](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:19](427 MB) +PASS -- TEST 'gnv1_nested_intel' [07:34, 04:07](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:16] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:11](626 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [28:16, 27:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:30, 07:12](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:12](689 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:06] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:36, 05:24](678 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:20, 15:45] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:37](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 05:40](739 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:17](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:37] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:30](765 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:24](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](751 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](646 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:53, 05:36](694 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:55, 05:36](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:28](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:46, 03:55](2018 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 03:53](2021 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:55] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:12](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:34] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:29](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:12, 01:16](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:11, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:47](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:13, 12:58] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:59, 04:05](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:47](1899 MB) + +PASS -- COMPILE 'atml_intel' [16:13, 15:13] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:52, 06:51](1886 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 06:40](1884 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:57](1037 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:12, 10:03] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:19](1920 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 14:09] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:09](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [13:19, 12:20] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:12](3121 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:19](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:22](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:18, 08:14] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:48, 21:48](4536 MB) SYNOPSIS: -Starting Date/Time: 20240719 10:21:56 -Ending Date/Time: 20240719 12:00:26 -Total Time: 01h:39m:41s +Starting Date/Time: 20240722 21:35:07 +Ending Date/Time: 20240723 00:11:51 +Total Time: 02h:37m:47s Compiles Completed: 41/41 -Tests Completed: 183/183 +Tests Completed: 181/183 +Failed Tests: +* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log +* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_restart_c192_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +ec399e628231e03101314fdb378214c340cf96cc + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_56330 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_intel' [23:16, 21:55] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:38, 09:39](3892 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:17, 06:39](3629 MB) + +SYNOPSIS: +Starting Date/Time: 20240723 10:34:25 +Ending Date/Time: 20240723 11:22:06 +Total Time: 00h:47m:51s +Compiles Completed: 1/1 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index e42e626032..fa74099679 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_218421 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_14217 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [53:17, 52:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:28, 07:23](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:50, 13:51](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:51, 15:16](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 06:57](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:02, 15:12](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:17, 53:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:26, 14:18](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [49:13, 48:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:49, 24:18](1951 MB) - -PASS -- COMPILE 's2swa_intel' [52:14, 51:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:09, 08:45](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:41, 08:20](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [14:39, 06:45](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:09, 08:41](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:39, 06:31](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:49, 06:53](3466 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:08, 08:07](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:24, 07:25](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:41, 08:23](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:58, 10:34](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:36, 07:57](3610 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [25:26, 13:09](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 09:24](4361 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 08:22](3207 MB) - -PASS -- COMPILE 's2sw_intel' [51:17, 51:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:40, 05:23](1932 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:40, 05:52](1995 MB) - -PASS -- COMPILE 's2swa_debug_intel' [49:13, 48:29] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [18:39, 10:42](3278 MB) - -PASS -- COMPILE 's2sw_debug_intel' [43:17, 42:53] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:59, 06:33](1957 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [46:17, 45:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:57, 05:30](1998 MB) - -PASS -- COMPILE 's2s_intel' [45:17, 44:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:32, 06:36](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [10:22, 02:09](2929 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:25, 01:11](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [02:17, 01:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 08:14](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [55:23, 55:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:07, 15:37](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:18, 08:25](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 18:11](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [47:23, 46:10] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:33, 27:03](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [40:13, 39:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:47, 04:05](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:46, 03:06](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:42, 03:35](1569 MB) -PASS -- TEST 'control_latlon_intel' [07:17, 03:34](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:27, 03:08](1571 MB) -PASS -- TEST 'control_c48_intel' [11:38, 06:32](1599 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:31, 05:44](719 MB) -PASS -- TEST 'control_c192_intel' [13:53, 10:28](1684 MB) -PASS -- TEST 'control_c384_intel' [22:18, 18:36](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [20:49, 14:22](1181 MB) -PASS -- TEST 'control_stochy_intel' [04:44, 02:20](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:03, 01:22](425 MB) -PASS -- TEST 'control_lndp_intel' [03:36, 01:54](623 MB) -PASS -- TEST 'control_iovr4_intel' [05:29, 02:59](619 MB) -PASS -- TEST 'control_iovr5_intel' [05:50, 03:12](620 MB) -PASS -- TEST 'control_p8_intel' [09:03, 04:02](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:35, 03:34](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:40, 03:47](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [06:41, 02:07](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:30, 03:32](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:02](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:29, 04:01](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:34, 03:14](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:19, 05:30](1859 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:37, 04:25](1917 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:52, 03:37](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [08:39, 03:46](1865 MB) -PASS -- TEST 'regional_control_intel' [07:38, 04:55](859 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:38](861 MB) -PASS -- TEST 'regional_decomp_intel' [07:13, 05:00](861 MB) -PASS -- TEST 'regional_2threads_intel' [06:23, 03:11](997 MB) -PASS -- TEST 'regional_noquilt_intel' [07:19, 04:55](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:50](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:14, 05:07](859 MB) -PASS -- TEST 'regional_wofs_intel' [09:07, 06:35](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:03, 06:55](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 04:03](1190 MB) -PASS -- TEST 'rap_decomp_intel' [13:56, 07:13](1009 MB) -PASS -- TEST 'rap_2threads_intel' [13:03, 06:14](1095 MB) -PASS -- TEST 'rap_restart_intel' [07:55, 03:55](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:53, 06:52](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:58, 07:11](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 05:30](880 MB) -PASS -- TEST 'hrrr_control_intel' [08:27, 03:52](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:17, 03:57](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:55, 03:04](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:58, 02:00](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:06, 07:13](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:50, 08:06](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:11, 07:59](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [34:13, 33:42] -PASS -- TEST 'control_csawmg_intel' [09:36, 06:48](964 MB) -PASS -- TEST 'control_ras_intel' [06:02, 03:31](657 MB) - -PASS -- COMPILE 'wam_intel' [35:21, 34:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:01, 11:59](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [41:16, 40:18] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:04, 03:41](1859 MB) -PASS -- TEST 'regional_control_faster_intel' [07:04, 04:58](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [39:19, 38:48] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:44, 03:08](1587 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:18, 03:07](1590 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:03, 03:30](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:01, 02:59](793 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 04:32](1106 MB) -PASS -- TEST 'control_ras_debug_intel' [05:10, 03:08](803 MB) -PASS -- TEST 'control_diag_debug_intel' [06:13, 03:16](1655 MB) -PASS -- TEST 'control_debug_p8_intel' [06:03, 03:22](1890 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 16:12](900 MB) -PASS -- TEST 'rap_control_debug_intel' [06:15, 05:00](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:21, 05:12](1174 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:04, 05:02](1178 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:04, 05:01](1178 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:14, 05:03](1180 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:20, 05:36](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:08, 05:13](1181 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:18, 05:21](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:16, 05:09](1182 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:12, 05:05](1180 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:04, 05:02](1177 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:07, 05:11](1178 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:12, 08:02](1177 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 04:57](1173 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:19, 06:06](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:26](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 08:41](1183 MB) - -PASS -- COMPILE 'wam_debug_intel' [32:17, 31:24] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:35, 13:51](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [29:19, 28:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:54](1045 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:51, 06:22](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:48, 03:52](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:15, 05:23](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:00, 02:59](934 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:01, 03:48](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:46, 04:34](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:23, 01:57](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:15, 32:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:38, 02:17](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:36, 01:13](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:40, 02:06](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [29:16, 28:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:37, 04:30](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:14, 25:41] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:28, 05:16](1057 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 04:59](1057 MB) -PASS -- TEST 'conus13km_debug_intel' [18:03, 14:21](1137 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:03, 14:09](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:16, 08:23](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:49, 14:20](1209 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [20:19, 19:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:36, 05:22](1086 MB) - -PASS -- COMPILE 'hafsw_intel' [35:15, 35:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:32, 05:25](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:53, 04:36](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:09, 07:33](757 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:15, 11:29](780 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:10, 12:44](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:15, 05:20](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:51, 06:56](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:13, 02:57](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:30, 08:01](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:23, 03:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:04, 03:32](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:07, 05:52](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:17, 01:43](403 MB) -PASS -- TEST 'gnv1_nested_intel' [11:24, 06:12](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [30:15, 29:40] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:47, 12:48](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [44:12, 43:48] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:49, 07:44](615 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:49](788 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:12, 32:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:17, 06:32](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [30:15, 29:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:03, 06:14](738 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 06:13](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:13, 20:10](891 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [24:11, 24:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:05, 02:35](747 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:44, 01:34](750 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:05, 02:26](640 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:05, 02:28](636 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:53, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:07, 02:34](761 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:05, 02:33](760 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:07, 02:25](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:00, 06:11](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:40, 06:00](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:55, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:01, 04:39](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:01, 04:40](2015 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [20:16, 19:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:01, 05:35](744 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [23:18, 22:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:43, 02:35](747 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [10:14, 09:33] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:25, 02:36](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:16, 01:38](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:14, 02:19](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:12, 26:00] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:35, 04:10](1924 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [24:19, 23:43] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:21](1913 MB) - -PASS -- COMPILE 'atml_intel' [25:12, 24:16] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:38, 07:01](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:38, 07:01](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 03:55](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [20:11, 20:08] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:31, 06:45](1931 MB) - -PASS -- COMPILE 'atmw_intel' [22:11, 21:18] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:00, 02:21](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [20:11, 19:19] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:21, 06:08](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:22, 06:46](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:16, 07:08](3016 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [15:17, 14:20] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:23](4483 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:12, 40:46] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:04, 08:00](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:15, 41:14] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:01](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:44](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 06:59](1078 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:44, 15:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:15, 41:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [15:56, 13:51](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [37:15, 36:46] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:39](1948 MB) + +PASS -- COMPILE 's2swa_intel' [41:12, 40:48] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:41](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 08:49](3223 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:03, 05:15](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:53](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:04, 05:12](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 06:47](3462 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 08:38](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:40](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:45, 08:47](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:45, 10:44](3441 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:19](3612 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:52](4205 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:34, 09:49](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:49](3207 MB) + +PASS -- COMPILE 's2sw_intel' [38:15, 37:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:43](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:06](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [37:15, 36:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:50, 10:45](3279 MB) + +PASS -- COMPILE 's2sw_debug_intel' [35:12, 34:15] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:53, 06:00](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [37:15, 36:25] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:18](1999 MB) + +PASS -- COMPILE 's2s_intel' [34:12, 33:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:45, 06:31](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:05](2930 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:29](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:16, 40:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:00, 08:26](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [35:14, 34:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:44](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:51, 08:07](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:39, 18:12](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:12, 24:39] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:02, 27:01](1962 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [25:12, 24:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:36, 04:03](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:30, 03:07](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:26, 03:20](1569 MB) +PASS -- TEST 'control_latlon_intel' [07:13, 03:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 03:37](1572 MB) +PASS -- TEST 'control_c48_intel' [10:36, 06:31](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:40](720 MB) +PASS -- TEST 'control_c192_intel' [15:15, 10:06](1681 MB) +PASS -- TEST 'control_c384_intel' [23:46, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [18:27, 14:15](1178 MB) +PASS -- TEST 'control_stochy_intel' [05:33, 02:08](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:28](426 MB) +PASS -- TEST 'control_lndp_intel' [04:34, 01:59](622 MB) +PASS -- TEST 'control_iovr4_intel' [05:40, 02:53](620 MB) +PASS -- TEST 'control_iovr5_intel' [05:40, 02:37](620 MB) +PASS -- TEST 'control_p8_intel' [06:31, 03:41](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 04:02](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:28](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [03:11, 01:49](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:28](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:50](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:18, 03:26](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:08](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:23](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:54](1919 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:40](1867 MB) +PASS -- TEST 'merra2_thompson_intel' [05:29, 03:50](1865 MB) +PASS -- TEST 'regional_control_intel' [06:52, 05:19](859 MB) +PASS -- TEST 'regional_restart_intel' [03:47, 02:51](861 MB) +PASS -- TEST 'regional_decomp_intel' [06:51, 05:29](860 MB) +PASS -- TEST 'regional_2threads_intel' [04:46, 03:11](1007 MB) +PASS -- TEST 'regional_noquilt_intel' [06:56, 05:08](1176 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 05:17](867 MB) +PASS -- TEST 'regional_wofs_intel' [09:17, 06:51](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [24:12, 23:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:30, 06:46](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:04](1185 MB) +PASS -- TEST 'rap_decomp_intel' [09:31, 07:08](1009 MB) +PASS -- TEST 'rap_2threads_intel' [08:38, 06:07](1101 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:38](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 07:09](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 05:27](880 MB) +PASS -- TEST 'hrrr_control_intel' [05:22, 03:52](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:59](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 03:10](1085 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:31, 06:57](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:54, 08:11](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:52](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [23:12, 22:18] +PASS -- TEST 'control_csawmg_intel' [10:55, 06:39](964 MB) +PASS -- TEST 'control_ras_intel' [04:45, 03:29](657 MB) + +PASS -- COMPILE 'wam_intel' [21:11, 20:38] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:12, 11:47](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [29:11, 28:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:01, 03:13](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [06:38, 05:05](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [24:13, 23:09] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 03:01](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:02](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:54, 03:21](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:51](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:30](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [04:07, 02:52](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:28, 03:01](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [04:42, 03:25](1892 MB) +PASS -- TEST 'regional_debug_intel' [17:47, 16:33](910 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:10](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:37, 05:04](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:43](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 05:24](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:31](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:45](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:37, 05:39](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 06:01](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:40](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:52](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:37, 05:42](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:22](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:17](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 05:03](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:59](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:10](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 08:42](1185 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:11, 16:58] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:11, 13:39](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:12, 18:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:21, 04:04](1046 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 05:54](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:39](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:16, 05:22](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:56](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:39](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:29](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:01](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:15, 24:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:49, 02:15](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:58, 01:29](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:01, 01:23](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 19:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:20, 04:16](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:12, 15:23] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:57](1058 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:51](1061 MB) +PASS -- TEST 'conus13km_debug_intel' [17:10, 14:36](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:59, 14:32](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:28](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:20](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:12, 15:14] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:09](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [25:11, 24:44] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:25, 05:59](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:09](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:47, 08:19](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:18](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:50, 13:32](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:27, 06:34](479 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:47, 07:53](500 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:16](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:18, 09:09](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 04:27](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 04:43](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:26, 04:51](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:18, 01:48](403 MB) +PASS -- TEST 'gnv1_nested_intel' [11:57, 06:11](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [20:14, 19:52] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:23](599 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:43] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:44](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:29, 07:49](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 28:09] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:11](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [28:15, 27:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:18, 06:17](742 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:28, 06:17](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:33, 20:02](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [24:14, 23:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:34](760 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](748 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:30](635 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:28](635 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:32](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:35](760 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:36](761 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:24, 06:06](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:27, 06:13](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:39, 02:34](747 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 04:39](2014 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:37, 04:41](2014 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:15, 19:04] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:33](742 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [24:14, 23:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:34](761 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [08:15, 07:40] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:31](317 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:50](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:57, 01:13](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 26:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 04:13](1924 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 24:47] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:01](1913 MB) + +PASS -- COMPILE 'atml_intel' [26:11, 25:37] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 07:29](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:12](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 04:00](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [21:17, 20:32] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:39, 06:34](1933 MB) + +PASS -- COMPILE 'atmw_intel' [20:11, 19:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:29](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [18:11, 17:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:27, 06:24](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:27, 06:30](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:20, 07:01](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:40] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:40, 18:31](4484 MB) SYNOPSIS: -Starting Date/Time: 20240719 03:43:01 -Ending Date/Time: 20240719 06:38:43 -Total Time: 02h:56m:50s +Starting Date/Time: 20240722 18:29:44 +Ending Date/Time: 20240722 20:48:48 +Total Time: 02h:20m:27s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 71eb3baa5b..3e1f1d26cd 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: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,11 +9,11 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,439 +24,379 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2238840 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:19, 05:51](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:54] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:08, 17:26](1986 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 18:08](2162 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:19, 08:13](1237 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:02, 19:38](1872 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:16](1984 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:13] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:13](1943 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:26] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:14, 05:56](3326 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:26, 06:05](3354 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:22, 03:38](3251 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:14, 05:58](3373 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:22, 03:37](3286 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:10, 05:34](3632 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:11, 06:05](3335 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:11, 04:48](3203 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:25, 05:55](3357 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:06, 10:20](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:52, 06:36](3638 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [20:14, 09:34](4308 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:46, 06:14](4378 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:10, 05:25](3336 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:50] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:58, 04:51](1994 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:04, 04:24](2020 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:12] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:02, 08:55](3399 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:12, 04:49] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 05:51](1990 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 11:59] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:06, 04:32](2044 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:47, 09:02](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 02:41](3095 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:41, 01:33](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 17:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:14, 05:36](3328 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 16:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:09, 17:50](2003 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:18](1272 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 19:53](1937 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:57] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:02, 25:05](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:13, 11:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:24, 03:37](702 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:41, 02:58](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:46, 02:59](1607 MB) -PASS -- TEST 'control_latlon_intel' [04:37, 02:57](1598 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:43, 02:55](1598 MB) -PASS -- TEST 'control_c48_intel' [09:42, 07:29](1763 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 06:26](871 MB) -PASS -- TEST 'control_c192_intel' [11:56, 10:33](1761 MB) -PASS -- TEST 'control_c384_intel' [15:50, 10:30](2005 MB) -PASS -- TEST 'control_c384gdas_intel' [13:57, 07:53](1399 MB) -PASS -- TEST 'control_stochy_intel' [02:28, 01:39](658 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:02](504 MB) -PASS -- TEST 'control_lndp_intel' [05:30, 01:33](661 MB) -PASS -- TEST 'control_iovr4_intel' [06:27, 02:27](657 MB) -PASS -- TEST 'control_iovr5_intel' [06:27, 02:27](659 MB) -PASS -- TEST 'control_p8_intel' [07:58, 03:12](1904 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [08:01, 03:14](1893 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 03:04](1905 MB) -PASS -- TEST 'control_restart_p8_intel' [04:48, 01:46](1129 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:48, 03:01](1899 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:52, 01:44](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:47, 03:11](1882 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:45, 02:56](1981 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:43, 05:24](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:52, 04:06](1961 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:56, 03:07](1905 MB) -PASS -- TEST 'merra2_thompson_intel' [08:53, 03:23](1907 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:22](1108 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:54](1092 MB) -PASS -- TEST 'regional_decomp_intel' [10:36, 05:40](1093 MB) -PASS -- TEST 'regional_2threads_intel' [06:42, 03:31](1097 MB) -PASS -- TEST 'regional_noquilt_intel' [09:46, 05:19](1399 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:53, 05:27](1092 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:40, 05:27](1104 MB) -PASS -- TEST 'regional_wofs_intel' [10:40, 06:48](1920 MB) - -PASS -- COMPILE 'rrfs_intel' [12:15, 11:15] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:37, 07:46](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:05, 04:10](1302 MB) -PASS -- TEST 'rap_decomp_intel' [11:38, 08:09](1043 MB) -PASS -- TEST 'rap_2threads_intel' [10:40, 07:18](1188 MB) -PASS -- TEST 'rap_restart_intel' [16:44, 04:01](1105 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:41, 07:45](1109 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:38, 08:09](1038 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [18:47, 05:50](1135 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 03:59](1046 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:35, 04:06](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 03:40](1115 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:27, 02:12](1003 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:49, 07:34](1103 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:25, 09:17](1995 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 09:09](2049 MB) - -PASS -- COMPILE 'csawmg_intel' [11:14, 10:30] -PASS -- TEST 'control_csawmg_intel' [07:48, 06:14](1026 MB) -PASS -- TEST 'control_ras_intel' [05:26, 03:21](749 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:25] -PASS -- TEST 'control_csawmg_gnu' [09:47, 08:24](762 MB) - -PASS -- COMPILE 'wam_intel' [11:14, 10:27] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:52, 10:57](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:16, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:45](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [05:38, 04:52](1110 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:13, 06:19] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:50, 02:47](1629 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:45](1628 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:07](838 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:28, 02:49](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:28](1149 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:51](840 MB) -PASS -- TEST 'control_diag_debug_intel' [08:54, 02:44](1689 MB) -PASS -- TEST 'control_debug_p8_intel' [08:50, 03:00](1930 MB) -PASS -- TEST 'regional_debug_intel' [24:46, 17:41](1112 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:00](1222 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 05:00](1219 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:03](1224 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 05:06](1226 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:27, 05:03](1219 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:11](1298 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 05:08](1220 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:23, 05:15](1219 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 05:03](1218 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:23, 04:55](1222 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:58](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:24, 05:08](1229 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [20:25, 08:01](1218 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [17:25, 05:03](1224 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [18:27, 05:57](1223 MB) -PASS -- TEST 'rap_flake_debug_intel' [17:24, 05:07](1225 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [20:41, 08:24](1222 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:35] -PASS -- TEST 'control_csawmg_debug_gnu' [05:43, 02:24](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:03] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:46, 13:38](1694 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:04, 03:52](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [18:37, 06:25](1055 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:36, 03:26](988 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:41, 06:06](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:32, 03:10](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [16:32, 03:34](931 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:44, 04:50](1033 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:26, 01:53](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:13, 13:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [15:00, 02:06](1211 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:47, 00:52](1126 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:13](1118 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:13, 10:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [16:45, 04:09](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [17:27, 04:57](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:24, 04:45](1103 MB) -PASS -- TEST 'conus13km_debug_intel' [26:53, 14:25](1261 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:47, 14:55](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [20:46, 08:21](1179 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:45, 14:50](1318 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 03:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:25, 05:02](1145 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 12:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:17, 05:07](738 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:31, 06:08](1106 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:31, 06:58](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [25:21, 13:34](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [26:48, 15:25](895 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 05:30](505 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:27, 06:50](523 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:44, 02:39](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:11](478 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:45, 03:52](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:33](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 04:06](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:17](407 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:02](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:29] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:54, 12:55](592 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:13, 16:31] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:07, 08:46](663 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:09, 08:46](752 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:14, 12:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:03, 06:30](741 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 11:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:21, 06:30](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 06:34](823 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:34](1223 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:12, 06:27] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:20, 02:50](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:37](1121 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:41](1030 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 03:01](999 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:40](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:40](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:18, 02:34](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:42, 06:31](1066 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:09](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:40](1152 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:59](2447 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:20, 03:52](2442 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:18] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:06](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:12, 06:29] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:39](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:12, 01:02] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:44](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:48](327 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:12, 11:17] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 03:44](1994 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:14, 10:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:36](1968 MB) - -PASS -- COMPILE 'atml_intel' [15:11, 12:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:20](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:21](1105 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 05:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:08, 05:50](1908 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 11:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:52](1933 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:01] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:00, 04:08](3208 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:13, 04:50](3100 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:01, 05:03](3104 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:57] ( 884 warnings 6 remarks ) -FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:47] -PASS -- TEST 'control_c48_gnu' [11:40, 11:07](1536 MB) -PASS -- TEST 'control_stochy_gnu' [04:27, 03:26](502 MB) -PASS -- TEST 'control_ras_gnu' [05:22, 04:47](505 MB) -PASS -- TEST 'control_p8_gnu' [06:00, 04:52](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:52, 04:43](1459 MB) -PASS -- TEST 'control_flake_gnu' [11:28, 10:21](544 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:13] -PASS -- TEST 'rap_control_gnu' [11:38, 10:45](811 MB) -PASS -- TEST 'rap_decomp_gnu' [11:35, 10:54](849 MB) -PASS -- TEST 'rap_2threads_gnu' [10:42, 09:52](937 MB) -PASS -- TEST 'rap_restart_gnu' [06:41, 05:24](578 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:38, 10:46](817 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:33, 11:00](850 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:42, 07:58](579 MB) -PASS -- TEST 'hrrr_control_gnu' [06:34, 05:35](850 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:30, 05:37](800 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 04:58](919 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:35, 05:36](846 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:29, 02:54](564 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:28, 02:48](654 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:33](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:30] -PASS -- TEST 'control_diag_debug_gnu' [03:01, 01:43](1275 MB) -PASS -- TEST 'regional_debug_gnu' [12:45, 12:06](727 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:23, 02:35](823 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](826 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:23, 02:39](825 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:46](829 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:43, 02:47](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:22, 04:05](860 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:44](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:37](814 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:22, 01:34](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:43](455 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:42, 01:47](1441 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:38](826 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:22, 02:58](822 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:41, 04:19](833 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:33] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:07] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:18](712 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:40, 05:00](704 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:35](754 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:33, 04:33](746 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:31, 05:05](702 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:04](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:32](541 MB) -PASS -- TEST 'conus13km_control_gnu' [05:00, 03:09](878 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:50, 06:01](878 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:46](553 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 10:55] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:38, 05:40](728 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:37] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:23, 02:29](712 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:22, 02:30](711 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:50, 07:02](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:44, 07:07](581 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:41, 07:42](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 06:56](961 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:34] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:23, 02:37](745 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 16:29] - -PASS -- COMPILE 's2s_gnu' [18:12, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:04, 07:14](1547 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [12:12, 03:17] - -PASS -- COMPILE 's2sw_pdlib_gnu' [26:13, 16:13] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [20:57, 19:38](1453 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [14:12, 03:09] -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [26:17, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 02:56](687 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 06:05](3277 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:12, 16:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:32](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:13, 18:08](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:08, 08:23](1228 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:26](1861 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:39, 17:11](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:16] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:25](1891 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:10, 05:54](3310 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 06:21](3318 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:26, 03:31](3241 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:02](3347 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:34](3251 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:11, 05:37](3598 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 06:00](3313 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 05:00](3188 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:17, 05:55](3322 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:19](3487 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:47, 06:41](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 10:10](4260 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:10, 06:29](4362 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 05:26](3296 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 12:52] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 05:04](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:05, 04:26](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:39](3333 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:56] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:02](1976 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 04:25](2040 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:04](3089 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:45](3062 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2499 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:15, 17:18] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 05:36](3328 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:29](1987 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:22](1270 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:56](1895 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:06] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 24:58](1919 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:21](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:54](1575 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 02:58](1583 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 02:55](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:59](1578 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:32](1734 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:26](840 MB) +PASS -- TEST 'control_c192_intel' [12:02, 10:34](1729 MB) +PASS -- TEST 'control_c384_intel' [14:04, 10:35](1995 MB) +PASS -- TEST 'control_c384gdas_intel' [11:59, 08:00](1379 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:41](631 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:06](489 MB) +PASS -- TEST 'control_lndp_intel' [03:23, 01:36](636 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:26](632 MB) +PASS -- TEST 'control_p8_intel' [04:55, 03:08](1872 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:11](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:00](1874 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:51, 03:04](1863 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:44](1136 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:10](1869 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:57](1979 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:26](1877 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:06](1937 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 03:06](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 03:25](1880 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:20](1082 MB) +PASS -- TEST 'regional_restart_intel' [04:38, 02:55](1078 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:41](1075 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:29](1074 MB) +PASS -- TEST 'regional_noquilt_intel' [06:39, 05:16](1378 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:20](1082 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 05:20](1082 MB) +PASS -- TEST 'regional_wofs_intel' [07:35, 06:52](1896 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 11:07] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:45](1093 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:16](1286 MB) +PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1014 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:19](1164 MB) +PASS -- TEST 'rap_restart_intel' [04:48, 04:04](1088 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:42, 07:45](1088 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 08:09](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:53](1117 MB) +PASS -- TEST 'hrrr_control_intel' [04:42, 04:00](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:10](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:39](1095 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:12](953 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:35](1080 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:14](1973 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:08](2044 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:53] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:10](1006 MB) +PASS -- TEST 'control_ras_intel' [04:22, 03:16](732 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:13] +PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:41] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:47, 11:00](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:50, 02:49](1890 MB) +PASS -- TEST 'regional_control_faster_intel' [05:40, 04:52](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:01] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:43](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:35](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:04](793 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:52](788 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:50, 04:23](1117 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 03:00](803 MB) +PASS -- TEST 'control_diag_debug_intel' [07:00, 02:48](1649 MB) +PASS -- TEST 'control_debug_p8_intel' [06:52, 03:04](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:48, 17:52](1077 MB) +PASS -- TEST 'rap_control_debug_intel' [06:29, 05:07](1181 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:54](1179 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:05](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:05](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:08](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:46, 05:21](1267 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:19](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:13](1183 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:08](1178 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 05:04](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:07](1186 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:01](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:13](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:05](1180 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:54](1189 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:20](705 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:10] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:44](1656 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:54](1143 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:35](1018 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](980 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1050 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:12](941 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:37](927 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:52](1024 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:52](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1186 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:44, 00:55](1104 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:17](1089 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](971 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:36] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:11](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1062 MB) +PASS -- TEST 'conus13km_debug_intel' [15:56, 14:52](1214 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 15:11](903 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1117 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:33](1259 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:13](1100 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:08](720 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 05:47](1101 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 06:54](811 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:33](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:44, 15:20](868 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 05:33](484 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:28, 06:49](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 02:44](362 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:18](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:43](519 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:33](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 04:10](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:17](387 MB) +PASS -- TEST 'gnv1_nested_intel' [09:38, 04:08](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:40] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 13:02](553 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 08:43](652 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:07, 08:54](701 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:07, 06:27](674 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:30](813 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:35](792 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 15:54](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:52] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:34](1010 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:37](1011 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:38](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:40](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:16](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 06:19](1051 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:44](1132 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:52](2488 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:55](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:17](1054 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:30] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 01:07] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:50](312 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](310 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:40](1966 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:57] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:14, 03:37](1939 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:24](1837 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:30](1851 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:27](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 05:09] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:48](1866 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:39] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:55](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:22] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:11](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:15, 04:55](3080 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 05:18](3083 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:54] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:09, 21:26](4438 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 04:45] +PASS -- TEST 'control_c48_gnu' [12:43, 11:16](1523 MB) +PASS -- TEST 'control_stochy_gnu' [04:31, 03:28](491 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:45](496 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 04:46](1449 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:41](1437 MB) +PASS -- TEST 'control_flake_gnu' [11:26, 10:23](531 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] +PASS -- TEST 'rap_control_gnu' [11:35, 10:53](840 MB) +PASS -- TEST 'rap_decomp_gnu' [12:36, 11:08](842 MB) +PASS -- TEST 'rap_2threads_gnu' [10:40, 09:49](918 MB) +PASS -- TEST 'rap_restart_gnu' [07:57, 05:37](566 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:44, 10:50](803 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 11:02](837 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:12](567 MB) +PASS -- TEST 'hrrr_control_gnu' [06:42, 05:37](804 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:37, 05:37](794 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:37, 05:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:37, 05:37](835 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [08:33, 02:55](550 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:33, 02:55](644 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:35](801 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:36] +PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:40](1254 MB) +PASS -- TEST 'regional_debug_gnu' [11:42, 10:17](723 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:42](801 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](804 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:42](807 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:39](805 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:45, 02:50](892 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:12](803 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:39](805 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:39](801 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:33](440 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:48](1421 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:45](811 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:02](811 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:24](819 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:26](696 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:58](703 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:38](751 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [11:36, 04:37](731 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:29, 05:06](697 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](542 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:33](525 MB) +PASS -- TEST 'conus13km_control_gnu' [09:03, 03:16](868 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:49, 06:25](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 01:49](540 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 10:59] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](719 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:25, 02:36](700 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:25, 02:34](699 MB) +PASS -- TEST 'conus13km_debug_gnu' [11:55, 07:00](863 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [11:48, 07:10](565 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [12:44, 07:25](864 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:45, 07:09](931 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](718 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:49] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 07:16](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:26] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:57, 20:29](1438 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:10] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:54, 12:53](1446 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:03](682 MB) SYNOPSIS: -Starting Date/Time: 20240719 06:09:15 -Ending Date/Time: 20240719 08:28:29 -Total Time: 02h:19m:33s +Starting Date/Time: 20240723 00:42:52 +Ending Date/Time: 20240723 02:20:57 +Total Time: 01h:39m:21s Compiles Completed: 57/57 -Tests Completed: 243/245 -Failed Tests: -* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/regional_atmaq_debug_intel/err -* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3156853/cpld_debug_pdlib_p8_gnu/err - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_270761 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:08] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [33:55, 25:33](4444 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:24] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:54, 13:00](1448 MB) - -SYNOPSIS: -Starting Date/Time: 20240719 14:49:13 -Ending Date/Time: 20240719 15:29:43 -Total Time: 00h:40m:42s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 245/245 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index ad7efc7a77..8a915a55f8 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,381 +35,381 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_647280 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1318349 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:29] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:00, 07:35](2138 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:08, 13:15](2012 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:28, 14:21](2321 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:30, 06:30](1327 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:01, 15:09](1928 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:33, 14:12](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:55] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:55, 22:01](1976 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:00, 08:04](2183 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:07, 08:22](2193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:16, 04:18](1968 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:01, 08:19](2222 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:07, 04:26](1750 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:59, 10:04](2551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:56, 07:45](2175 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 06:57](2087 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:08, 08:37](2186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [17:40, 15:56](2991 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:23, 06:44](2928 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [17:31, 10:13](3799 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:12, 06:49](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [05:51, 05:07](2155 MB) - -PASS -- COMPILE 's2sw_intel' [12:11, 11:31] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 07:16](2032 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:58, 04:07](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:55] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:46, 08:21](2211 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:26] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:42, 05:53](2059 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:42] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:50, 03:57](2081 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:49] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:42, 07:06](3114 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:13](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:42, 01:12](2512 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:11, 15:53] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:06, 07:21](2196 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:11, 14:32] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:05, 13:55](2043 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:52](1400 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:55, 16:56](1973 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:59] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:48, 22:33](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:30] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:20, 02:50](714 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:31, 02:24](1615 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1622 MB) -PASS -- TEST 'control_latlon_intel' [03:28, 02:26](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:27](1613 MB) -PASS -- TEST 'control_c48_intel' [07:33, 06:51](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:45](857 MB) -PASS -- TEST 'control_c192_intel' [09:41, 08:54](1775 MB) -PASS -- TEST 'control_c384_intel' [10:19, 08:56](2050 MB) -PASS -- TEST 'control_c384gdas_intel' [08:54, 07:08](1523 MB) -PASS -- TEST 'control_stochy_intel' [02:19, 01:23](671 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:49](551 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:18](674 MB) -PASS -- TEST 'control_iovr4_intel' [02:20, 02:05](661 MB) -PASS -- TEST 'control_iovr5_intel' [02:23, 02:04](662 MB) -PASS -- TEST 'control_p8_intel' [03:47, 02:54](1899 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:48, 02:51](1908 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:45, 02:35](1909 MB) -PASS -- TEST 'control_restart_p8_intel' [02:45, 01:30](1157 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:38, 02:39](1900 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:46, 01:29](1216 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:38, 03:12](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:36, 02:40](1997 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:29, 05:01](1904 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 03:33](1984 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:47, 02:38](1918 MB) -PASS -- TEST 'merra2_thompson_intel' [03:53, 02:54](1919 MB) -PASS -- TEST 'regional_control_intel' [05:26, 04:39](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 03:12](1181 MB) -PASS -- TEST 'regional_decomp_intel' [05:23, 04:56](1189 MB) -PASS -- TEST 'regional_2threads_intel' [03:23, 03:01](1159 MB) -PASS -- TEST 'regional_noquilt_intel' [05:28, 04:26](1517 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:28, 04:37](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:38](1209 MB) -PASS -- TEST 'regional_wofs_intel' [07:23, 06:23](2085 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:58] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:46, 06:58](1209 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 03:30](1405 MB) -PASS -- TEST 'rap_decomp_intel' [08:40, 07:12](1151 MB) -PASS -- TEST 'rap_2threads_intel' [07:32, 06:30](1376 MB) -PASS -- TEST 'rap_restart_intel' [04:58, 03:40](1141 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:48, 07:00](1206 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:36, 07:08](1152 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:15](1221 MB) -PASS -- TEST 'hrrr_control_intel' [04:51, 03:28](1089 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:35, 03:31](1054 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:37, 03:09](1132 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:29, 01:49](1023 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:55, 06:46](1211 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:20, 07:43](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:28](2194 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:05] -PASS -- TEST 'control_csawmg_intel' [06:31, 05:37](1041 MB) -PASS -- TEST 'control_ras_intel' [03:17, 02:53](876 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:10, 04:05] -PASS -- TEST 'control_csawmg_gnu' [07:39, 07:07](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:11, 07:13] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:34, 11:24](1679 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:10] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:49, 02:47](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [05:27, 04:54](1197 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:10, 05:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:36, 02:10](1645 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:31, 02:09](1634 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:17, 02:33](847 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:16](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:27, 04:27](1166 MB) -PASS -- TEST 'control_ras_debug_intel' [03:19, 02:17](851 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:22](1698 MB) -PASS -- TEST 'control_debug_p8_intel' [05:34, 03:32](1931 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 15:36](1160 MB) -PASS -- TEST 'rap_control_debug_intel' [05:22, 04:04](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:01](1231 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 04:08](1233 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 04:07](1240 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 04:11](1233 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:29, 04:20](1321 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 04:11](1236 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:17](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:15](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 04:14](1234 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:16](1240 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:52](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:17, 04:08](1230 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:20, 04:57](1238 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:07](1241 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:50, 07:09](1243 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:30] -PASS -- TEST 'control_csawmg_debug_gnu' [03:35, 02:45](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 03:03] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:47, 03:40](1273 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:34, 05:33](1136 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:08, 02:54](1020 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:45, 05:04](1295 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:51, 02:39](1048 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:46, 03:02](978 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:55, 04:06](1092 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:37, 01:35](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:41, 01:51](1317 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:39, 00:52](1210 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:37, 01:04](1156 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:24] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 02:56] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:17, 04:09](1118 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:57](1116 MB) -PASS -- TEST 'conus13km_debug_intel' [13:32, 12:23](1359 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:29, 12:22](1019 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:26, 07:09](1255 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:27, 12:05](1425 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 03:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:20, 04:03](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:24](839 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 05:17](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:26, 06:52](961 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:14, 14:54](986 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:29, 15:11](1000 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:03, 05:33](608 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [16:25, 07:00](621 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [10:43, 02:38](437 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:04, 07:37](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:49, 04:00](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:56](618 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 04:49](682 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:09](456 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:24] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:45, 11:40](648 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:28] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:52, 17:06](765 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:53, 16:23](843 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:58] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:58, 10:14](824 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 09:39] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:08, 05:41](957 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:08, 05:39](917 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:46, 16:39](1345 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:14] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:11](1132 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:28](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:14, 02:06](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:09](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:07](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:15, 02:12](1143 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:12](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:04](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:56, 04:57](1156 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:54, 04:50](1151 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:10](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2385 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:16, 03:05](2372 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:57] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:18, 05:07](1071 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:36] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:14](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 00:54](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:50](579 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:23, 00:29](588 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:50, 03:54](2037 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 07:42] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:48, 03:44](2009 MB) - -PASS -- COMPILE 'atml_intel' [09:10, 08:35] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:07, 06:22](1906 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:06, 06:39](1912 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:03](1149 MB) - -PASS -- COMPILE 'atml_debug_intel' [04:10, 03:59] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:53, 06:06](1938 MB) - -PASS -- COMPILE 'atmw_intel' [09:10, 09:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:45](1948 MB) - -PASS -- COMPILE 'atmaero_intel' [09:10, 07:39] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:45, 03:41](2030 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:15](1795 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:17](1838 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:10, 03:12] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:29, 16:54](4561 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:42] -PASS -- TEST 'control_c48_gnu' [10:40, 09:25](1571 MB) -PASS -- TEST 'control_stochy_gnu' [03:23, 02:23](745 MB) -PASS -- TEST 'control_ras_gnu' [04:19, 03:47](739 MB) -PASS -- TEST 'control_p8_gnu' [05:48, 04:48](1709 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:48](1732 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 04:32](816 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:22] -PASS -- TEST 'rap_control_gnu' [08:34, 07:41](1089 MB) -PASS -- TEST 'rap_decomp_gnu' [08:46, 07:49](1089 MB) -PASS -- TEST 'rap_2threads_gnu' [07:46, 07:04](1122 MB) -PASS -- TEST 'rap_restart_gnu' [04:59, 03:57](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:49, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 08:02](1084 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:04, 05:46](885 MB) -PASS -- TEST 'hrrr_control_gnu' [04:49, 03:55](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:38, 04:05](1135 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:32, 03:43](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:31, 03:57](1074 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:23, 02:05](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:21, 02:00](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:52, 07:48](1086 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:38] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:16](1631 MB) -PASS -- TEST 'regional_debug_gnu' [08:25, 07:45](1118 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 01:57](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:19, 01:58](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1106 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:08](1099 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:16](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:11](1101 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:17, 02:06](1111 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:17, 02:06](1098 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:15](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:16, 01:21](733 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:57](1757 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:06](1105 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:23](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:53, 03:21](1108 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:19] +PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:40] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:10](2139 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:17, 13:28](1990 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 13:56](2288 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 06:29](1303 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:59, 14:51](1924 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:35, 12:57](2003 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:19, 20:32](1977 MB) + +PASS -- COMPILE 's2swa_intel' [11:11, 10:46] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:03, 08:07](2194 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:15, 07:56](2190 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:17, 04:17](1994 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 08:04](2208 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:23](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:59, 09:09](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 08:30](2185 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:24](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:20, 08:21](2194 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:05, 16:03](2982 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:44, 05:47](2934 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:38, 09:44](3807 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 05:50](3640 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:07, 05:20](2159 MB) + +PASS -- COMPILE 's2sw_intel' [11:11, 11:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:05](2036 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:09, 04:31](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:09, 07:22](2220 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:10](2068 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:05, 04:01](2077 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:45, 07:01](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:08](3079 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:13](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 07:42](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 13:51](2046 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:15, 06:45](1377 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:04, 15:26](1964 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:47] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:33](2026 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:19, 02:54](718 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:22](1610 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 02:32](1620 MB) +PASS -- TEST 'control_latlon_intel' [03:29, 02:26](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:26](1604 MB) +PASS -- TEST 'control_c48_intel' [07:36, 06:50](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:48](846 MB) +PASS -- TEST 'control_c192_intel' [09:48, 08:56](1760 MB) +PASS -- TEST 'control_c384_intel' [10:29, 08:57](2040 MB) +PASS -- TEST 'control_c384gdas_intel' [09:15, 06:56](1525 MB) +PASS -- TEST 'control_stochy_intel' [02:19, 01:23](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:50](534 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:21](667 MB) +PASS -- TEST 'control_iovr4_intel' [02:19, 02:03](666 MB) +PASS -- TEST 'control_iovr5_intel' [02:21, 02:06](666 MB) +PASS -- TEST 'control_p8_intel' [03:58, 02:36](1898 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:35](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:43](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:30](1161 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:47, 02:35](1890 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:31](1180 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:48, 02:39](1901 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:25](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:27](1913 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:31](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:55, 02:38](1902 MB) +PASS -- TEST 'merra2_thompson_intel' [04:04, 02:53](1919 MB) +PASS -- TEST 'regional_control_intel' [05:34, 04:40](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:33, 02:38](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:28, 04:56](1199 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 03:03](1164 MB) +PASS -- TEST 'regional_noquilt_intel' [05:37, 04:31](1526 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:41](1197 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 04:45](1195 MB) +PASS -- TEST 'regional_wofs_intel' [06:31, 05:37](2089 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 08:04] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:45, 06:40](1225 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:53, 03:26](1408 MB) +PASS -- TEST 'rap_decomp_intel' [07:45, 06:56](1160 MB) +PASS -- TEST 'rap_2threads_intel' [07:45, 06:10](1376 MB) +PASS -- TEST 'rap_restart_intel' [05:09, 03:29](1160 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:39](1213 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:45, 06:53](1162 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 05:00](1199 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 03:25](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 03:31](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:10](1119 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:51](1023 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:27](1215 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:34](2015 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:25](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [08:16, 07:16] +PASS -- TEST 'control_csawmg_intel' [06:36, 05:27](1048 MB) +PASS -- TEST 'control_ras_intel' [03:19, 02:49](856 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:43, 06:48](1071 MB) + +PASS -- COMPILE 'wam_intel' [08:16, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:42, 10:18](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:55, 02:20](1906 MB) +PASS -- TEST 'regional_control_faster_intel' [05:31, 04:16](1202 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:18](1628 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:15](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:36](843 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:20](833 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:30, 04:31](1166 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:18](850 MB) +PASS -- TEST 'control_diag_debug_intel' [03:38, 02:15](1692 MB) +PASS -- TEST 'control_debug_p8_intel' [04:38, 03:15](1924 MB) +PASS -- TEST 'regional_debug_intel' [15:31, 14:58](1158 MB) +PASS -- TEST 'rap_control_debug_intel' [04:20, 04:04](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:22, 04:02](1223 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:02](1235 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:04](1233 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 03:59](1231 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:32, 04:10](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:03](1240 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:11](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:03](1234 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:01](1229 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 04:05](1231 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:04](1236 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:25, 06:39](1220 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:58](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:53](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:20, 04:03](1233 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 07:04](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:15, 04:41] +PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:15](1056 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:10, 02:54] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:07] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:14](1278 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 05:24](1133 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:52](1021 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:09](1271 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 02:37](1033 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:07](995 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 04:01](1098 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:35](956 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:48, 01:42](1301 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:40, 00:43](1218 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:37, 01:05](1168 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:36, 03:49](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:09](1108 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:04](1115 MB) +PASS -- TEST 'conus13km_debug_intel' [13:42, 12:14](1366 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:18](1019 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 07:16](1253 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 12:12](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:55] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1164 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 09:32] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](878 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 05:09](1276 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:18, 06:23](950 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:03](985 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 15:07](1006 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 05:24](611 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:25, 06:50](627 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:32](438 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:22](540 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:38](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:48](678 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:04](453 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:21] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:51, 11:23](647 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:16] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 16:18](731 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:06, 16:47](815 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 09:59](823 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:10, 09:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:15, 05:22](951 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:30](933 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:23](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:12](1137 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:19](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:04](1012 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:11](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1015 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1146 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:09](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:04](1018 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:04, 04:55](1153 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:52](1155 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:11](1161 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:06](2442 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:10](2433 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:48] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:10](1075 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:39] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:13](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](338 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 00:48](584 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:30](585 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:14, 08:01] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:00, 03:18](2027 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 07:20] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:57, 03:05](1993 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 08:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 05:40](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:41](1906 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:55, 02:59](1149 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:21] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 05:14](1936 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:37](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 08:02] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:44](2030 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:51, 04:14](1814 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:19](1814 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:11, 03:07] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:40, 16:35](4597 MB) + +PASS -- COMPILE 'atm_gnu' [06:11, 05:45] +PASS -- TEST 'control_c48_gnu' [10:38, 09:23](1572 MB) +PASS -- TEST 'control_stochy_gnu' [03:22, 02:20](729 MB) +PASS -- TEST 'control_ras_gnu' [04:18, 03:46](734 MB) +PASS -- TEST 'control_p8_gnu' [04:54, 03:50](1712 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:44, 03:43](1718 MB) +PASS -- TEST 'control_flake_gnu' [05:21, 04:27](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:11, 05:21] +PASS -- TEST 'rap_control_gnu' [08:42, 07:41](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [08:42, 07:58](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:41, 07:10](1127 MB) +PASS -- TEST 'rap_restart_gnu' [04:58, 03:56](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:54, 07:39](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:54](1088 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:43](884 MB) +PASS -- TEST 'hrrr_control_gnu' [04:42, 04:00](1075 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:02](1137 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:35](1043 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 03:55](1072 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:06](881 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:24, 02:00](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:59, 07:36](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:15, 09:52] +PASS -- TEST 'control_diag_debug_gnu' [02:38, 01:16](1632 MB) +PASS -- TEST 'regional_debug_gnu' [07:30, 06:42](1120 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:02](1103 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 01:54](1096 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:22, 01:55](1103 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:02](1103 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:29, 02:03](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:04](1106 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:00](1109 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 01:54](1100 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:25](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:21](728 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:32, 01:23](1755 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:56](1106 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:14](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:56, 03:23](1110 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:37] FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:38] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:23](966 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:46, 03:54](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:51](998 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:35, 03:33](873 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 03:56](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:58, 05:28](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:20, 02:00](858 MB) -PASS -- TEST 'conus13km_control_gnu' [03:41, 02:32](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:30, 01:01](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:33, 01:31](951 MB) +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:15](964 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:04, 03:57](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:50, 06:41](972 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:31](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:39, 03:56](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:01, 05:25](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 01:57](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:45, 02:39](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:42, 01:03](1177 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:41, 01:26](931 MB) -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:10, 11:28] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:28](989 MB) +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 12:00] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:35, 04:24](989 MB) -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:33] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:19, 02:04](979 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:19, 01:59](970 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:32, 05:32](1285 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:32, 05:49](969 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:28, 03:34](1191 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:28, 05:35](1361 MB) +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 09:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 01:58](976 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 01:54](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:41, 05:38](1284 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:38, 05:40](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:23](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:38](1352 MB) -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:38] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:16](1004 MB) +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:02] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 02:09](1008 MB) -PASS -- COMPILE 's2swa_gnu' [16:10, 15:30] +PASS -- COMPILE 's2swa_gnu' [19:11, 18:41] -PASS -- COMPILE 's2s_gnu' [15:16, 14:31] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:06, 04:47](2722 MB) +PASS -- COMPILE 's2s_gnu' [17:11, 16:39] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:05, 04:49](3126 MB) -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:47] +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:55] PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:00, 25:47](2873 MB) +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:18, 25:50](3035 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:10, 05:00] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:50, 12:14](2893 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 05:07] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:53, 11:55](3067 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [20:10, 17:29] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:20](762 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:03] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:16](764 MB) SYNOPSIS: -Starting Date/Time: 20240719 09:01:22 -Ending Date/Time: 20240719 10:35:41 -Total Time: 01h:35m:03s +Starting Date/Time: 20240722 22:35:45 +Ending Date/Time: 20240723 00:04:32 +Total Time: 01h:29m:44s Compiles Completed: 57/57 Tests Completed: 243/244 Failed Tests: * TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2340/tests/logs/log_hercules/run_control_wam_debug_gnu.log +-- LOG: /work/noaa/nems/zshrader/hercules/rt-2354/tests/logs/log_hercules/run_control_wam_debug_gnu.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -422,7 +422,7 @@ Result: FAILURE ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -432,10 +432,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -445,7 +445,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -456,20 +456,21 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_902260 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3970037 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] -PASS -- TEST 'control_wam_debug_gnu' [10:32, 05:19](1576 MB) +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:54] +PASS -- TEST 'control_wam_debug_gnu' [06:27, 05:17](1569 MB) SYNOPSIS: -Starting Date/Time: 20240719 11:23:50 -Ending Date/Time: 20240719 11:37:33 -Total Time: 00h:13m:48s +Starting Date/Time: 20240723 05:32:03 +Ending Date/Time: 20240723 05:42:56 +Total Time: 00h:10m:54s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index f04154312b..dd22fbd906 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d6c84c5ad5433be0ba3bcb17ae49a17d69e8918 +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,254 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3314321 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1587621 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:51] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:43, 08:35](2017 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [54:17, 53:48] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:08, 21:41](1899 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:15, 23:18](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:18, 11:39](1113 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:49, 23:16](1837 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [48:15, 47:00] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:44, 21:17](1892 MB) - -PASS -- COMPILE 's2swa_intel' [42:15, 41:02] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:21, 09:04](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:42, 08:39](2047 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:53, 04:48](1713 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:22, 08:49](2077 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:52, 05:06](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:14, 08:30](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:17, 09:05](2047 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:34, 07:44](2012 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:46, 09:09](2056 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:33, 08:48](2031 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:41] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:39, 07:34](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:52, 07:54](1977 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:06] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:47, 11:02](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:13, 05:36] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:29, 07:44](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:17, 34:33] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:41, 06:41](1972 MB) - -PASS -- COMPILE 's2s_intel' [36:17, 35:13] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:07, 12:36](3062 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:07, 03:55](3057 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:09, 02:28](2481 MB) - -PASS -- COMPILE 's2swa_faster_intel' [36:22, 34:12] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:23, 08:07](2054 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [54:20, 52:24] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:40, 21:42](1913 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:51, 11:23](1131 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:33, 25:08](1881 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:25] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:31, 33:26](1930 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:51] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 04:33](649 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:03](1551 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:12](1555 MB) -PASS -- TEST 'control_latlon_intel' [05:10, 03:59](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:19, 04:05](1548 MB) -PASS -- TEST 'control_c48_intel' [13:29, 11:47](1727 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:16](848 MB) -PASS -- TEST 'control_c192_intel' [16:47, 14:19](1685 MB) -PASS -- TEST 'control_c384_intel' [20:36, 18:00](1822 MB) -PASS -- TEST 'control_c384gdas_intel' [17:57, 13:34](1020 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 02:21](607 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:21](441 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:13](609 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:25](604 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:22](599 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:40](1845 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:50, 04:43](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:55, 04:30](1841 MB) -PASS -- TEST 'control_restart_p8_intel' [04:19, 02:39](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:41](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:17, 02:48](1077 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:37, 04:48](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:37, 04:38](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:52](1846 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:00, 05:49](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:50, 04:45](1851 MB) -PASS -- TEST 'merra2_thompson_intel' [08:12, 05:09](1850 MB) -PASS -- TEST 'regional_control_intel' [09:08, 08:03](1016 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 04:52](1024 MB) -PASS -- TEST 'regional_decomp_intel' [10:08, 08:27](1018 MB) -PASS -- TEST 'regional_2threads_intel' [07:09, 05:43](1006 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:15, 07:54](1019 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:07, 08:01](1011 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 35:12] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [13:28, 10:13](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:35, 05:41](1221 MB) -PASS -- TEST 'rap_decomp_intel' [14:15, 10:37](987 MB) -PASS -- TEST 'rap_2threads_intel' [13:28, 09:41](1077 MB) -PASS -- TEST 'rap_restart_intel' [10:27, 06:00](997 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:12, 10:10](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:38, 10:47](990 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:17, 08:20](1007 MB) -PASS -- TEST 'hrrr_control_intel' [13:18, 05:15](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:45, 05:24](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:18, 04:48](1062 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:34, 03:51](916 MB) -PASS -- TEST 'rrfs_v1beta_intel' [16:52, 10:02](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 12:18](1941 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:43, 12:16](1939 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:19] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [15:55, 08:52](966 MB) -PASS -- TEST 'control_ras_intel' [10:32, 04:29](667 MB) - -PASS -- COMPILE 'wam_intel' [33:18, 32:25] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [17:03, 14:37](1620 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:29] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:36, 04:15](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [08:47, 07:09](1020 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:11] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:01, 03:26](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:05, 03:18](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:55](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:35](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:59, 06:01](1099 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 03:34](785 MB) -PASS -- TEST 'control_diag_debug_intel' [08:05, 03:26](1637 MB) -PASS -- TEST 'control_debug_p8_intel' [08:01, 04:16](1877 MB) -PASS -- TEST 'regional_debug_intel' [27:00, 23:08](1037 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 06:16](1164 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:51, 06:07](1162 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:45, 06:12](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:41, 06:14](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:16](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [10:00, 06:34](1245 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 06:26](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 06:51](1164 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:13](1161 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:28, 06:10](1164 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:31, 06:03](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:34, 06:21](1169 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:31, 10:10](1164 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:30, 06:13](1163 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 07:32](1161 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:38, 06:13](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:47, 10:46](1173 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:43] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:08, 16:54](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:17, 30:27] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 05:17](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:06, 08:19](907 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:11, 04:27](876 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:06, 07:59](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 04:06](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:11, 04:40](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:10, 06:26](906 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:25](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [50:16, 49:06] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:09, 02:59](1109 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:52, 01:24](1047 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:37](1025 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:17, 31:05] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:53, 05:41](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:33, 06:11](1046 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:04](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [20:07, 18:41](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:07, 18:45](883 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:01, 10:53](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:01, 18:37](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:33] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 06:18](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [39:17, 38:12] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:29, 09:19](692 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [13:44, 12:16](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:47, 13:02](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 17:18](800 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:52, 18:34](818 MB) -PASS -- TEST 'gnv1_nested_intel' [15:48, 13:04](1675 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:15, 33:34] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:26, 10:40](774 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:05, 10:59](749 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:21] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:49](1058 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:15](1030 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:41](921 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:44](926 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:48](919 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:27, 03:40](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 03:45](1057 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 03:34](923 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:31, 08:16](886 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:33, 08:10](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:53](1061 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:19](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 05:35](2346 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:27, 08:06](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:39] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:38](1063 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:13, 01:50] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:34, 01:39](236 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:23](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:51](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:16, 33:38] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:55, 06:09](1915 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:17, 33:29] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:37, 05:41](1905 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 37:25] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [20:49, 18:45](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [20:46, 18:24](1856 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:52, 05:19](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:44] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:54, 09:22](1887 MB) - -PASS -- COMPILE 'atmw_intel' [36:16, 35:28] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:36, 03:13](1866 MB) - -PASS -- COMPILE 'atmaero_intel' [34:19, 33:55] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:36, 06:04](1936 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:39, 06:32](1725 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:17, 06:37](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:03] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:46, 07:34](2007 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 48:44] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 21:35](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:36](2010 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 11:05](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:37](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:39] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:55, 21:07](1890 MB) + +PASS -- COMPILE 's2swa_intel' [41:15, 40:34] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:33, 08:04](2056 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:44, 07:58](2051 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:41, 05:17](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:13](2062 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:54, 04:59](1738 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 08:05](2319 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 08:06](2026 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](2006 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:57](2063 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:25](2036 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:12] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:37](1863 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:29](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:43] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:47, 11:07](2035 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:19] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:49](1936 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 34:44] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 06:14](1957 MB) + +PASS -- COMPILE 's2s_intel' [36:13, 35:04] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:27, 12:25](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 03:55](3060 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:03, 02:28](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:20, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 07:56](2046 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:21, 48:39] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:41, 22:07](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:11](1129 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:39, 25:02](1889 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:21] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:51, 32:50](1898 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:50] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 04:33](650 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:24, 03:55](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:30, 04:05](1560 MB) +PASS -- TEST 'control_latlon_intel' [05:20, 03:55](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:12](1559 MB) +PASS -- TEST 'control_c48_intel' [13:37, 11:48](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:54, 09:13](853 MB) +PASS -- TEST 'control_c192_intel' [16:44, 14:26](1685 MB) +PASS -- TEST 'control_c384_intel' [20:44, 17:57](1829 MB) +PASS -- TEST 'control_c384gdas_intel' [19:55, 13:24](1015 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:19](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:21](441 MB) +PASS -- TEST 'control_lndp_intel' [03:38, 02:14](603 MB) +PASS -- TEST 'control_iovr4_intel' [04:42, 03:27](599 MB) +PASS -- TEST 'control_iovr5_intel' [04:41, 03:27](603 MB) +PASS -- TEST 'control_p8_intel' [06:47, 04:30](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 04:37](1852 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 04:28](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [05:11, 02:58](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:49, 04:30](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:03](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:49, 04:37](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:25](1940 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:27, 07:39](1855 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:26, 05:49](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:02, 04:37](1842 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:57](1853 MB) +PASS -- TEST 'regional_control_intel' [09:18, 08:08](1016 MB) +PASS -- TEST 'regional_restart_intel' [05:47, 04:28](1013 MB) +PASS -- TEST 'regional_decomp_intel' [10:19, 08:30](1017 MB) +PASS -- TEST 'regional_2threads_intel' [07:21, 05:32](1009 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:27, 08:13](1024 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:52, 07:55](1018 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:05] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:05, 10:10](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:44](1217 MB) +PASS -- TEST 'rap_decomp_intel' [12:05, 10:53](984 MB) +PASS -- TEST 'rap_2threads_intel' [11:32, 09:40](1090 MB) +PASS -- TEST 'rap_restart_intel' [07:31, 05:18](995 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:13, 10:10](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 10:53](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:32, 07:54](992 MB) +PASS -- TEST 'hrrr_control_intel' [07:04, 05:25](990 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 05:40](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 04:54](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:49](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:42, 09:58](991 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:42](1929 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 12:18](1927 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:25] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:51, 08:58](966 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](661 MB) + +PASS -- COMPILE 'wam_intel' [33:14, 32:37] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:04, 14:31](1619 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:17, 52:41] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:28, 04:28](1837 MB) +PASS -- TEST 'regional_control_faster_intel' [08:43, 07:35](1020 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 03:34](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 03:31](1573 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:55](776 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:33](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:05, 05:58](1100 MB) +PASS -- TEST 'control_ras_debug_intel' [04:32, 03:37](783 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:31](1636 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 04:20](1875 MB) +PASS -- TEST 'regional_debug_intel' [23:59, 22:56](1046 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:27](1162 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:16](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 06:28](1162 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 06:25](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:25](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:49, 06:48](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 06:28](1162 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 06:29](1163 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 06:24](1164 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:11](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:08](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:10](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:10](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 06:05](1160 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:34](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:32, 06:21](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:36, 10:44](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:41] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:08, 16:50](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:14] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:44, 05:19](1086 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 08:26](905 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:18, 04:29](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 07:58](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 04:05](910 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:18, 04:43](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:07, 06:24](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:27](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:39] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:16, 03:04](1112 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:00, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:39](1029 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:54] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 05:39](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:13, 04:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:13](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 06:02](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:14, 18:37](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:12, 18:51](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:05, 10:51](1102 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 18:42](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 06:15](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [39:15, 38:11] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:07](710 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 06:45](1083 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:03, 09:32](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:35](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:17](819 MB) +PASS -- TEST 'gnv1_nested_intel' [11:08, 07:12](1671 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:15, 33:20] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:36, 08:49](777 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 08:55](750 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:27] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1060 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 02:16](1029 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:42](932 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:48](921 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:50](923 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:44](1046 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](924 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:01, 08:02](896 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 08:01](841 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:44](1064 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 05:09](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 05:11](2355 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:36] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:29, 08:03](1007 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:09] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:41](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:44](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:25](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 01:05](252 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:16, 33:50] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 05:32](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:32] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:35, 05:35](1896 MB) + +PASS -- COMPILE 'atml_intel' [38:17, 37:19] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 09:19](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:52, 09:02](1863 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 05:06](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:53, 08:15](1886 MB) + +PASS -- COMPILE 'atmw_intel' [36:18, 35:11] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 03:02](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [34:14, 33:02] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:01](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:36, 06:22](1724 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:38](1741 MB) SYNOPSIS: -Starting Date/Time: 20240719 07:42:32 -Ending Date/Time: 20240719 11:45:08 -Total Time: 04h:03m:15s +Starting Date/Time: 20240723 05:48:30 +Ending Date/Time: 20240723 09:45:37 +Total Time: 03h:57m:43s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 24218707bd..13807a10e1 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3326160 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3439478 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 15:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:15](2096 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:28] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:44, 18:05](1957 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:22, 19:17](2139 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 09:05](1199 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:52, 20:21](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:38, 17:46](1954 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:37] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:45, 27:22](1940 MB) - -PASS -- COMPILE 's2swa_intel' [16:12, 15:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:41, 14:47](2147 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:22](2147 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:47, 07:46](1809 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:41, 14:30](2156 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:48, 07:46](1709 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:13](2434 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:35, 14:02](2128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:59](2048 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:22](2153 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:33, 16:15](2750 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:01, 08:43](2725 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 11:27](3659 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:48, 07:18](3499 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:51](2120 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 13:39](1983 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:29, 04:43](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 07:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:34](2160 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 06:50] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:15](2009 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:30, 04:38](2054 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:51](3105 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:19](3085 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:14](2521 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:12, 23:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:34, 15:07](2133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [30:13, 29:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:23, 18:09](2008 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 09:09](1261 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:11, 20:21](1919 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:25, 28:42](1974 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:23, 03:39](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 03:14](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 03:04](1593 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:47, 03:08](1587 MB) -PASS -- TEST 'control_c48_intel' [09:48, 09:09](1743 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:55](857 MB) -PASS -- TEST 'control_c192_intel' [12:56, 11:16](1728 MB) -PASS -- TEST 'control_c384_intel' [13:42, 12:08](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:39, 09:24](1360 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 01:47](645 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:40, 01:04](477 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:40](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:42](643 MB) -PASS -- TEST 'control_iovr5_intel' [03:26, 02:39](642 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:26](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:15, 03:31](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:30, 03:24](1886 MB) -PASS -- TEST 'control_restart_p8_intel' [03:16, 02:06](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:11, 03:24](1875 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 02:03](1118 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:30](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:10, 03:37](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:46](1885 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:48](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:32, 03:28](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:45](1894 MB) -PASS -- TEST 'regional_control_intel' [07:40, 06:21](1071 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 03:29](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:39, 06:39](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:29, 04:37](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 06:23](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 06:17](1088 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:40, 06:21](1094 MB) -PASS -- TEST 'regional_wofs_intel' [08:42, 07:32](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 12:09] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:26, 08:16](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 05:04](1306 MB) -PASS -- TEST 'rap_decomp_intel' [10:09, 08:31](1025 MB) -PASS -- TEST 'rap_2threads_intel' [09:57, 08:16](1171 MB) -PASS -- TEST 'rap_restart_intel' [06:33, 04:18](1046 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:18, 08:12](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:53, 08:26](1029 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:10](1077 MB) -PASS -- TEST 'hrrr_control_intel' [05:55, 04:13](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:51, 04:20](1024 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:18, 04:04](1091 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:24, 02:23](947 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:22, 08:04](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:44](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:23](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:50] -PASS -- TEST 'control_csawmg_intel' [07:45, 06:27](1022 MB) -PASS -- TEST 'control_ras_intel' [04:27, 03:25](723 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 10:58] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:13](1668 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:13, 19:56] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:23, 03:13](1894 MB) -PASS -- TEST 'regional_control_faster_intel' [06:41, 06:03](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:41](1620 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:36](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:00](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:49](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:27](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:46](831 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [03:50, 03:01](1923 MB) -PASS -- TEST 'regional_debug_intel' [18:46, 17:39](1113 MB) -PASS -- TEST 'rap_control_debug_intel' [05:29, 04:58](1213 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:48](1211 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:50](1218 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:55](1211 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:54](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:12](1299 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:13](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:22, 05:02](1210 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:21, 05:00](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 05:09](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:54](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 05:05](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:04](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:53](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 06:03](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:58](1210 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:31, 08:29](1217 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:28] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 13:39](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:12, 11:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:49](1166 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:04, 06:59](1001 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:31, 03:42](934 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:54, 07:08](1075 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:05, 03:35](949 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:43, 03:50](905 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:26, 05:13](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:58](885 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 18:50] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:36](1173 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:10](1127 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:42, 01:28](1087 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:15, 11:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:39, 04:28](980 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:22, 04:52](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:43](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [14:54, 14:10](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 14:25](946 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:31](1178 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:39, 14:23](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:26, 04:53](1141 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 06:02](760 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:26, 06:22](1134 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:37](832 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:21](866 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:21, 28:49](890 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:02, 07:02](517 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:27, 08:24](526 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:57, 03:24](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:21, 09:31](492 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:42](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 04:26](544 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:52, 05:45](595 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:30](408 MB) -PASS -- TEST 'gnv1_nested_intel' [07:13, 04:16](1732 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:15, 05:37] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:17](594 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:15, 22:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:01, 12:58](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:03, 13:05](741 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:13, 14:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:04, 08:47](724 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:13, 13:33] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:19, 07:37](834 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:20, 07:25](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:01, 16:26](1202 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:12, 09:26] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:57](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:52](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:53](1013 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1010 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 03:04](1156 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:59](1158 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:50](1013 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:18, 06:30](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:18, 06:24](1004 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:19, 02:59](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:21, 04:18](2437 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2381 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 05:15] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:33](1077 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 09:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 03:00](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 01:03](254 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 01:03](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:38](317 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:12, 12:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:05, 04:07](1968 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:18, 03:52](1963 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:53] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:32, 04:47](1874 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:31, 04:49](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:49](1087 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 06:25] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:29, 05:53](1900 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 12:08] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:31, 02:05](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 11:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:14, 04:33](1994 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:08, 05:11](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:02, 05:19](1787 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 05:03] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 21:02](4556 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:35, 14:21](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 19:08](2126 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1206 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:46, 20:19](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:30] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:44, 17:45](1963 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:11] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 27:12](1942 MB) + +PASS -- COMPILE 's2swa_intel' [17:12, 16:38] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:27, 14:24](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 14:43](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:40, 07:57](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:37, 13:56](2157 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 07:51](1715 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 13:06](2428 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:27, 14:15](2129 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:25, 12:07](2045 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:35, 14:33](2136 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:38, 15:55](2725 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 08:52](2732 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:30, 11:30](3657 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 07:09](3503 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:52](2118 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:04] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:11, 13:25](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:40](2046 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 08:00] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:50](2180 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2007 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:39] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:41](2052 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 14:37] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:42](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:18](3086 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:57, 02:01](2521 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:28](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 18:12](1992 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 09:00](1247 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:23](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:57] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 28:49](1977 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:24, 03:38](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 03:02](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1595 MB) +PASS -- TEST 'control_latlon_intel' [03:42, 03:04](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 03:06](1589 MB) +PASS -- TEST 'control_c48_intel' [10:50, 09:13](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:56](860 MB) +PASS -- TEST 'control_c192_intel' [11:49, 11:09](1734 MB) +PASS -- TEST 'control_c384_intel' [14:54, 12:16](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [12:41, 09:31](1357 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:51, 01:03](476 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](649 MB) +PASS -- TEST 'control_iovr4_intel' [03:30, 02:42](636 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:36](642 MB) +PASS -- TEST 'control_p8_intel' [05:09, 03:26](1890 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:27](1883 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 03:18](1890 MB) +PASS -- TEST 'control_restart_p8_intel' [03:07, 01:57](1094 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:10, 03:22](1872 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:26](1878 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:37](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:48](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:47](1949 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:20, 03:28](1892 MB) +PASS -- TEST 'merra2_thompson_intel' [05:35, 03:44](1898 MB) +PASS -- TEST 'regional_control_intel' [07:38, 06:23](1088 MB) +PASS -- TEST 'regional_restart_intel' [04:37, 03:34](1086 MB) +PASS -- TEST 'regional_decomp_intel' [07:38, 06:46](1088 MB) +PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1080 MB) +PASS -- TEST 'regional_noquilt_intel' [07:38, 06:17](1385 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:18](1083 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 06:24](1087 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:37](1909 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:03, 08:12](1062 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 05:08](1298 MB) +PASS -- TEST 'rap_decomp_intel' [10:03, 08:30](1022 MB) +PASS -- TEST 'rap_2threads_intel' [10:25, 08:15](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:16](1055 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:24, 08:09](1051 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 08:29](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1071 MB) +PASS -- TEST 'hrrr_control_intel' [06:25, 04:15](1026 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 04:21](1022 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:06](1098 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:51, 02:19](959 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:03](1045 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:38](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:25](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [12:12, 11:45] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:32](1021 MB) +PASS -- TEST 'control_ras_intel' [04:21, 03:25](716 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:11](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:25] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:25, 03:12](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 06:06](1090 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:00] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:45](1627 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:46](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:00](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:43](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:20](1140 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:46](820 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [04:48, 03:07](1907 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 17:34](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:53](1209 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:49](1195 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:54](1211 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:49](1204 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:57](1212 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:42, 05:09](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:03](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:59](1212 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:19](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:57](1206 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:49](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 05:01](1209 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:48](1203 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:47](1206 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:06](1205 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:54](1212 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:18](1210 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 05:04] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:43, 13:29](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:49] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:47](1165 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 07:00](999 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:43](936 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:15, 07:04](1076 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:36](950 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 03:49](902 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:27, 05:13](980 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:58](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:50, 02:39](1195 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:12](1129 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:27](1084 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:10] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:28](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:56](1087 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:44](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:11](1248 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:30](947 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1177 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:36, 14:33](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:00](1143 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 14:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:15, 06:01](756 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 06:19](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:34](833 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:18](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:25, 28:47](887 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 07:01](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:32, 08:22](524 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:26](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 09:30](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:45](543 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 04:24](548 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:45](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:35](411 MB) +PASS -- TEST 'gnv1_nested_intel' [07:12, 04:15](1727 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 06:05] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:17](596 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:32] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 12:50](675 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 12:41](736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:14, 08:45](719 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:21, 07:27](846 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 07:22](819 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:28](1205 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:56](1155 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:58](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:48](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1006 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:52](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1144 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:54](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:27](1029 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 06:29](997 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:54](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:17](2441 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2375 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:45] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:30](1079 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:28] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1138 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:20] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](253 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:56](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:35](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 12:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:09, 04:03](1975 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:07, 03:50](1965 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:15] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:50](1876 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:50](1873 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:42](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:29] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:51](1903 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:26] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:12](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:31](1993 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:09, 05:14](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:18](1786 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:14] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:04, 21:02](4556 MB) SYNOPSIS: -Starting Date/Time: 20240719 09:03:08 -Ending Date/Time: 20240719 10:34:12 -Total Time: 01h:32m:06s +Starting Date/Time: 20240722 22:32:52 +Ending Date/Time: 20240723 00:04:05 +Total Time: 01h:32m:05s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 99ed895c99..4cafa4b74d 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: -64efdbc9603ff8a1dad35b3050a8bbdccc306e1f +ec399e628231e03101314fdb378214c340cf96cc Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,10 +11,10 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a8e7a4c547bcb0bde8d1a5a9321920e23d63d848 FV3 (remotes/origin/sigcld) + 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1e9b0dd6c9c9da577349e02c1bb6fc912d29ceba FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4313-g1e9b0dd6) + 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240718 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_17359 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240722 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192846 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:53, 35:11] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [54:55, 01:12](3098 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:40, 22:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [07:14, 01:46](1825 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:56, 01:51](1855 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [44:56, 01:27](971 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [07:15, 01:57](1802 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 23:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [07:15, 01:11](1824 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:20, 04:40] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 02:06](1848 MB) - -PASS -- COMPILE 's2swa_intel' [12:28, 11:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [18:27, 01:07](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:27, 01:32](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:07, 01:13](3063 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:26, 01:12](3150 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:06, 01:11](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:27, 01:29](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:26, 01:01](3124 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [18:28, 01:18](3079 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:27, 01:29](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:35, 04:37](4122 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [46:02, 04:41](4267 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [18:27, 01:40](3113 MB) - -PASS -- COMPILE 's2sw_intel' [11:26, 11:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:28, 00:58](1836 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:28, 01:18](1898 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:28, 01:19](1893 MB) - -PASS -- COMPILE 's2s_intel' [22:39, 22:04] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:14, 00:46](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [08:14, 01:10](2920 MB) -PASS -- TEST 'cpld_restart_c48_intel' [00:04, 01:04](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:38, 22:06] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:16, 01:57](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:28, 11:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:27, 01:46](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:59, 00:54](1011 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:00, 01:16](1810 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:30, 15:58] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [09:05, 01:45](1862 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:38, 20:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [57:48, 00:19](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [57:48, 01:18](1476 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [57:48, 01:23](1479 MB) -PASS -- TEST 'control_latlon_intel' [57:48, 01:00](1476 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [57:48, 01:10](1472 MB) -PASS -- TEST 'control_c48_intel' [57:47, 01:16](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [57:47, 00:56](715 MB) -PASS -- TEST 'control_c192_intel' [57:48, 01:10](1584 MB) -PASS -- TEST 'control_c384_intel' [57:52, 01:49](1909 MB) -PASS -- TEST 'control_c384gdas_intel' [57:52, 02:37](1091 MB) -PASS -- TEST 'control_stochy_intel' [57:48, 00:23](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [53:19, 00:57](333 MB) -PASS -- TEST 'control_lndp_intel' [57:48, 00:29](525 MB) -PASS -- TEST 'control_iovr4_intel' [57:48, 00:40](525 MB) -PASS -- TEST 'control_iovr5_intel' [57:48, 00:45](525 MB) -PASS -- TEST 'control_p8_intel' [57:48, 01:06](1768 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [57:48, 01:22](1764 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [57:48, 02:03](1769 MB) -PASS -- TEST 'control_restart_p8_intel' [51:18, 01:47](921 MB) -PASS -- TEST 'control_noqr_p8_intel' [55:56, 01:37](1767 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:37, 01:39](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [55:26, 00:59](1760 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:22, 01:05](1857 MB) -PASS -- TEST 'control_p8_lndp_intel' [53:20, 01:05](1769 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [52:16, 01:45](1833 MB) -PASS -- TEST 'control_p8_mynn_intel' [52:15, 01:29](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [51:15, 01:41](1772 MB) -PASS -- TEST 'regional_control_intel' [50:59, 01:08](853 MB) -PASS -- TEST 'regional_restart_intel' [44:18, 00:25](853 MB) -PASS -- TEST 'regional_decomp_intel' [50:54, 00:50](857 MB) -PASS -- TEST 'regional_2threads_intel' [50:51, 00:50](909 MB) -PASS -- TEST 'regional_noquilt_intel' [50:49, 00:21](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:12, 00:18](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:09, 01:14](853 MB) -PASS -- TEST 'regional_wofs_intel' [50:08, 00:32](1580 MB) - -PASS -- COMPILE 'rrfs_intel' [33:52, 32:35] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [45:35, 01:31](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [45:36, 01:01](1088 MB) -PASS -- TEST 'rap_decomp_intel' [45:35, 01:17](911 MB) -PASS -- TEST 'rap_2threads_intel' [45:35, 01:42](999 MB) -PASS -- TEST 'rap_restart_intel' [36:27, 02:03](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [45:35, 01:57](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [45:35, 01:41](907 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [35:59, 01:45](781 MB) -PASS -- TEST 'hrrr_control_intel' [45:35, 01:11](902 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [45:35, 01:43](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [45:36, 01:36](984 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:12, 00:42](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [45:35, 02:00](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:35, 00:46](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:32, 01:04](1858 MB) - -PASS -- COMPILE 'csawmg_intel' [18:34, 18:08] -PASS -- TEST 'control_csawmg_intel' [59:53, 01:08](876 MB) -PASS -- TEST 'control_ras_intel' [59:53, 01:01](563 MB) - -PASS -- COMPILE 'wam_intel' [13:28, 12:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [04:58, 00:42](1567 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:33, 13:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [49:57, 01:23](1769 MB) -PASS -- TEST 'regional_control_faster_intel' [49:45, 00:50](851 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:42, 18:16] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [44:34, 00:53](1504 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [44:24, 00:57](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [44:23, 00:34](706 MB) -PASS -- TEST 'control_lndp_debug_intel' [44:17, 00:37](702 MB) -PASS -- TEST 'control_csawmg_debug_intel' [43:26, 00:25](1016 MB) -PASS -- TEST 'control_ras_debug_intel' [43:23, 01:02](713 MB) -PASS -- TEST 'control_diag_debug_intel' [43:06, 01:09](1564 MB) -PASS -- TEST 'control_debug_p8_intel' [42:59, 00:51](1799 MB) -PASS -- TEST 'regional_debug_intel' [42:56, 00:16](904 MB) -PASS -- TEST 'rap_control_debug_intel' [42:24, 00:53](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [41:49, 00:37](1086 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [41:45, 00:28](1088 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [40:23, 00:43](1093 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [40:12, 00:44](1085 MB) -PASS -- TEST 'rap_diag_debug_intel' [39:51, 01:10](1169 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [39:50, 01:08](1092 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [39:36, 00:53](1093 MB) -PASS -- TEST 'rap_lndp_debug_intel' [39:30, 00:43](1091 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [39:29, 00:40](1090 MB) -PASS -- TEST 'rap_noah_debug_intel' [39:24, 00:32](1082 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [38:53, 00:52](1089 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [38:18, 01:04](1086 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [38:16, 00:26](1082 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [37:37, 00:44](1097 MB) -PASS -- TEST 'rap_flake_debug_intel' [37:16, 00:43](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [37:14, 01:48](1095 MB) - -PASS -- COMPILE 'wam_debug_intel' [24:43, 19:06] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [36:53, 01:03](1595 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [40:04, 35:34] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:01, 01:10](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [26:53, 01:10](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:23, 01:44](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:16, 01:28](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:12, 01:40](838 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:41, 01:57](790 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:34, 01:15](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:16, 00:48](671 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [28:50, 23:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [36:41, 00:57](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [32:21, 00:51](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [32:20, 00:41](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:33, 12:29] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [48:57, 01:09](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [19:56, 19:01] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [33:31, 00:25](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [33:27, 00:33](955 MB) -PASS -- TEST 'conus13km_debug_intel' [32:14, 01:26](1052 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [32:07, 01:04](726 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [31:59, 01:02](1054 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [31:59, 01:01](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:35, 15:25] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [36:26, 00:44](997 MB) - -PASS -- COMPILE 'hafsw_intel' [11:29, 10:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [36:05, 01:59](617 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [36:02, 01:05](965 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [35:58, 02:00](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:57, 01:48](696 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [35:37, 02:27](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [35:15, 01:05](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [35:15, 02:26](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [33:57, 00:51](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [31:58, 02:54](373 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [31:29, 01:24](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [31:24, 00:53](422 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [30:51, 01:25](498 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [29:57, 00:28](315 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:32, 08:29] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [29:58, 01:30](517 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:56, 19:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 01:32](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:32, 01:19](716 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:42] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:56, 00:58](714 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:25, 09:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [29:39, 02:15](657 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:37, 01:54](644 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:54, 00:14](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:29, 13:51] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:12, 01:00](1829 MB) - -PASS -- COMPILE 'atml_intel' [20:36, 19:46] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:31, 13:23] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:50, 15:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:22, 01:13](3023 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [21:22, 01:39](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [21:22, 01:13](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:21, 06:25] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:10, 01:51](4439 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:37, 19:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:10, 01:17](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:41, 25:19] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:05, 01:59](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:55, 01:35](1853 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [24:00, 01:46](987 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:06, 01:35](1805 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [35:54, 35:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [32:52, 01:08](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:40] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [03:28, 01:55](1848 MB) + +PASS -- COMPILE 's2swa_intel' [20:34, 20:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [48:12, 01:24](3136 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:12, 01:45](3128 MB) +PASS -- TEST 'cpld_restart_p8_intel' [39:44, 01:06](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [48:12, 01:25](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:43, 01:45](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [48:12, 01:51](3367 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [48:12, 01:31](3127 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [48:13, 01:29](3073 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:12, 01:37](3132 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [48:21, 04:38](4128 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:41, 04:45](4270 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:12, 01:37](3113 MB) + +PASS -- COMPILE 's2sw_intel' [23:40, 23:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [45:06, 01:46](1829 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:06, 01:57](1895 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 12:02] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:19, 01:06](1895 MB) + +PASS -- COMPILE 's2s_intel' [34:51, 33:50] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:54, 00:59](2924 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:54, 01:25](2920 MB) +PASS -- TEST 'cpld_restart_c48_intel' [29:50, 01:20](2324 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:35, 20:36] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [47:11, 01:57](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:41, 22:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:05, 00:50](1837 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:32, 01:36](1009 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:33, 01:44](1809 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:35, 18:56] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:52, 01:42](1859 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:49, 29:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [26:29, 00:25](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:29, 00:31](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:29, 00:25](1481 MB) +PASS -- TEST 'control_latlon_intel' [26:29, 00:23](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:29, 00:33](1477 MB) +PASS -- TEST 'control_c48_intel' [26:28, 01:08](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [26:28, 00:50](713 MB) +PASS -- TEST 'control_c192_intel' [26:29, 00:44](1587 MB) +PASS -- TEST 'control_c384_intel' [26:33, 01:22](1907 MB) +PASS -- TEST 'control_c384gdas_intel' [26:33, 01:54](1087 MB) +PASS -- TEST 'control_stochy_intel' [26:29, 00:25](531 MB) +PASS -- TEST 'control_stochy_restart_intel' [23:59, 01:04](334 MB) +PASS -- TEST 'control_lndp_intel' [26:29, 00:30](526 MB) +PASS -- TEST 'control_iovr4_intel' [26:29, 00:42](525 MB) +PASS -- TEST 'control_iovr5_intel' [25:48, 00:45](525 MB) +PASS -- TEST 'control_p8_intel' [23:59, 01:58](1763 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [23:43, 02:00](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [23:02, 02:05](1770 MB) +PASS -- TEST 'control_restart_p8_intel' [18:34, 01:02](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [23:02, 02:06](1757 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [17:21, 01:05](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [22:56, 01:59](1757 MB) +PASS -- TEST 'control_2threads_p8_intel' [22:55, 01:07](1863 MB) +PASS -- TEST 'control_p8_lndp_intel' [22:40, 01:10](1776 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:35, 02:02](1823 MB) +PASS -- TEST 'control_p8_mynn_intel' [22:33, 01:48](1784 MB) +PASS -- TEST 'merra2_thompson_intel' [22:29, 01:54](1773 MB) +PASS -- TEST 'regional_control_intel' [22:09, 01:06](854 MB) +PASS -- TEST 'regional_restart_intel' [15:21, 00:19](852 MB) +PASS -- TEST 'regional_decomp_intel' [22:04, 00:51](852 MB) +PASS -- TEST 'regional_2threads_intel' [21:49, 00:59](900 MB) +PASS -- TEST 'regional_noquilt_intel' [21:29, 00:16](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:53, 01:24](850 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [20:53, 01:17](853 MB) +PASS -- TEST 'regional_wofs_intel' [20:39, 00:36](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [30:53, 30:02] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [17:09, 01:40](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:56, 01:13](1088 MB) +PASS -- TEST 'rap_decomp_intel' [16:47, 01:24](916 MB) +PASS -- TEST 'rap_2threads_intel' [16:45, 01:46](999 MB) +PASS -- TEST 'rap_restart_intel' [08:10, 01:25](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [16:14, 02:11](908 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:05, 01:46](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 01:52](780 MB) +PASS -- TEST 'hrrr_control_intel' [15:49, 01:01](903 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [15:47, 00:58](907 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [15:44, 01:24](987 MB) +PASS -- TEST 'hrrr_control_restart_intel' [10:43, 01:08](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:35, 01:19](905 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:22, 01:02](1865 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:05, 01:10](1854 MB) + +PASS -- COMPILE 'csawmg_intel' [19:37, 19:08] +PASS -- TEST 'control_csawmg_intel' [28:32, 00:23](875 MB) +PASS -- TEST 'control_ras_intel' [28:32, 00:57](562 MB) + +PASS -- COMPILE 'wam_intel' [18:33, 18:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [28:37, 00:52](1561 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:37, 20:21] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [19:42, 02:05](1771 MB) +PASS -- TEST 'regional_control_faster_intel' [18:33, 00:23](850 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:36, 19:52] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:19, 01:17](1505 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:06, 01:21](1497 MB) +PASS -- TEST 'control_stochy_debug_intel' [17:26, 00:52](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [17:21, 01:04](704 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:05, 00:31](1013 MB) +PASS -- TEST 'control_ras_debug_intel' [14:42, 01:00](709 MB) +PASS -- TEST 'control_diag_debug_intel' [14:09, 01:16](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [14:08, 00:55](1792 MB) +PASS -- TEST 'regional_debug_intel' [14:01, 00:16](898 MB) +PASS -- TEST 'rap_control_debug_intel' [13:50, 00:43](1087 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:22, 00:53](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:19, 00:47](1084 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [13:17, 00:45](1085 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:16, 00:46](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [12:55, 00:42](1170 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:55, 00:42](1088 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:54, 00:42](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:54, 00:48](1091 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 00:56](1086 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:43, 00:48](1081 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:42, 00:45](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 00:40](1084 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:34, 00:48](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:14, 00:55](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:19, 00:42](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 02:04](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [17:30, 16:27] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:09, 00:17](1597 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:32, 14:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:34, 01:26](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:33, 01:27](788 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:33, 01:58](790 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:33, 01:54](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:34, 01:34](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 01:50](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:32](687 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:45, 00:15](669 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:38, 17:31] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:22, 01:04](1004 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:21, 00:53](1007 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 00:42](882 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:32, 14:16] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 01:21](813 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:40, 18:03] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:01, 00:54](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:46, 01:06](956 MB) +PASS -- TEST 'conus13km_debug_intel' [06:46, 01:20](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [06:45, 01:14](724 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [06:44, 00:26](1055 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:37, 01:07](1123 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:32, 13:58] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:34, 00:57](995 MB) + +PASS -- COMPILE 'hafsw_intel' [18:45, 18:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 02:04](620 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 00:38](968 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:18, 01:37](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [06:02, 01:21](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:45, 02:07](710 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 01:06](390 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 02:17](407 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:18, 01:35](286 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:01, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 01:34](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 00:49](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:09, 00:46](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 00:29](316 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:43, 17:18] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:38, 01:17](520 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:35, 16:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:58, 01:46](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:15, 01:35](709 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:42, 21:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:02, 01:49](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [27:48, 27:25] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:41, 02:05](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:41, 02:02](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:39, 00:26](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:37, 18:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:42, 00:48](1829 MB) + +PASS -- COMPILE 'atml_intel' [14:30, 13:40] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:25, 07:22] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [10:28, 09:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [00:29, 01:24](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [00:27, 01:58](2911 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:11, 01:55](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:32, 10:24] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [58:24, 01:05](4440 MB) SYNOPSIS: -Starting Date/Time: 20240719 15:28:45 -Ending Date/Time: 20240719 17:07:59 -Total Time: 01h:40m:04s +Starting Date/Time: 20240722 17:50:57 +Ending Date/Time: 20240722 19:28:17 +Total Time: 01h:37m:51s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/parm/noahmptable.tbl b/tests/parm/noahmptable.tbl index 3ffd5b5320..44531919ed 100644 --- a/tests/parm/noahmptable.tbl +++ b/tests/parm/noahmptable.tbl @@ -217,7 +217,7 @@ !--------------------------------------------------------------------------------------------------------------------------------------------------------------------- ch2op = 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, dleaf = 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, 0.04, - z0mvt = 1.09, 1.10, 0.85, 0.80, 0.80, 0.20, 0.06, 0.60, 0.50, 0.12, 0.30, 0.15, 1.00, 0.14, 0.00, 0.00, 0.00, 0.30, 0.20, 0.03, + z0mvt = 1.00, 1.50, 0.75, 0.90, 0.85, 0.20, 0.10, 0.90, 0.60, 0.20, 0.30, 0.25, 1.00, 0.25, 0.00, 0.015, 0.00, 0.30, 0.10, 0.05, hvt = 20.0, 20.0, 18.0, 16.0, 16.0, 1.10, 1.10, 13.0, 10.0, 1.00, 5.00, 2.00, 15.0, 1.50, 0.00, 0.00, 0.00, 4.00, 2.00, 0.50, hvb = 8.50, 8.00, 7.00, 11.5, 10.0, 0.10, 0.10, 0.10, 0.10, 0.05, 0.10, 0.10, 1.00, 0.10, 0.00, 0.00, 0.00, 0.30, 0.20, 0.10, z0mhvt= 0.0545, 0.055, 0.047, 0.050, 0.050, 0.182, 0.0545, 0.046, 0.050, 0.120, 0.060, 0.075, 0.067, 0.093, 0.000, 0.000, 0.000, 0.075, 0.100, 0.060, @@ -226,32 +226,34 @@ !mfsno = 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, 2.50, ! c. he 12/17/2020: optimized mfsno values dependent on land type based on evaluation with snotel swe and modis scf, surface albedo mfsno = 1.00, 1.00, 1.00, 1.00, 1.00, 2.00, 2.00, 2.00, 2.00, 2.00, 3.00, 3.00, 4.00, 4.00, 2.50, 3.00, 3.00, 3.50, 3.50, 3.50, +!mfsno = 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, 1.97, ! c. he 12/17/2020: optimized snow cover factor (m) in scf formulation to replace original constant 2.5*z0,z0=0.002m, based on evaluation with snotel swe and modis scf, surface albedo ! scffac = 0.008, 0.008, 0.008, 0.008, 0.008, 0.016, 0.016, 0.020, 0.020, 0.020, 0.020, 0.014, 0.042, 0.026, 0.030, 0.016, 0.030, 0.030, 0.030, 0.030, - scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, + scffac = 0.005, 0.005, 0.005, 0.005, 0.005, 0.008, 0.008, 0.010, 0.010, 0.010, 0.010, 0.007, 0.021, 0.013, 0.015, 0.008, 0.015, 0.015, 0.015, 0.015, +! scffac = 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, 0.059, cbiom = 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, 0.02, ! row 1: vis ! row 2: near ir rhol_vis=0.07, 0.10, 0.07, 0.10, 0.10, 0.07, 0.07, 0.07, 0.10, 0.11, 0.105, 0.11, 0.00, 0.11, 0.00, 0.00, 0.00, 0.10, 0.10, 0.10, - rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.58, 0.515, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, + rhol_nir=0.35, 0.45, 0.35, 0.45, 0.45, 0.35, 0.35, 0.35, 0.45, 0.35, 0.515, 0.35, 0.00, 0.35, 0.00, 0.00, 0.00, 0.45, 0.45, 0.45, ! row 1: vis ! row 2: near ir - rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.36, 0.26, 0.36, 0.00, 0.36, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, - rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.58, 0.485, 0.58, 0.00, 0.58, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, + rhos_vis=0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.16, 0.31, 0.26, 0.31, 0.00, 0.31, 0.00, 0.00, 0.00, 0.16, 0.16, 0.16, + rhos_nir=0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.39, 0.53, 0.485, 0.53, 0.00, 0.53, 0.00, 0.00, 0.00, 0.39, 0.39, 0.39, ! row 1: vis ! row 2: near ir - taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.07, 0.06, 0.07, 0.00, 0.07, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, - taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.25, 0.25, 0.25, 0.00, 0.25, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, + taul_vis=0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.05, 0.06, 0.05, 0.00, 0.05, 0.00, 0.00, 0.00, 0.05, 0.05, 0.05, + taul_nir=0.10, 0.25, 0.10, 0.25, 0.25, 0.10, 0.10, 0.10, 0.25, 0.34, 0.25, 0.34, 0.00, 0.34, 0.00, 0.00, 0.00, 0.25, 0.25, 0.25, ! row 1: vis ! row 2: near ir - taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.220, 0.1105, 0.220, 0.000, 0.220, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.380, 0.1905, 0.380, 0.000, 0.380, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_vis=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.120, 0.1105, 0.120, 0.000, 0.120, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, + taus_nir=0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.001, 0.250, 0.1905, 0.250, 0.000, 0.250, 0.000, 0.000, 0.000, 0.001, 0.001, 0.001, - xl = 0.010, 0.010, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, + xl = 0.010, 0.10, 0.010, 0.250, 0.250, 0.010, 0.010, 0.010, 0.010, -0.30, -0.025, -0.30, 0.000, -0.30, 0.000, 0.000, 0.000, 0.250, 0.250, 0.250, ! make cwpvt vegetation dependent according to j. goudriaan, crop micrometeorology: a simulation study (simulation monographs), 1977). c. he, 12/17/2020 ! cwpvt = 0.18, 0.67, 0.18, 0.67, 0.29, 1.0, 2.0, 1.3, 1.0, 5.0, 1.17, 1.67, 1.67, 1.67, 0.18, 0.18, 0.18, 0.67, 1.0, 0.18, cwpvt = 0.09, 0.335, 0.09, 0.335, 0.145, 0.5, 1.0, 0.65, 0.5, 2.5, 0.585, 0.835, 0.835, 0.835, 0.09, 0.09, 0.09, 0.335, 0.5, 0.09, @@ -335,10 +337,10 @@ !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 soil color index for soil albedo !-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - albsat_vis = 0.25, 0.23, 0.21, 0.20, 0.19, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.12, 0.11, 0.10, 0.09, 0.08, 0.07, 0.06, 0.05, 0.04 ! saturated soil albedos - albsat_nir = 0.50, 0.46, 0.42, 0.40, 0.38, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.24, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! saturated soil albedos - albdry_vis = 0.36, 0.34, 0.32, 0.31, 0.30, 0.29, 0.28, 0.27, 0.26, 0.25, 0.24, 0.23, 0.22, 0.20, 0.18, 0.16, 0.14, 0.12, 0.10, 0.08 ! dry soil albedos - albdry_nir = 0.61, 0.57, 0.53, 0.51, 0.49, 0.48, 0.45, 0.43, 0.41, 0.39, 0.37, 0.35, 0.33, 0.31, 0.29, 0.27, 0.25, 0.23, 0.21, 0.16 ! dry soil albedos + albsat_vis = 0.21, 0.20, 0.18, 0.17, 0.16, 0.15, 0.14, 0.13, 0.13, 0.12, 0.11, 0.10, 0.10, 0.09, 0.08, 0.08, 0.08, 0.07, 0.07, 0.06 ! saturated soil albedos + albsat_nir = 0.42, 0.40, 0.36, 0.34, 0.32, 0.30, 0.28, 0.26, 0.26, 0.24, 0.22, 0.20, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! saturated soil albedos + albdry_vis = 0.31, 0.30, 0.28, 0.27, 0.26, 0.24, 0.23, 0.22, 0.22, 0.22, 0.20, 0.19, 0.20, 0.18, 0.16, 0.16, 0.16, 0.14, 0.14, 0.13 ! dry soil albedos + albdry_nir = 0.52, 0.50, 0.46, 0.44, 0.42, 0.40, 0.38, 0.37, 0.36, 0.34, 0.32, 0.30, 0.30, 0.28, 0.27, 0.27, 0.27, 0.26, 0.25, 0.25 ! dry soil albedos albice = 0.80, 0.55 ! albedo land ice: 1=vis, 2=nir alblak = 0.60, 0.40 ! albedo frozen lakes: 1=vis, 2=nir omegas = 0.8 , 0.4 ! two-stream parameter omega for snow @@ -397,7 +399,7 @@ class_sno_age = 3600.0 ! snow aging e-folding time (s) in class albedo scheme class_alb_new = 0.84 ! fresh snow albedo in class scheme psiwlt = -150.0 !metric potential for wilting point (m) - z0soil = 0.002 ! bare-soil roughness length (m) (i.e., under the canopy) + z0soil = 0.015 ! bare-soil roughness length (m) (i.e., under the canopy) z0lake = 0.01 ! lake surface roughness length (m) / diff --git a/tests/test_changes.list b/tests/test_changes.list index 9b0b0ff136..972378d3ac 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -32,21 +32,13 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 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_c192 intel control_c384 intel -control_c384gdas intel -control_stochy intel -control_stochy_restart intel -control_lndp intel -control_iovr4 intel -control_iovr5 intel control_p8 intel control_p8.v2.sfc intel control_p8_ugwpv1 intel @@ -59,38 +51,22 @@ control_p8_lndp intel control_p8_rrtmgp intel control_p8_mynn intel merra2_thompson intel -control_csawmg intel -control_ras intel +rrfs_v1beta intel +rrfs_v1nssl intel +rrfs_v1nssl_nohailnoccn intel control_wam intel control_p8_faster intel control_CubedSphereGrid_debug intel control_wrtGauss_netcdf_parallel_debug intel -control_stochy_debug intel -control_lndp_debug intel -control_ras_debug intel control_diag_debug intel control_debug_p8 intel +rrfs_v1beta_debug intel +gnv1_c96_no_nest_debug intel control_wam_debug intel -conus13km_debug_2threads intel -hafs_regional_atm intel -hafs_regional_atm_thompson_gfdlsf intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_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_regional_storm_following_1nest_atm_ocn intel -hafs_global_storm_following_1nest_atm intel -hafs_regional_storm_following_1nest_atm_ocn_debug intel -hafs_regional_storm_following_1nest_atm_ocn_wav intel -hafs_regional_storm_following_1nest_atm_ocn_wav_inline intel -hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel +gnv1_nested intel +datm_cdeps_lnd_gswp3 intel +datm_cdeps_lnd_era5 intel +datm_cdeps_lnd_era5_rst intel atm_ds2s_docn_pcice intel atm_ds2s_docn_dice intel control_p8_atmlnd_sbs intel @@ -103,16 +79,13 @@ atmaero_control_p8_rad intel atmaero_control_p8_rad_micro intel regional_atmaq_debug intel control_c48 gnu -control_stochy gnu -control_ras gnu control_p8 gnu control_p8_ugwpv1 gnu -control_flake gnu +rrfs_v1beta gnu control_diag_debug gnu -control_ras_debug gnu -control_stochy_debug gnu +rrfs_v1beta_debug gnu control_debug_p8 gnu +gnv1_c96_no_nest_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu - From e6ec3d139f917cfcafdeee01759df0bb225402d8 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Fri, 26 Jul 2024 11:45:51 -0400 Subject: [PATCH 4/8] update CMEPS (#2352) * CMEPS - Sync CMEPS with ESCOMP/main. --- CMEPS-interface/CMEPS | 2 +- tests/bl_date.conf | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 528 ++++++------ tests/logs/RegressionTests_derecho.log | 617 ++++++-------- tests/logs/RegressionTests_gaea.log | 550 ++++++------ tests/logs/RegressionTests_hera.log | 742 ++++++++-------- tests/logs/RegressionTests_hercules.log | 796 ++++++++---------- tests/logs/RegressionTests_jet.log | 488 +++++------ tests/logs/RegressionTests_orion.log | 613 ++++++++------ tests/logs/RegressionTests_wcoss2.log | 460 +++++----- tests/rt.conf | 2 +- tests/test_changes.list | 74 +- 15 files changed, 2440 insertions(+), 2536 deletions(-) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 2d837b16af..f13e16e414 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 2d837b16af326b09ff4018daab4de84f4deff7ec +Subproject commit f13e16e414e115e268b2dd300b665e628e5f2429 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index dcd06eace9..5448183396 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240722 +export BL_DATE=20240724 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 72195a564d..4a8675bfd4 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 20:34:33 UTC 2024 +Wed Jul 24 20:10:07 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 290.687493 - 0: The maximum resident set size (KB) = 1455104 + 0: The total amount of wall time = 287.098363 + 0: The maximum resident set size (KB) = 1449616 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 991.650717 - 0: The maximum resident set size (KB) = 1439732 + 0: The total amount of wall time = 987.462605 + 0: The maximum resident set size (KB) = 1413952 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 255.224911 - 0: The maximum resident set size (KB) = 1430828 + 0: The total amount of wall time = 254.621474 + 0: The maximum resident set size (KB) = 1413152 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.620393 - 0: The maximum resident set size (KB) = 1433224 + 0: The total amount of wall time = 249.757061 + 0: The maximum resident set size (KB) = 1432096 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 262.750592 - 0: The maximum resident set size (KB) = 1435888 + 0: The total amount of wall time = 249.818760 + 0: The maximum resident set size (KB) = 1404272 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 252.883306 - 0: The maximum resident set size (KB) = 1432108 + 0: The total amount of wall time = 254.379486 + 0: The maximum resident set size (KB) = 1415716 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1849586/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/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 = 257.944152 - 0: The maximum resident set size (KB) = 1433316 + 0: The total amount of wall time = 252.840901 + 0: The maximum resident set size (KB) = 1413640 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 21:47:03 UTC 2024 -Elapsed time: 01h:12m:31s. Have a nice day! +Wed Jul 24 21:22:39 UTC 2024 +Elapsed time: 01h:12m:33s. 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 73884b41fa..bd5ba9f0c7 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 19:01:08 UTC 2024 +Wed Jul 24 19:03:11 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 1574.601495 - 0: The maximum resident set size (KB) = 1510852 + 0: The total amount of wall time = 1364.396894 + 0: The maximum resident set size (KB) = 1503220 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 435.767884 - 0: The maximum resident set size (KB) = 1538868 + 0: The total amount of wall time = 571.646799 + 0: The maximum resident set size (KB) = 1494576 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1231766/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/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 = 435.149030 - 0: The maximum resident set size (KB) = 1523140 + 0: The total amount of wall time = 430.360696 + 0: The maximum resident set size (KB) = 1506724 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 20:34:32 UTC 2024 -Elapsed time: 01h:33m:24s. Have a nice day! +Wed Jul 24 20:10:06 UTC 2024 +Elapsed time: 01h:06m:56s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index a85adfdae1..00f72c583d 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Jul 22 16:30:51 UTC 2024 +Wed Jul 24 16:28:05 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 1397.064435 - 0: The maximum resident set size (KB) = 762344 + 0: The total amount of wall time = 1412.442409 + 0: The maximum resident set size (KB) = 740268 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2174.865742 - 0: The maximum resident set size (KB) = 709236 + 0: The total amount of wall time = 2294.672242 + 0: The maximum resident set size (KB) = 705360 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2179.697019 - 0: The maximum resident set size (KB) = 717568 + 0: The total amount of wall time = 2170.957201 + 0: The maximum resident set size (KB) = 715832 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2519577/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/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 = 2239.474214 - 0: The maximum resident set size (KB) = 705128 + 0: The total amount of wall time = 2158.899518 + 0: The maximum resident set size (KB) = 704304 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Jul 22 19:01:08 UTC 2024 -Elapsed time: 02h:30m:17s. Have a nice day! +Wed Jul 24 19:03:10 UTC 2024 +Elapsed time: 02h:35m:05s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2d2cf63d51..68d6cb2f68 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: -552b40ba9030e83e8f1c6245970ad5b13769e707 +2fd1d2b2ddf1951557092cdf259c8fa1cfad9099 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 81950993462af14cd53a3b5d7280014fc60d7abf FV3 (remotes/origin/cherry_pick_omga) - 57ca82d862410971889f0f0badad5a8fca89b280 FV3/atmos_cubed_sphere (remotes/origin/cherry_pick_omga) - ccfefcd0b426e011f94137031d5f7c2a4dda2659 FV3/ccpp/framework (ccpp_transition_to_vlab_master_20190705-750-gccfefcd) - 16a1d881774d795f46db16017aeed7fc351d661a FV3/ccpp/physics (EP4-808-g16a1d881) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -24,7 +24,7 @@ Submodule hashes used in testing: b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - ec38ea3d902644cd4519d5fe060316859ccdc108 NOAHMP-interface/noahmp (v3.7.1-434-gec38ea3) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,272 +35,272 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240614 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_196495 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_820335 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 10:56] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:55, 02:07](3166 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:00] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [05:50, 02:36](1882 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:33, 02:44](1903 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [44:33, 02:32](1040 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [05:51, 01:45](1856 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:02] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [05:50, 01:28](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:01, 03:00](1909 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:54, 01:22](3196 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:54, 02:15](3200 MB) -PASS -- TEST 'cpld_restart_p8_intel' [01:57, 02:24](3127 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:54, 01:43](3217 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [55:02, 01:19](3146 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:54, 02:02](3428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:54, 01:47](3186 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:55, 01:33](3141 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:54, 01:51](3196 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:54, 01:59](3176 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:00] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:38, 01:38](3210 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:32, 16:37] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:29, 02:05](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:16, 03:12](1968 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:13, 03:18](1083 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:30, 03:14](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:31, 15:31] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:30, 00:31](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:49] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [36:44, 02:53](1961 MB) + +PASS -- COMPILE 's2swa_intel' [11:24, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [30:37, 01:45](3240 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:37, 01:39](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:27, 02:02](3178 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [30:37, 01:18](3264 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:46, 01:39](3194 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [30:37, 01:29](3476 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [30:37, 01:35](3236 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [30:38, 01:28](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:37, 01:42](3242 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [30:37, 02:05](3223 MB) PASS -- COMPILE 's2sw_intel' [11:24, 10:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:54, 01:56](1890 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:54, 02:10](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:53] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:54, 02:09](1948 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 10:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:53, 01:29](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:53, 01:20](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:25, 00:51](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:33, 18:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:45, 01:34](3196 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [15:29, 15:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [06:49, 01:12](1892 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [46:05, 01:34](1050 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:44, 01:53](1865 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:32] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [11:43, 01:09](1918 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:14] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [58:46, 00:44](630 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [57:30, 01:18](1525 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [56:09, 00:49](1531 MB) -PASS -- TEST 'control_latlon_intel' [55:38, 01:07](1534 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [54:38, 01:03](1532 MB) -PASS -- TEST 'control_c48_intel' [54:37, 01:15](1609 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [54:33, 01:17](734 MB) -PASS -- TEST 'control_c192_intel' [54:00, 00:51](1644 MB) -PASS -- TEST 'control_c384_intel' [53:49, 02:06](1954 MB) -PASS -- TEST 'control_c384gdas_intel' [53:00, 03:01](1149 MB) -PASS -- TEST 'control_stochy_intel' [49:39, 00:38](587 MB) -PASS -- TEST 'control_stochy_restart_intel' [40:02, 01:15](392 MB) -PASS -- TEST 'control_lndp_intel' [47:35, 00:43](586 MB) -PASS -- TEST 'control_iovr4_intel' [46:44, 00:37](582 MB) -PASS -- TEST 'control_iovr5_intel' [46:38, 00:23](581 MB) -PASS -- TEST 'control_p8_intel' [46:16, 01:49](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [46:16, 02:13](1829 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [46:16, 02:11](1831 MB) -PASS -- TEST 'control_restart_p8_intel' [35:03, 01:18](977 MB) -PASS -- TEST 'control_noqr_p8_intel' [45:37, 01:23](1823 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [34:57, 02:16](981 MB) -PASS -- TEST 'control_decomp_p8_intel' [45:36, 02:18](1826 MB) -PASS -- TEST 'control_2threads_p8_intel' [44:55, 02:17](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [42:24, 01:12](1829 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [42:03, 02:11](1882 MB) -PASS -- TEST 'control_p8_mynn_intel' [42:02, 01:53](1834 MB) -PASS -- TEST 'merra2_thompson_intel' [41:42, 02:31](1837 MB) -PASS -- TEST 'regional_control_intel' [40:30, 00:18](878 MB) -PASS -- TEST 'regional_restart_intel' [33:37, 00:14](872 MB) -PASS -- TEST 'regional_decomp_intel' [40:18, 01:08](876 MB) -PASS -- TEST 'regional_2threads_intel' [40:03, 00:54](964 MB) -PASS -- TEST 'regional_noquilt_intel' [40:00, 00:19](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [39:22, 00:16](875 MB) -PASS -- TEST 'regional_wofs_intel' [39:16, 00:46](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:31] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [02:30, 00:28](884 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [02:30, 01:00](883 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [02:31, 00:47](967 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:31] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [01:19, 01:40](970 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [01:20, 01:23](1148 MB) -PASS -- TEST 'rap_decomp_intel' [01:19, 02:13](972 MB) -PASS -- TEST 'rap_2threads_intel' [01:19, 02:10](1054 MB) -PASS -- TEST 'rap_restart_intel' [39:09, 02:32](839 MB) -PASS -- TEST 'rap_sfcdiff_intel' [01:19, 02:12](969 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [01:19, 02:12](969 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [38:02, 02:25](836 MB) -PASS -- TEST 'hrrr_control_intel' [01:19, 03:13](960 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [01:19, 03:09](964 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [01:20, 03:00](1044 MB) -PASS -- TEST 'hrrr_control_restart_intel' [35:31, 00:50](794 MB) -PASS -- TEST 'rrfs_v1beta_intel' [01:19, 02:19](964 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [01:19, 00:22](1930 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [35:18, 00:44](1920 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:51] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [01:33, 01:04](928 MB) -PASS -- TEST 'control_ras_intel' [01:33, 01:05](623 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [01:32, 01:12](1628 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:29, 16:08] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [35:06, 02:34](1828 MB) -PASS -- TEST 'regional_control_faster_intel' [35:02, 00:15](873 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:34, 05:47] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [34:27, 01:10](1553 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [34:05, 01:22](1557 MB) -PASS -- TEST 'control_stochy_debug_intel' [32:37, 00:27](764 MB) -PASS -- TEST 'control_lndp_debug_intel' [32:37, 01:10](759 MB) -PASS -- TEST 'control_csawmg_debug_intel' [32:14, 00:28](1075 MB) -PASS -- TEST 'control_ras_debug_intel' [31:53, 00:48](769 MB) -PASS -- TEST 'control_diag_debug_intel' [31:48, 01:09](1615 MB) -PASS -- TEST 'control_debug_p8_intel' [31:34, 00:53](1856 MB) -PASS -- TEST 'regional_debug_intel' [30:48, 01:08](939 MB) -PASS -- TEST 'rap_control_debug_intel' [30:36, 01:06](1146 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:25, 01:13](1139 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [30:09, 01:11](1152 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [30:08, 01:05](1149 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:38, 00:24](1146 MB) -PASS -- TEST 'rap_diag_debug_intel' [28:49, 01:22](1228 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [28:40, 01:10](1146 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [28:35, 01:02](1151 MB) -PASS -- TEST 'rap_lndp_debug_intel' [28:07, 00:55](1152 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [28:07, 01:16](1146 MB) -PASS -- TEST 'rap_noah_debug_intel' [28:06, 01:03](1141 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [27:34, 01:08](1141 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [27:21, 00:37](1141 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [27:06, 00:58](1137 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [26:52, 01:08](1147 MB) -PASS -- TEST 'rap_flake_debug_intel' [26:44, 00:52](1151 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [26:27, 02:23](1149 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:33, 03:49] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [26:21, 01:01](1655 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:40, 08:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:42, 01:29](1013 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:27, 02:13](851 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [24:15, 03:04](845 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [23:07, 02:20](908 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [23:06, 02:32](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [22:54, 02:28](845 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:56, 01:45](744 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [15:37, 01:15](726 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [57:13, 12:45] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:19, 00:57](1057 MB) -PASS -- TEST 'conus13km_2threads_intel' [38:47, 00:43](1040 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [38:46, 00:24](941 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [52:10, 09:01] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:21, 01:09](872 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [46:03, 03:57] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:30, 00:56](1025 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:30, 01:02](1025 MB) -PASS -- TEST 'conus13km_debug_intel' [12:32, 01:15](1128 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:30, 01:09](821 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:31, 00:21](1098 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:30, 00:38](1184 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [46:03, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [15:29, 00:57](1039 MB) - -PASS -- COMPILE 'hafsw_intel' [54:11, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:11, 02:16](670 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 01:05](1017 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:09, 01:43](718 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [07:09, 01:30](747 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [07:10, 01:36](915 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:09, 01:42](439 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:02, 01:52](463 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:02, 01:22](338 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [04:04, 03:02](404 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:00, 01:07](477 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [03:59, 00:49](474 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:01, 00:49](535 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:00, 00:52](367 MB) -PASS -- TEST 'gnv1_nested_intel' [03:29, 03:33](1668 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [47:04, 04:10] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:28, 01:01](627 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [54:11, 17:02] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [58:13, 00:49](580 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [58:07, 01:43](753 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [38:54, 10:14] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:22, 01:24](752 MB) - -PASS -- COMPILE 'hafs_all_intel' [37:53, 09:35] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:23, 02:02](710 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:23, 01:57](698 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [07:21, 00:23](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [30:46, 09:01] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [08:23, 01:10](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:54, 00:18](752 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:23, 00:28](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:23, 00:56](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:23, 01:12](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:23, 00:57](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:23, 01:04](765 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [08:23, 01:11](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 01:28](649 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 01:24](635 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [08:23, 00:51](753 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:23, 01:03](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:23, 00:54](2020 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:16] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [01:33, 01:12](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:15, 00:37](267 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:15, 00:24](409 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:41, 00:58](411 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:24, 09:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:28, 01:18](1883 MB) - -PASS -- COMPILE 'atml_intel' [11:24, 10:58] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:23, 02:37](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [55:52, 02:48](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [37:11, 00:57](992 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:21, 04:32] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [55:00, 02:10](1894 MB) - -PASS -- COMPILE 'atmw_intel' [37:51, 09:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [30:32, 02:24](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [36:50, 09:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [30:31, 01:49](3089 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [30:31, 02:09](2972 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [30:31, 02:17](2988 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [31:47, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [35:33, 01:58](4524 MB) +PASS -- TEST 'cpld_control_noaero_p8_intel' [30:37, 00:58](1936 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:37, 02:13](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:37, 02:18](1992 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 09:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [31:36, 01:00](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [31:36, 01:25](2940 MB) +PASS -- TEST 'cpld_restart_c48_intel' [27:10, 00:41](2338 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:31, 14:57] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [26:31, 01:36](3242 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:32, 16:00] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:30, 01:46](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:45, 01:52](1108 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:00, 00:57](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:33] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 00:58](1979 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:15] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:35, 00:26](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 01:11](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:48, 00:26](1577 MB) +PASS -- TEST 'control_latlon_intel' [16:21, 00:40](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:23, 00:30](1567 MB) +PASS -- TEST 'control_c48_intel' [13:43, 00:55](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:22, 01:09](733 MB) +PASS -- TEST 'control_c192_intel' [13:22, 01:15](1691 MB) +PASS -- TEST 'control_c384_intel' [13:21, 01:53](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [11:23, 02:51](1196 MB) +PASS -- TEST 'control_stochy_intel' [10:38, 00:26](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [56:57, 00:15](434 MB) +PASS -- TEST 'control_lndp_intel' [10:24, 00:22](630 MB) +PASS -- TEST 'control_iovr4_intel' [09:25, 00:39](624 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 00:27](624 MB) +PASS -- TEST 'control_p8_intel' [05:30, 02:09](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:16](1862 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 02:44](1871 MB) +PASS -- TEST 'control_restart_p8_intel' [52:30, 02:00](1020 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:20, 01:23](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [52:30, 01:52](1024 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:40, 01:41](1858 MB) +PASS -- TEST 'control_2threads_p8_intel' [01:20, 01:25](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [01:19, 00:39](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [00:20, 02:07](1932 MB) +PASS -- TEST 'control_p8_mynn_intel' [57:59, 02:25](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [57:13, 02:44](1873 MB) +PASS -- TEST 'regional_control_intel' [57:20, 01:09](875 MB) +PASS -- TEST 'regional_restart_intel' [50:29, 00:28](873 MB) +PASS -- TEST 'regional_decomp_intel' [57:03, 00:28](877 MB) +PASS -- TEST 'regional_2threads_intel' [57:00, 01:03](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [56:47, 00:31](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [56:45, 00:37](871 MB) +PASS -- TEST 'regional_wofs_intel' [56:10, 00:26](1603 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:28] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [22:14, 00:44](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [22:14, 00:40](876 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [22:15, 00:31](1000 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [21:02, 01:57](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:03, 01:22](1190 MB) +PASS -- TEST 'rap_decomp_intel' [21:02, 01:56](1010 MB) +PASS -- TEST 'rap_2threads_intel' [21:02, 02:44](1095 MB) +PASS -- TEST 'rap_restart_intel' [54:59, 03:00](890 MB) +PASS -- TEST 'rap_sfcdiff_intel' [21:02, 02:13](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:02, 01:47](1007 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [54:53, 02:24](891 MB) +PASS -- TEST 'hrrr_control_intel' [21:02, 02:15](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [21:02, 02:30](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [21:03, 03:04](1090 MB) +PASS -- TEST 'hrrr_control_restart_intel' [54:41, 00:23](842 MB) +PASS -- TEST 'rrfs_v1beta_intel' [53:21, 02:42](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [52:30, 00:22](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:23, 00:42](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [09:21, 08:55] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [21:15, 01:13](969 MB) +PASS -- TEST 'control_ras_intel' [21:15, 00:41](659 MB) + +PASS -- COMPILE 'wam_intel' [09:21, 08:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [21:15, 01:13](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:26, 12:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [52:02, 02:23](1864 MB) +PASS -- TEST 'regional_control_faster_intel' [51:52, 01:05](870 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:47] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:53, 00:33](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:19, 00:37](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [49:37, 00:59](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [49:10, 00:34](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:54, 00:20](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [48:41, 00:57](828 MB) +PASS -- TEST 'control_diag_debug_intel' [48:03, 00:35](1678 MB) +PASS -- TEST 'control_debug_p8_intel' [47:56, 01:06](1912 MB) +PASS -- TEST 'regional_debug_intel' [47:16, 00:40](930 MB) +PASS -- TEST 'rap_control_debug_intel' [46:25, 00:30](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [46:07, 00:25](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [45:49, 01:02](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [45:01, 00:38](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:55, 01:15](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [44:26, 01:14](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:45](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:07, 00:48](1206 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:43, 01:06](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:41, 01:04](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [43:05, 00:55](1194 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [42:59, 00:28](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:01, 00:41](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [42:04, 00:59](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [41:54, 00:59](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [41:47, 00:18](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:08, 02:38](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [57:16, 03:47] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [28:13, 01:06](1704 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:41, 08:56] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:04, 00:56](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:58, 01:58](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:52, 03:25](891 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:44, 02:10](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:33, 02:01](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [37:27, 03:04](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:27, 02:24](798 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:28, 00:18](770 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 11:51] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [20:10, 01:08](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:57, 00:19](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [11:30, 01:03](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:17, 08:57] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:58, 01:26](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [53:10, 03:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:04, 00:39](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [28:04, 00:57](1069 MB) +PASS -- TEST 'conus13km_debug_intel' [28:04, 00:40](1183 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [28:04, 00:56](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [28:05, 01:03](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:04, 00:36](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:10, 03:52] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:04, 00:44](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [01:16, 10:26] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [19:48, 01:24](709 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:48, 00:48](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 02:06](761 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:46, 02:15](794 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:47, 02:05](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:46, 00:48](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:47, 02:16](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:47, 01:17](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:50, 02:21](456 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:46, 01:00](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:46, 01:20](517 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:48, 01:03](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:47, 01:16](419 MB) +PASS -- TEST 'gnv1_nested_intel' [19:45, 03:08](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [54:12, 04:12] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:03, 01:04](661 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [02:23, 13:40] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:09, 01:17](690 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:04, 01:43](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [57:12, 10:10] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:02, 01:28](794 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:56, 09:45] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:54, 01:41](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:54, 01:59](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:52, 00:57](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:48, 00:26](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:16, 00:19](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:52, 00:35](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:58, 00:40](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:35, 00:53](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:05, 00:47](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:38, 00:17](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:35, 01:05](650 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:30, 01:07](687 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [03:53, 01:04](672 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 00:33](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:29, 00:29](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:25, 01:00](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 00:16](767 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:50, 00:29](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:50, 01:11](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [52:46, 00:48](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:28, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:09, 01:06](1930 MB) + +PASS -- COMPILE 'atml_intel' [23:37, 10:35] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:15, 02:06](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [00:41, 01:58](1894 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:06, 00:52](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [16:30, 04:46] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [59:28, 02:13](1934 MB) + +PASS -- COMPILE 'atmw_intel' [28:42, 09:37] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:27, 02:19](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [29:43, 09:15] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [50:15, 02:11](3132 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 01:58](3011 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:07, 01:37](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [24:39, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [55:15, 01:39](4544 MB) SYNOPSIS: -Starting Date/Time: 20240701 18:37:11 -Ending Date/Time: 20240701 20:52:17 -Total Time: 02h:15m:32s +Starting Date/Time: 20240726 02:17:38 +Ending Date/Time: 20240726 04:39:45 +Total Time: 02h:22m:34s Compiles Completed: 38/38 Tests Completed: 179/179 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 301236ca75..f6cc28edc6 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,354 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_70873 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_37591 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [25:18, 21:53] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:50, 05:31](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:20, 23:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:59, 14:42](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 15:50](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:04, 07:53](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:36, 16:25](1887 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:17, 23:56] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:52, 14:22](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:32, 11:57] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [37:34, 21:25] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:26, 06:02](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:29, 06:10](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:14, 03:51](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:24, 06:15](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:14, 04:11](3184 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:08, 05:54](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:08, 06:17](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:02, 05:06](3539 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:15](3235 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_c192_p8_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_c192_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:40, 10:29](4519 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 06:57](4665 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:49, 05:46](3210 MB) - -PASS -- COMPILE 's2sw_intel' [30:20, 19:56] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:58](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:47, 04:56](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [27:33, 11:36] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:10](3303 MB) - -PASS -- COMPILE 's2sw_debug_intel' [27:33, 11:08] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:39, 05:51](1955 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [31:34, 15:43] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:25, 04:52](1987 MB) - -PASS -- COMPILE 's2s_intel' [19:16, 16:00] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [03:25, 06:47](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [19:13, 02:21](2947 MB) -PASS -- TEST 'cpld_restart_c48_intel' [39:21, 01:38](2343 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:32, 25:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:07, 06:07](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:25, 22:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:40, 14:36](1943 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:09, 07:48](1110 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:40, 16:41](1907 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [01:27, 11:10] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 23:42](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [03:23, 15:14] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:37, 03:24](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:16, 02:25](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:29, 02:28](1571 MB) -PASS -- TEST 'control_latlon_intel' [04:15, 02:24](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:20, 02:26](1562 MB) -PASS -- TEST 'control_c48_intel' [08:19, 06:05](1619 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:43, 05:17](734 MB) -PASS -- TEST 'control_c192_intel' [11:59, 08:44](1687 MB) -PASS -- TEST 'control_c384_intel' [14:08, 08:45](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [12:54, 07:07](1197 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:26](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 00:53](435 MB) -PASS -- TEST 'control_lndp_intel' [02:34, 01:22](626 MB) -PASS -- TEST 'control_iovr4_intel' [03:38, 02:09](621 MB) -PASS -- TEST 'control_iovr5_intel' [03:38, 02:08](622 MB) -PASS -- TEST 'control_p8_intel' [05:21, 03:09](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:28, 03:10](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:28, 03:01](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [04:18, 02:14](1007 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:10](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 01:58](1020 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:12, 03:08](1865 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:05](1956 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:14, 05:00](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:17, 04:01](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:35, 03:09](1873 MB) -PASS -- TEST 'merra2_thompson_intel' [05:25, 03:26](1870 MB) -PASS -- TEST 'regional_control_intel' [06:55, 04:58](869 MB) -PASS -- TEST 'regional_restart_intel' [04:54, 02:57](876 MB) -PASS -- TEST 'regional_decomp_intel' [06:48, 05:10](872 MB) -PASS -- TEST 'regional_noquilt_intel' [06:53, 04:55](1189 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:45, 04:56](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:56, 05:02](872 MB) -PASS -- TEST 'regional_wofs_intel' [07:59, 05:41](1604 MB) - -PASS -- COMPILE 'rrfs_intel' [59:23, 13:03] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:10, 06:09](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:05, 03:41](1193 MB) -PASS -- TEST 'rap_decomp_intel' [08:10, 06:25](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:10, 05:39](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:05, 03:13](883 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:08, 06:06](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:08, 06:22](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 04:35](881 MB) -PASS -- TEST 'hrrr_control_intel' [05:00, 03:14](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:00, 03:18](1007 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:00, 02:48](1081 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 01:47](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:06, 06:00](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:51, 07:21](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:47, 07:07](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:21, 11:06] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:51, 06:26](963 MB) -PASS -- TEST 'control_ras_intel' [04:28, 02:52](657 MB) - -PASS -- COMPILE 'wam_intel' [11:21, 10:46] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:53, 09:56](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:24] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:03](1852 MB) -PASS -- TEST 'regional_control_faster_intel' [06:48, 04:46](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:19, 12:29] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 02:35](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:59, 02:30](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:32, 02:53](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:30, 02:37](810 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:53, 04:33](1122 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:41](817 MB) -PASS -- TEST 'control_diag_debug_intel' [05:11, 02:39](1667 MB) -PASS -- TEST 'control_debug_p8_intel' [04:49, 03:12](1908 MB) -PASS -- TEST 'regional_debug_intel' [17:49, 16:27](930 MB) -PASS -- TEST 'rap_control_debug_intel' [06:24, 04:49](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:41](1183 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:37, 04:44](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:38, 04:39](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:33, 04:43](1191 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:16, 04:53](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:32, 04:45](1192 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:35, 04:57](1199 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:42](1192 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:42, 04:41](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:36, 04:36](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:37, 04:41](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 07:34](1192 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:35, 04:37](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:34, 05:47](1194 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:33, 04:38](1189 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:10, 07:52](1195 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 06:38] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:09, 12:16](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:20, 11:07] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:34, 03:31](1056 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:55, 05:06](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:06, 02:45](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:53, 04:45](949 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:05, 02:26](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:53](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:58, 03:52](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:45, 01:30](778 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:20, 15:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:41, 01:52](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:36, 00:57](1087 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:18, 11:08] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:03, 03:37](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:17, 07:03] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:34, 04:37](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:33](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [16:06, 13:20](1154 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:01, 13:24](837 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:48, 07:42](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:50, 13:37](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 06:52] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:33, 04:47](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:37](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:35, 05:05](1068 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 06:25](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:49, 11:00](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:08, 12:11](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:50, 04:40](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:57, 05:49](491 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:08, 02:17](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:38, 06:12](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:05, 03:21](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:41, 03:06](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:52](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:30, 01:19](427 MB) -PASS -- TEST 'gnv1_nested_intel' [07:34, 04:07](1718 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:17, 08:16] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:30, 12:11](626 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [28:16, 27:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:30, 07:12](629 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:57, 07:12](689 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:15, 19:06] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:36, 05:24](678 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:45] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:39, 05:37](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:36, 05:40](739 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:18, 16:17](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:37] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:30](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:43, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:22](646 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:24](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:35, 02:23](648 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:33, 02:27](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:29](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:34, 02:20](646 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:53, 05:36](694 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:55, 05:36](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:26, 02:28](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:46, 03:55](2018 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:47, 03:53](2021 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 05:55] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:12](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:34] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:29](764 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:16, 02:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:12, 01:16](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:11, 01:05](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 00:47](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:13, 12:58] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:59, 04:05](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:47](1899 MB) - -PASS -- COMPILE 'atml_intel' [16:13, 15:13] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:52, 06:51](1886 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 06:40](1884 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:01, 03:57](1037 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:12, 10:03] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 06:19](1920 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 14:09] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:27, 02:09](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [13:19, 12:20] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:54, 04:12](3121 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:19](3000 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:25, 04:22](3014 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:18, 08:14] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:48, 21:48](4536 MB) +PASS -- COMPILE 's2swa_32bit_intel' [31:29, 21:46] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:29, 05:41](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:28, 23:51] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [31:29, 14:44](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:54](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 08:11](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 16:34](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:29, 24:00] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [28:10, 14:24](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:25, 12:32] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [30:26, 21:33] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:04, 06:19](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 06:15](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:03, 04:17](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:42, 06:23](3258 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:07, 04:13](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 06:06](3731 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:20, 06:16](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:04, 05:19](3539 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 06:20](3237 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:51, 10:00](3895 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:55](3622 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:25, 10:29](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:12, 07:09](4666 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:01, 06:05](3215 MB) + +PASS -- COMPILE 's2sw_intel' [29:28, 19:51] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:33, 04:54](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:42, 05:04](1986 MB) + +PASS -- COMPILE 's2swa_debug_intel' [21:24, 12:10] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:04, 08:35](3302 MB) + +PASS -- COMPILE 's2sw_debug_intel' [21:26, 11:18] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:51](1952 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [25:25, 15:59] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:48, 05:05](1988 MB) + +PASS -- COMPILE 's2s_intel' [25:24, 16:07] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [51:03, 06:51](2947 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [46:07, 02:27](2948 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:32, 01:38](2339 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:17, 26:35] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 06:31](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [12:39, 24:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:47, 15:01](1939 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:48, 08:06](1115 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:37, 16:39](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [00:52, 13:42] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 23:57](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [01:25, 17:00] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [08:32, 03:25](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:01, 02:25](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:28](1568 MB) +PASS -- TEST 'control_latlon_intel' [05:00, 02:27](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:28](1569 MB) +PASS -- TEST 'control_c48_intel' [08:00, 06:08](1619 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:18](734 MB) +PASS -- TEST 'control_c192_intel' [12:35, 08:42](1682 MB) +PASS -- TEST 'control_c384_intel' [15:38, 08:46](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:47, 07:12](1197 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 01:29](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:56](441 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 01:23](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:38, 02:09](619 MB) +PASS -- TEST 'control_iovr5_intel' [03:34, 02:07](621 MB) +PASS -- TEST 'control_p8_intel' [05:27, 03:15](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:07](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:18](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [05:17, 02:05](1001 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:16, 03:15](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](1017 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:14](1853 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:02](1946 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:04](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:59](1916 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:17](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [06:23, 03:34](1868 MB) +PASS -- TEST 'regional_control_intel' [06:58, 05:01](870 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 03:14](875 MB) +PASS -- TEST 'regional_decomp_intel' [06:55, 05:19](872 MB) +PASS -- TEST 'regional_noquilt_intel' [08:59, 05:06](1196 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:05](878 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:14](871 MB) +PASS -- TEST 'regional_wofs_intel' [08:54, 05:41](1603 MB) + +PASS -- COMPILE 'rrfs_intel' [59:02, 14:42] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:21, 06:10](1014 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:57](1197 MB) +PASS -- TEST 'rap_decomp_intel' [13:21, 06:24](1006 MB) +PASS -- TEST 'rap_2threads_intel' [12:34, 05:41](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:11, 03:14](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:23, 06:08](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:23, 06:24](1002 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:06, 04:38](881 MB) +PASS -- TEST 'hrrr_control_intel' [08:21, 03:25](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 03:28](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [11:31, 02:50](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:48](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:24, 06:02](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:08, 07:35](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:08, 07:19](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [52:38, 12:22] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [09:17, 06:59](962 MB) +PASS -- TEST 'control_ras_intel' [04:47, 02:55](656 MB) + +PASS -- COMPILE 'wam_intel' [51:40, 12:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 10:07](1662 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [57:33, 19:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:09](1871 MB) +PASS -- TEST 'regional_control_faster_intel' [06:51, 04:54](869 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [50:58, 14:21] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 02:36](1612 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:51, 02:31](1608 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:02](813 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:53, 02:48](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:47, 04:44](1121 MB) +PASS -- TEST 'control_ras_debug_intel' [06:55, 02:51](817 MB) +PASS -- TEST 'control_diag_debug_intel' [10:29, 02:38](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [05:56, 03:23](1905 MB) +PASS -- TEST 'regional_debug_intel' [18:52, 16:35](940 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 04:42](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [26:34, 04:36](1190 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [26:37, 04:50](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:40](1195 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 04:41](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:58, 04:53](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 04:55](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:46](1200 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:43](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:44](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:43](1191 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:48](1191 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:39](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:57](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:38, 04:41](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:10](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [44:57, 08:03] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:47, 12:48](1701 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:35, 12:42] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:41](1061 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:13](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:33, 02:59](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 04:48](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:30, 02:27](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 02:58](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:54](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:36](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:37, 16:13] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:05, 01:55](1090 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:12, 01:03](1086 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:34, 01:09](974 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:56, 11:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:55, 03:38](911 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:56, 08:00] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:33](1066 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:33](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [16:00, 13:17](1154 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 13:40](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:37, 07:58](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:51](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:46, 07:50] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:39](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [19:48, 18:57] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:29, 04:37](716 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:52, 05:14](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:57, 06:31](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:08](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:48, 12:18](815 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:46](475 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 05:47](488 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:05, 02:19](394 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:39, 06:21](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:23](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 03:08](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:54](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:16](429 MB) +PASS -- TEST 'gnv1_nested_intel' [07:27, 04:07](1720 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:38, 09:24] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:32, 12:26](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [29:40, 27:33] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:15, 07:11](633 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 07:20](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [22:20, 20:02] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:37, 05:30](680 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:15, 16:03] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 05:40](756 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 05:43](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:18](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:14, 09:02] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:42, 02:29](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:34](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:23](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:24](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:25](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:30](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:30](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:39, 02:21](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 05:43](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](770 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:54](2035 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:35, 03:55](2034 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:37] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:12](739 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:56] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:30](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 02:57] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:15](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:13](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:50] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:04](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:47] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:56](1900 MB) + +PASS -- COMPILE 'atml_intel' [18:15, 15:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:10](1888 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:45, 07:28](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 04:17](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:19, 10:17] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:06](1936 MB) + +PASS -- COMPILE 'atmw_intel' [16:21, 14:24] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [14:14, 12:42] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:38, 04:20](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:20](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:18, 04:21](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:07] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:57, 21:52](4535 MB) SYNOPSIS: -Starting Date/Time: 20240722 21:35:07 -Ending Date/Time: 20240723 00:11:51 -Total Time: 02h:37m:47s +Starting Date/Time: 20240725 11:13:10 +Ending Date/Time: 20240725 13:43:58 +Total Time: 02h:31m:54s Compiles Completed: 41/41 -Tests Completed: 181/183 -Failed Tests: -* TEST cpld_control_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_control_c192_p8_intel.log -* TEST cpld_restart_c192_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2354/tests/logs/log_derecho/run_cpld_restart_c192_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_56330 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_intel' [23:16, 21:55] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_c192_p8_intel' [12:38, 09:39](3892 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:17, 06:39](3629 MB) - -SYNOPSIS: -Starting Date/Time: 20240723 10:34:25 -Ending Date/Time: 20240723 11:22:06 -Total Time: 00h:47m:51s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 183/183 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index fa74099679..03dce4aae7 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,285 +35,285 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_14217 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_109327 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:12, 40:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:04, 08:00](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [42:15, 41:14] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:54, 14:01](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:57, 14:44](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 06:59](1078 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:44, 15:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:15, 41:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [15:56, 13:51](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [37:15, 36:46] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:33, 24:39](1948 MB) - -PASS -- COMPILE 's2swa_intel' [41:12, 40:48] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:28, 08:41](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:35, 08:49](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:03, 05:15](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:27, 08:53](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:04, 05:12](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:41, 06:47](3462 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:18, 08:38](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:40](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:45, 08:47](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:45, 10:44](3441 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:34, 07:19](3612 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:06, 13:52](4205 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:34, 09:49](4363 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:49](3207 MB) - -PASS -- COMPILE 's2sw_intel' [38:15, 37:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:43](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:53, 06:06](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [37:15, 36:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:50, 10:45](3279 MB) - -PASS -- COMPILE 's2sw_debug_intel' [35:12, 34:15] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:53, 06:00](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [37:15, 36:25] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:50, 05:18](1999 MB) - -PASS -- COMPILE 's2s_intel' [34:12, 33:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:45, 06:31](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:36, 02:05](2930 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:29](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:16, 40:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:00, 08:26](3228 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [35:14, 34:18] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:46, 15:44](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:51, 08:07](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:39, 18:12](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [25:12, 24:39] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:02, 27:01](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [25:12, 24:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:36, 04:03](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:30, 03:07](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:26, 03:20](1569 MB) -PASS -- TEST 'control_latlon_intel' [07:13, 03:40](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:24, 03:37](1572 MB) -PASS -- TEST 'control_c48_intel' [10:36, 06:31](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [09:16, 05:40](720 MB) -PASS -- TEST 'control_c192_intel' [15:15, 10:06](1681 MB) -PASS -- TEST 'control_c384_intel' [23:46, 18:14](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [18:27, 14:15](1178 MB) -PASS -- TEST 'control_stochy_intel' [05:33, 02:08](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:36, 01:28](426 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 01:59](622 MB) -PASS -- TEST 'control_iovr4_intel' [05:40, 02:53](620 MB) -PASS -- TEST 'control_iovr5_intel' [05:40, 02:37](620 MB) -PASS -- TEST 'control_p8_intel' [06:31, 03:41](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:44, 04:02](1858 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:31, 03:28](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [03:11, 01:49](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:21, 03:28](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 01:50](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:18, 03:26](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:18, 03:08](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:23](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:54](1919 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:40](1867 MB) -PASS -- TEST 'merra2_thompson_intel' [05:29, 03:50](1865 MB) -PASS -- TEST 'regional_control_intel' [06:52, 05:19](859 MB) -PASS -- TEST 'regional_restart_intel' [03:47, 02:51](861 MB) -PASS -- TEST 'regional_decomp_intel' [06:51, 05:29](860 MB) -PASS -- TEST 'regional_2threads_intel' [04:46, 03:11](1007 MB) -PASS -- TEST 'regional_noquilt_intel' [06:56, 05:08](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 05:10](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:46, 05:17](867 MB) -PASS -- TEST 'regional_wofs_intel' [09:17, 06:51](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [24:12, 23:57] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:30, 06:46](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:04](1185 MB) -PASS -- TEST 'rap_decomp_intel' [09:31, 07:08](1009 MB) -PASS -- TEST 'rap_2threads_intel' [08:38, 06:07](1101 MB) -PASS -- TEST 'rap_restart_intel' [06:14, 03:38](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:37, 06:59](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:30, 07:09](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:19, 05:27](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:22, 03:52](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:22, 03:59](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 03:10](1085 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:25](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:31, 06:57](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:54, 08:11](1962 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:52](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [23:12, 22:18] -PASS -- TEST 'control_csawmg_intel' [10:55, 06:39](964 MB) -PASS -- TEST 'control_ras_intel' [04:45, 03:29](657 MB) - -PASS -- COMPILE 'wam_intel' [21:11, 20:38] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:12, 11:47](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [29:11, 28:34] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:01, 03:13](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [06:38, 05:05](866 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [24:13, 23:09] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:13, 03:01](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:09, 03:02](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:54, 03:21](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:33, 02:51](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:30](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [04:07, 02:52](805 MB) -PASS -- TEST 'control_diag_debug_intel' [04:28, 03:01](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 03:25](1892 MB) -PASS -- TEST 'regional_debug_intel' [17:47, 16:33](910 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 05:10](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:37, 05:04](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:29, 05:43](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 05:24](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:31](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:45](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:37, 05:39](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 06:01](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:36, 05:40](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:38, 05:52](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:37, 05:42](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:51, 05:22](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 08:17](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:46, 05:03](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:42, 05:59](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:36, 05:10](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 08:42](1185 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:11, 16:58] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:11, 13:39](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [19:12, 18:09] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:21, 04:04](1046 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:11, 05:54](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 03:39](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:16, 05:22](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 02:56](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:06, 03:39](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:34, 04:29](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:01](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:15, 24:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:49, 02:15](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:58, 01:29](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:01, 01:23](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:11, 19:59] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:20, 04:16](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:12, 15:23] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 04:57](1058 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:51](1061 MB) -PASS -- TEST 'conus13km_debug_intel' [17:10, 14:36](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:59, 14:32](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:28](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:20](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [16:12, 15:14] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:30, 05:09](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [25:11, 24:44] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:25, 05:59](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:50, 05:09](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:47, 08:19](758 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:29, 12:18](788 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:50, 13:32](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:27, 06:34](479 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:47, 07:53](500 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:35, 03:16](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:18, 09:09](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 04:27](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:21, 04:43](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:26, 04:51](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:18, 01:48](403 MB) -PASS -- TEST 'gnv1_nested_intel' [11:57, 06:11](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [20:14, 19:52] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:23](599 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:29, 07:44](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:29, 07:49](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [29:12, 28:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:43, 06:11](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [28:15, 27:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:18, 06:17](742 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:28, 06:17](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:33, 20:02](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [24:14, 23:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:34](760 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:33, 01:36](748 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:30](635 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:41, 02:28](635 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:32](640 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:41, 02:35](760 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:36](761 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:40, 02:28](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:24, 06:06](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:27, 06:13](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:39, 02:34](747 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:39, 04:39](2014 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:37, 04:41](2014 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [19:15, 19:04] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:26, 05:33](742 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [24:14, 23:51] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:41, 02:34](761 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:15, 07:40] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:59, 02:31](317 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:00, 01:50](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:57, 01:13](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:11, 26:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 04:13](1924 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [25:11, 24:47] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:46, 04:01](1913 MB) - -PASS -- COMPILE 'atml_intel' [26:11, 25:37] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:48, 07:29](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 07:12](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 04:00](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [21:17, 20:32] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:39, 06:34](1933 MB) - -PASS -- COMPILE 'atmw_intel' [20:11, 19:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:06, 02:29](1897 MB) - -PASS -- COMPILE 'atmaero_intel' [18:11, 17:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:27, 06:24](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:27, 06:30](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:20, 07:01](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:11, 12:40] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:40, 18:31](4484 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:15, 18:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:27, 07:05](3197 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 23:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [32:18, 13:46](1925 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:13, 14:50](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [31:20, 07:07](1063 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:30, 14:46](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:18, 26:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:42, 13:10](1915 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:22] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [38:55, 24:00](1948 MB) + +PASS -- COMPILE 's2swa_intel' [18:15, 18:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:05, 07:38](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:13, 07:39](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [37:48, 04:48](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:05, 07:44](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [37:48, 04:46](3180 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:11, 06:17](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:05, 07:40](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:57, 06:43](3169 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:03, 07:53](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [30:00, 10:25](3448 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [35:50, 07:13](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [38:28, 12:48](4207 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:43, 08:58](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:54, 07:28](3206 MB) + +PASS -- COMPILE 's2sw_intel' [22:15, 21:10] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [21:18, 05:03](1939 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:33, 05:20](1997 MB) + +PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [23:54, 09:25](3277 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:44, 05:56](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:32, 05:12](1998 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 15:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [22:13, 06:32](2927 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [17:11, 01:57](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:10, 01:09](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:18, 24:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [39:51, 07:23](3227 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:59] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:33, 15:09](1934 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:34](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:12, 17:21](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:17, 12:02] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 26:41](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:15, 14:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [38:38, 03:38](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 03:10](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:51, 03:04](1570 MB) +PASS -- TEST 'control_latlon_intel' [34:45, 03:01](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:02, 02:56](1572 MB) +PASS -- TEST 'control_c48_intel' [38:15, 06:30](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [36:47, 05:44](719 MB) +PASS -- TEST 'control_c192_intel' [39:50, 09:59](1683 MB) +PASS -- TEST 'control_c384_intel' [48:08, 18:10](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [46:06, 14:22](1181 MB) +PASS -- TEST 'control_stochy_intel' [31:33, 01:51](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:12](426 MB) +PASS -- TEST 'control_lndp_intel' [29:45, 01:48](622 MB) +PASS -- TEST 'control_iovr4_intel' [28:35, 02:32](620 MB) +PASS -- TEST 'control_iovr5_intel' [28:35, 02:35](620 MB) +PASS -- TEST 'control_p8_intel' [30:02, 03:30](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:19, 03:30](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [30:04, 03:12](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [02:57, 01:39](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:01, 03:20](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:38](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [28:59, 03:24](1860 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:05, 02:54](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:41, 05:12](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [13:02, 04:03](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [12:01, 03:14](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [12:04, 03:30](1866 MB) +PASS -- TEST 'regional_control_intel' [06:38, 04:48](860 MB) +PASS -- TEST 'regional_restart_intel' [05:34, 02:38](848 MB) +PASS -- TEST 'regional_decomp_intel' [11:35, 05:04](860 MB) +PASS -- TEST 'regional_2threads_intel' [08:34, 02:59](1006 MB) +PASS -- TEST 'regional_noquilt_intel' [08:41, 04:44](1184 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 04:53](858 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 04:53](859 MB) +PASS -- TEST 'regional_wofs_intel' [09:38, 06:16](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [13:15, 12:43] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [25:05, 06:46](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:14, 04:01](1186 MB) +PASS -- TEST 'rap_decomp_intel' [24:05, 06:59](1009 MB) +PASS -- TEST 'rap_2threads_intel' [23:10, 06:09](1096 MB) +PASS -- TEST 'rap_restart_intel' [06:56, 03:29](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [24:09, 06:45](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 07:08](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:51](880 MB) +PASS -- TEST 'hrrr_control_intel' [21:04, 03:55](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:58](1005 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:04](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:07](835 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 08:06](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:45](1953 MB) + +PASS -- COMPILE 'csawmg_intel' [13:12, 12:11] +PASS -- TEST 'control_csawmg_intel' [07:36, 06:37](964 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:19](657 MB) + +PASS -- COMPILE 'wam_intel' [12:12, 11:50] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:57, 11:35](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 21:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:03, 03:08](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [05:33, 04:34](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:51](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:48](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:08](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:34, 04:30](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:53](805 MB) +PASS -- TEST 'control_diag_debug_intel' [03:41, 02:58](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:35, 03:09](1893 MB) +PASS -- TEST 'regional_debug_intel' [18:05, 16:14](901 MB) +PASS -- TEST 'rap_control_debug_intel' [05:31, 05:03](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:57](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:57](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:10, 05:17](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:05, 05:07](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:15](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:21](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:08, 05:04](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:07](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:54, 05:03](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:55](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:38, 04:59](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 07:53](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:55](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 05:51](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:08](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:56, 08:34](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:12, 08:22] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:05, 13:26](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:51](1048 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:54, 05:54](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 03:25](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 05:16](939 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:58](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:43](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:22](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 01:43](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 16:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:42](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:55, 01:21](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:36](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:20](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 05:29](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:28](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:12, 14:09](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:28](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1126 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:05](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 08:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:57](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [15:17, 14:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:25](702 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:35, 04:32](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 07:38](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:48](783 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:34, 12:49](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:19](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:50, 06:45](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:08, 02:55](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:07](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:17, 03:51](509 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:27, 03:33](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:05, 04:45](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 01:42](400 MB) +PASS -- TEST 'gnv1_nested_intel' [09:00, 05:48](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:14, 09:26] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:40, 12:59](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:15, 21:29] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:45](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:49](787 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:15, 06:08](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:26] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:19](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:11, 06:18](726 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:19, 20:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 13:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:25](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:29](643 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:32](642 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:43](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:29](640 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 06:05](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:02, 06:12](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:39](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:40](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:24] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:27](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 11:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:38](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 02:36] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:01, 01:56](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:37](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:47, 01:02](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:14, 12:56] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:33, 04:06](1926 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:14, 12:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:51, 04:08](1913 MB) + +PASS -- COMPILE 'atml_intel' [14:14, 13:31] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 08:28](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 08:12](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 03:41](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:13, 09:04] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:10](1931 MB) + +PASS -- COMPILE 'atmw_intel' [14:12, 13:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 02:18](1899 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:15] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:26, 06:56](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:37](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 06:37](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:12, 08:01] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 18:12](4487 MB) SYNOPSIS: -Starting Date/Time: 20240722 18:29:44 -Ending Date/Time: 20240722 20:48:48 -Total Time: 02h:20m:27s +Starting Date/Time: 20240724 21:15:42 +Ending Date/Time: 20240724 23:27:23 +Total Time: 02h:12m:55s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 3e1f1d26cd..354808eb20 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,384 +24,388 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2238840 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:16, 06:05](3277 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:12, 16:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:03, 17:32](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:13, 18:08](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:08, 08:23](1228 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:59, 19:26](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:22] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:39, 17:11](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:16] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:58, 23:25](1891 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:10, 05:54](3310 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:18, 06:21](3318 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:26, 03:31](3241 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:11, 06:02](3347 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:26, 03:34](3251 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:11, 05:37](3598 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:09, 06:00](3313 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:04, 05:00](3188 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:17, 05:55](3322 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:03, 10:19](3487 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:47, 06:41](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:26, 10:10](4260 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:10, 06:29](4362 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:09, 05:26](3296 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 12:52] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:58, 05:04](1961 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:05, 04:26](2038 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:19] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:03, 08:39](3333 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:56] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 06:02](1976 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 12:03] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:01, 04:25](2040 MB) - -PASS -- COMPILE 's2s_intel' [12:12, 12:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 09:04](3089 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:45](3062 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2499 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:15, 17:18] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:17, 05:36](3328 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:14, 16:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:02, 17:29](1987 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:22](1270 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:08, 19:56](1895 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:14, 05:06] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:54, 24:58](1919 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:24, 03:21](687 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 02:54](1575 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:44, 02:58](1583 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 02:55](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 02:59](1578 MB) -PASS -- TEST 'control_c48_intel' [08:45, 07:32](1734 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 06:26](840 MB) -PASS -- TEST 'control_c192_intel' [12:02, 10:34](1729 MB) -PASS -- TEST 'control_c384_intel' [14:04, 10:35](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [11:59, 08:00](1379 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:41](631 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:06](489 MB) -PASS -- TEST 'control_lndp_intel' [03:23, 01:36](636 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](636 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:26](632 MB) -PASS -- TEST 'control_p8_intel' [04:55, 03:08](1872 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:11](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:52, 03:00](1874 MB) -PASS -- TEST 'control_restart_p8_intel' [02:49, 01:47](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:51, 03:04](1863 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:52, 01:44](1136 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:10](1869 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:57](1979 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:26](1877 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:50, 04:06](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:55, 03:06](1891 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:25](1880 MB) -PASS -- TEST 'regional_control_intel' [06:37, 05:20](1082 MB) -PASS -- TEST 'regional_restart_intel' [04:38, 02:55](1078 MB) -PASS -- TEST 'regional_decomp_intel' [06:36, 05:41](1075 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:29](1074 MB) -PASS -- TEST 'regional_noquilt_intel' [06:39, 05:16](1378 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:41, 05:20](1082 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:35, 05:20](1082 MB) -PASS -- TEST 'regional_wofs_intel' [07:35, 06:52](1896 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 11:07] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:45](1093 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:07, 04:16](1286 MB) -PASS -- TEST 'rap_decomp_intel' [08:38, 08:07](1014 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:19](1164 MB) -PASS -- TEST 'rap_restart_intel' [04:48, 04:04](1088 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:42, 07:45](1088 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:39, 08:09](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:53](1117 MB) -PASS -- TEST 'hrrr_control_intel' [04:42, 04:00](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:38, 04:10](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:34, 03:39](1095 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:12](953 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:35](1080 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:14](1973 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 09:08](2044 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:53] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:10](1006 MB) -PASS -- TEST 'control_ras_intel' [04:22, 03:16](732 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:13] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:41] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:47, 11:00](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:50, 02:49](1890 MB) -PASS -- TEST 'regional_control_faster_intel' [05:40, 04:52](1078 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 06:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:56, 02:43](1594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:56, 02:35](1594 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:28, 03:04](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:52](788 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:50, 04:23](1117 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 03:00](803 MB) -PASS -- TEST 'control_diag_debug_intel' [07:00, 02:48](1649 MB) -PASS -- TEST 'control_debug_p8_intel' [06:52, 03:04](1885 MB) -PASS -- TEST 'regional_debug_intel' [18:48, 17:52](1077 MB) -PASS -- TEST 'rap_control_debug_intel' [06:29, 05:07](1181 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:32, 04:54](1179 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 05:05](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:32, 05:05](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:29, 05:08](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:46, 05:21](1267 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:29, 05:19](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:27, 05:13](1183 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:25, 05:08](1178 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 05:04](1183 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 04:59](1190 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 08:07](1186 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:01](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 06:13](1183 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:05](1180 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:44, 08:54](1189 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] -PASS -- TEST 'control_csawmg_debug_gnu' [03:39, 02:20](705 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:10] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:49, 13:44](1656 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:54](1143 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:35](1018 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:40, 03:25](980 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1050 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:12](941 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:34, 03:37](927 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:40, 04:52](1024 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:52](906 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:12, 14:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:59, 02:06](1186 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:44, 00:55](1104 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:17](1089 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:10](971 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:36] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 05:11](1056 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:24, 04:55](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [15:56, 14:52](1214 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 15:11](903 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1117 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:33](1259 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:25, 05:13](1100 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:35] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 05:08](720 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:35, 05:47](1101 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 06:54](811 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:17, 13:33](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:44, 15:20](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:00, 05:33](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:28, 06:49](505 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:47, 02:44](362 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:08, 07:18](469 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:43](519 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:49, 03:33](520 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:54, 04:10](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:29, 01:17](387 MB) -PASS -- TEST 'gnv1_nested_intel' [09:38, 04:08](1704 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:40] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:54, 13:02](553 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:12, 16:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:03, 08:43](652 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:07, 08:54](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:07, 06:27](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:19, 06:30](813 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:15, 06:35](792 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 15:54](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:52] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:44](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:39](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:34](1010 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:37](1011 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:38](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 02:39](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:40](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:35](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:24, 06:16](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:24, 06:19](1051 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:44](1132 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:52](2488 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:55](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:17](1054 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:30] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:19, 02:39](1153 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:13, 01:07] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:31, 00:48](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:50](312 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](310 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:40](1966 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:57] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:14, 03:37](1939 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:28] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:06, 04:24](1837 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:30](1851 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:49, 02:27](1074 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 05:09] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:01, 05:48](1866 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 11:39] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:50, 01:55](1902 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:22] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:11](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:15, 04:55](3080 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:47, 05:18](3083 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:54] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:09, 21:26](4438 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:45] -PASS -- TEST 'control_c48_gnu' [12:43, 11:16](1523 MB) -PASS -- TEST 'control_stochy_gnu' [04:31, 03:28](491 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 04:45](496 MB) -PASS -- TEST 'control_p8_gnu' [06:01, 04:46](1449 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:41](1437 MB) -PASS -- TEST 'control_flake_gnu' [11:26, 10:23](531 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:14] -PASS -- TEST 'rap_control_gnu' [11:35, 10:53](840 MB) -PASS -- TEST 'rap_decomp_gnu' [12:36, 11:08](842 MB) -PASS -- TEST 'rap_2threads_gnu' [10:40, 09:49](918 MB) -PASS -- TEST 'rap_restart_gnu' [07:57, 05:37](566 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:44, 10:50](803 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:34, 11:02](837 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:41, 08:12](567 MB) -PASS -- TEST 'hrrr_control_gnu' [06:42, 05:37](804 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:37, 05:37](794 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:37, 05:04](913 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:37, 05:37](835 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [08:33, 02:55](550 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [07:33, 02:55](644 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:35](801 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:36] -PASS -- TEST 'control_diag_debug_gnu' [02:50, 01:40](1254 MB) -PASS -- TEST 'regional_debug_gnu' [11:42, 10:17](723 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:25, 02:42](801 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:35](804 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:42](807 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:28, 02:39](805 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:45, 02:50](892 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:12](803 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:39](805 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:24, 02:39](801 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:33](440 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:23, 01:47](429 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:43, 01:48](1421 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:25, 02:45](811 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:02](811 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:39, 04:24](819 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:35, 09:26](696 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:58](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:43, 08:38](751 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [11:36, 04:37](731 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:29, 05:06](697 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:40, 07:07](542 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:27, 02:33](525 MB) -PASS -- TEST 'conus13km_control_gnu' [09:03, 03:16](868 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:49, 06:25](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:49, 01:49](540 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 10:59] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](719 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:47] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [07:25, 02:36](700 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [07:25, 02:34](699 MB) -PASS -- TEST 'conus13km_debug_gnu' [11:55, 07:00](863 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [11:48, 07:10](565 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [12:44, 07:25](864 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [11:45, 07:09](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [06:25, 02:39](718 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:49] - -PASS -- COMPILE 's2s_gnu' [16:11, 15:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:08, 07:16](1533 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:26] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:57, 20:29](1438 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:10] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:54, 12:53](1446 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:46] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:03](682 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:55] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3300 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:43] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:25](1969 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 18:21](2133 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 08:25](1243 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:15, 19:34](1858 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:27] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:45, 17:03](1953 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:11] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:11, 22:44](1902 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 13:54] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:16](3313 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:14](3315 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:35, 03:40](3235 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:16, 06:05](3326 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:37, 03:38](3249 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:10, 05:35](3609 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:10, 05:56](3315 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:14, 04:49](3193 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 06:00](3327 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:20, 10:36](3572 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:25, 06:39](3606 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [19:16, 10:08](4276 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:14, 06:29](4350 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:15, 05:30](3301 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 13:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:53](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:38](2032 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:11] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:48](3330 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:01, 05:52](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:23](2028 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 12:23] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:52, 09:07](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:41](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:33](2492 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 05:42](3323 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:23] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 17:50](2000 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:35, 08:40](1255 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 19:56](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:53] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 25:09](1921 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:05] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:29, 03:25](686 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 02:53](1578 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:07](1588 MB) +PASS -- TEST 'control_latlon_intel' [05:51, 02:54](1586 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:57](1581 MB) +PASS -- TEST 'control_c48_intel' [08:56, 07:28](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](852 MB) +PASS -- TEST 'control_c192_intel' [14:30, 10:41](1718 MB) +PASS -- TEST 'control_c384_intel' [14:43, 10:38](1993 MB) +PASS -- TEST 'control_c384gdas_intel' [13:57, 08:10](1377 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 01:39](634 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:59](486 MB) +PASS -- TEST 'control_lndp_intel' [03:27, 01:35](639 MB) +PASS -- TEST 'control_iovr4_intel' [04:31, 02:28](634 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:29](637 MB) +PASS -- TEST 'control_p8_intel' [06:15, 03:07](1871 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:09](1875 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 03:10](1881 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:47](1117 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:03](1868 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1141 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:10](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:56](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:30](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:56, 04:07](1926 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:02, 03:07](1880 MB) +PASS -- TEST 'merra2_thompson_intel' [04:57, 03:27](1889 MB) +PASS -- TEST 'regional_control_intel' [06:39, 05:24](1082 MB) +PASS -- TEST 'regional_restart_intel' [03:52, 02:58](1083 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:42](1066 MB) +PASS -- TEST 'regional_2threads_intel' [04:40, 03:29](1072 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:16](1377 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:20](1090 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:23](1082 MB) +PASS -- TEST 'regional_wofs_intel' [07:40, 06:52](1898 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:44, 07:45](1086 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:20, 04:15](1285 MB) +PASS -- TEST 'rap_decomp_intel' [09:43, 08:08](1022 MB) +PASS -- TEST 'rap_2threads_intel' [08:40, 07:18](1168 MB) +PASS -- TEST 'rap_restart_intel' [05:46, 04:06](1086 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1087 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:41, 08:08](1019 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:56](1112 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 04:08](1014 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:42](1093 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:36, 02:10](981 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:37](1064 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:28](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2049 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 10:57] +PASS -- TEST 'control_csawmg_intel' [07:41, 06:10](1007 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:18](731 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:33] +PASS -- TEST 'control_csawmg_gnu' [09:41, 08:23](746 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:33] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:01, 11:10](1642 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:59] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:03, 02:51](1874 MB) +PASS -- TEST 'regional_control_faster_intel' [05:49, 04:52](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:21] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:39](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:46](1589 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:13](788 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:49](792 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:23](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:54](803 MB) +PASS -- TEST 'control_diag_debug_intel' [03:51, 02:50](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 03:09](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:45](1075 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:04](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1175 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:09](1179 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:21](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:13](1182 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:05](1181 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1187 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:08](1181 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:00](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:09](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1182 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:04](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:58](1181 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:46, 08:53](1195 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:55] +PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:22](712 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:12, 03:50] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:56, 13:57](1668 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:00](1153 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:28](1024 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](976 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:06](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:10](947 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:36](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:54](1018 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:57](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 14:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1198 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:52, 00:59](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1095 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:42] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](970 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:59](1055 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:55](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [15:54, 14:52](1188 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:47](919 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:26](1121 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:40](1257 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:45] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:09](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [13:15, 12:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:22, 05:20](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:26](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 07:07](812 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 13:41](844 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 15:25](867 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:33](490 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:30, 07:03](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:47, 02:41](361 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 07:28](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:53, 03:37](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:15](569 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:14](385 MB) +PASS -- TEST 'gnv1_nested_intel' [06:35, 04:07](1724 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:43] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:15](549 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:12, 16:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:48](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 08:51](721 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:36](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:37] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:24, 06:36](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:34](798 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:18](1201 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:49](1145 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1099 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:41](1015 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:51](1001 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:20, 02:38](1011 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:40](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:43](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:58](1006 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:40, 06:10](1058 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:13](1035 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:46](1142 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:59](2503 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 04:27](2493 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:44] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1054 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:42] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:41](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:06] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:47](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:51](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:34](318 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:25] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 03:47](1981 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:24] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:12, 03:38](1948 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:21](1845 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:31](1846 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](1086 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 05:00] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:51](1855 MB) + +PASS -- COMPILE 'atmw_intel' [12:13, 12:00] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:51](1922 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:11](3177 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:59](3077 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 05:21](3078 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:13, 04:02] ( 884 warnings 6 remarks ) +FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:52] +PASS -- TEST 'control_c48_gnu' [12:44, 11:15](1519 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 03:19](481 MB) +PASS -- TEST 'control_ras_gnu' [06:25, 04:47](485 MB) +PASS -- TEST 'control_p8_gnu' [06:58, 04:47](1444 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:42](1455 MB) +PASS -- TEST 'control_flake_gnu' [11:27, 10:29](525 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] +PASS -- TEST 'rap_control_gnu' [11:33, 10:49](838 MB) +PASS -- TEST 'rap_decomp_gnu' [12:37, 11:05](834 MB) +PASS -- TEST 'rap_2threads_gnu' [10:46, 09:56](917 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:31](563 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 10:50](801 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 11:03](826 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](570 MB) +PASS -- TEST 'hrrr_control_gnu' [06:47, 05:39](797 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:39, 05:38](784 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:12](909 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:40, 05:38](833 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:58](545 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:37, 02:51](639 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:48](795 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:55] +PASS -- TEST 'control_diag_debug_gnu' [03:00, 01:39](1251 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:42](719 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](799 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:34](800 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:24, 02:40](805 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:42](800 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:47, 02:54](886 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:09](800 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:41](797 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:37](796 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:26, 01:39](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:25, 01:46](426 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:55](1430 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:42](807 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:57](801 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:25](814 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:45] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:20] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:22](692 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](691 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 08:38](744 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:32](738 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](688 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:55](540 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:42](520 MB) +PASS -- TEST 'conus13km_control_gnu' [05:11, 03:16](859 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:52, 05:49](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:51](542 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:48, 05:44](714 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:48] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:30, 02:37](692 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:38](690 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:01, 07:07](873 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:17](560 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 08:00](875 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 07:01](929 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:48] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:37](718 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:48] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:25] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 07:31](1525 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:03, 19:20](1439 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:12] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:05](1436 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 15:37] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:06](681 MB) SYNOPSIS: -Starting Date/Time: 20240723 00:42:52 -Ending Date/Time: 20240723 02:20:57 -Total Time: 01h:39m:21s +Starting Date/Time: 20240724 21:18:58 +Ending Date/Time: 20240724 23:09:38 +Total Time: 01h:51m:29s Compiles Completed: 57/57 -Tests Completed: 245/245 +Tests Completed: 244/245 +Failed Tests: +* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900/regional_atmaq_debug_intel/err NOTES: -A file 'test_changes.list' was generated but is empty. +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. If you are using this log as a pull request verification, please commit 'test_changes.list'. -Result: SUCCESS +Result: FAILURE ====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 8a915a55f8..388c0dc873 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: -ec399e628231e03101314fdb378214c340cf96cc +17a524e83223725150b6c1bec3ac9e55ac6876a8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,444 +35,378 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1318349 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_859761 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:11, 10:40] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:12, 08:10](2139 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:17, 13:28](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:37, 13:56](2288 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 06:29](1303 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:59, 14:51](1924 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:35, 12:57](2003 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:11] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:19, 20:32](1977 MB) - -PASS -- COMPILE 's2swa_intel' [11:11, 10:46] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:03, 08:07](2194 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:15, 07:56](2190 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:17, 04:17](1994 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:00, 08:04](2208 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:19, 04:23](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:59, 09:09](2550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:59, 08:30](2185 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:10, 06:24](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:20, 08:21](2194 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:05, 16:03](2982 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:44, 05:47](2934 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:38, 09:44](3807 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:07, 05:50](3640 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:07, 05:20](2159 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 11:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:53, 07:05](2036 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:09, 04:31](2082 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:09, 07:22](2220 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:10, 05:00] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:10, 05:10](2068 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:05, 04:01](2077 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:45, 07:01](3108 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:08](3079 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:13](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 18:06] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 07:42](2200 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:01, 13:51](2046 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:15, 06:45](1377 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:04, 15:26](1964 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:47] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:33](2026 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:19, 02:54](718 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:36, 02:22](1610 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:38, 02:32](1620 MB) -PASS -- TEST 'control_latlon_intel' [03:29, 02:26](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:35, 02:26](1604 MB) -PASS -- TEST 'control_c48_intel' [07:36, 06:50](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:28, 05:48](846 MB) -PASS -- TEST 'control_c192_intel' [09:48, 08:56](1760 MB) -PASS -- TEST 'control_c384_intel' [10:29, 08:57](2040 MB) -PASS -- TEST 'control_c384gdas_intel' [09:15, 06:56](1525 MB) -PASS -- TEST 'control_stochy_intel' [02:19, 01:23](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:36, 00:50](534 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:21](667 MB) -PASS -- TEST 'control_iovr4_intel' [02:19, 02:03](666 MB) -PASS -- TEST 'control_iovr5_intel' [02:21, 02:06](666 MB) -PASS -- TEST 'control_p8_intel' [03:58, 02:36](1898 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:58, 02:35](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:00, 02:43](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:30](1161 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:47, 02:35](1890 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:02, 01:31](1180 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:48, 02:39](1901 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:44, 02:25](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:27](1913 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 03:31](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:55, 02:38](1902 MB) -PASS -- TEST 'merra2_thompson_intel' [04:04, 02:53](1919 MB) -PASS -- TEST 'regional_control_intel' [05:34, 04:40](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:33, 02:38](1179 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 04:56](1199 MB) -PASS -- TEST 'regional_2threads_intel' [03:29, 03:03](1164 MB) -PASS -- TEST 'regional_noquilt_intel' [05:37, 04:31](1526 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:34, 04:41](1197 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:33, 04:45](1195 MB) -PASS -- TEST 'regional_wofs_intel' [06:31, 05:37](2089 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 08:04] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:45, 06:40](1225 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:53, 03:26](1408 MB) -PASS -- TEST 'rap_decomp_intel' [07:45, 06:56](1160 MB) -PASS -- TEST 'rap_2threads_intel' [07:45, 06:10](1376 MB) -PASS -- TEST 'rap_restart_intel' [05:09, 03:29](1160 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:45, 06:39](1213 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:45, 06:53](1162 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 05:00](1199 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 03:25](1070 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:46, 03:31](1048 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:45, 03:10](1119 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:32, 01:51](1023 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:02, 06:27](1215 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:24, 07:34](2015 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:25](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [08:16, 07:16] -PASS -- TEST 'control_csawmg_intel' [06:36, 05:27](1048 MB) -PASS -- TEST 'control_ras_intel' [03:19, 02:49](856 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] -PASS -- TEST 'control_csawmg_gnu' [07:43, 06:48](1071 MB) - -PASS -- COMPILE 'wam_intel' [08:16, 07:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:42, 10:18](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 13:48] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:55, 02:20](1906 MB) -PASS -- TEST 'regional_control_faster_intel' [05:31, 04:16](1202 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 08:20](2131 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 21:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:01, 13:17](2000 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:18, 13:57](2324 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:31](1314 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:45, 15:02](1921 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:27, 13:03](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:32](1979 MB) + +PASS -- COMPILE 's2swa_intel' [12:10, 11:19] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:57, 07:41](2190 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:01, 07:47](2183 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:13, 04:20](1960 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:57, 07:51](2204 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 05:19](1749 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:08](2551 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 08:19](2172 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 07:20](2098 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 08:30](2195 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:36, 14:53](2996 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:09, 06:53](2932 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 10:48](3809 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:24, 06:41](3651 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 05:54](2152 MB) + +PASS -- COMPILE 's2sw_intel' [13:10, 12:50] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:22](2021 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:34](2081 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:57] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:00, 07:10](2216 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:18] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:51, 04:49](2059 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:27] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:08](2091 MB) + +PASS -- COMPILE 's2s_intel' [10:10, 09:12] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:34, 07:01](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:37, 02:06](3076 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:35, 01:19](2518 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:24] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:57, 08:15](2194 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:44] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:47, 14:21](2046 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:53, 07:22](1391 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 16:21](1971 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:19] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:53, 23:05](2022 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:19, 02:55](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:26](1611 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:32](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:27, 02:28](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:30](1614 MB) +PASS -- TEST 'control_c48_intel' [07:36, 07:00](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:49](845 MB) +PASS -- TEST 'control_c192_intel' [09:41, 09:04](1772 MB) +PASS -- TEST 'control_c384_intel' [11:22, 09:38](2044 MB) +PASS -- TEST 'control_c384gdas_intel' [09:43, 07:19](1527 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:27](667 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](549 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:21](677 MB) +PASS -- TEST 'control_iovr4_intel' [02:26, 02:05](674 MB) +PASS -- TEST 'control_iovr5_intel' [03:19, 02:39](670 MB) +PASS -- TEST 'control_p8_intel' [04:48, 03:23](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 03:08](1912 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 03:23](1900 MB) +PASS -- TEST 'control_restart_p8_intel' [04:46, 02:18](1156 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:40, 03:23](1901 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:43, 02:29](1201 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:44](1885 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:35, 02:29](1997 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:28, 04:33](1907 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 03:34](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:46, 02:38](1908 MB) +PASS -- TEST 'merra2_thompson_intel' [03:52, 02:58](1916 MB) +PASS -- TEST 'regional_control_intel' [05:26, 04:44](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 03:10](1176 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 04:56](1187 MB) +PASS -- TEST 'regional_2threads_intel' [03:29, 03:07](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [05:31, 04:30](1516 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:42](1201 MB) +PASS -- TEST 'regional_wofs_intel' [07:24, 05:43](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:49, 06:44](1199 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:46](1412 MB) +PASS -- TEST 'rap_decomp_intel' [07:43, 06:58](1130 MB) +PASS -- TEST 'rap_2threads_intel' [07:43, 06:13](1372 MB) +PASS -- TEST 'rap_restart_intel' [04:59, 03:31](1141 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:48, 06:41](1223 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:52, 07:01](1157 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:04](1186 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 03:28](1072 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 03:33](1050 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 03:16](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:54](1020 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:34](1200 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:12](2013 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 07:45](2180 MB) + +PASS -- COMPILE 'csawmg_intel' [08:10, 07:51] +PASS -- TEST 'control_csawmg_intel' [08:29, 06:04](1046 MB) +PASS -- TEST 'control_ras_intel' [05:17, 02:52](839 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:10, 04:09] +PASS -- TEST 'control_csawmg_gnu' [08:38, 07:30](1071 MB) + +PASS -- COMPILE 'wam_intel' [07:10, 07:06] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:33, 09:46](1681 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 14:49] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:45, 03:45](1905 MB) +PASS -- TEST 'regional_control_faster_intel' [07:25, 05:20](1203 MB) PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:18](1628 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:36, 02:15](1640 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:36](843 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:22, 02:20](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:30, 04:31](1166 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:18](850 MB) -PASS -- TEST 'control_diag_debug_intel' [03:38, 02:15](1692 MB) -PASS -- TEST 'control_debug_p8_intel' [04:38, 03:15](1924 MB) -PASS -- TEST 'regional_debug_intel' [15:31, 14:58](1158 MB) -PASS -- TEST 'rap_control_debug_intel' [04:20, 04:04](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:22, 04:02](1223 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:22, 04:02](1235 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:04](1233 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 03:59](1231 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:32, 04:10](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:19, 04:03](1240 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 04:11](1233 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:19, 04:03](1234 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:20, 04:01](1229 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:20, 04:05](1231 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:20, 04:04](1236 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:25, 06:39](1220 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 03:58](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:21, 04:53](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:20, 04:03](1233 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:59, 07:04](1235 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:15, 04:41] -PASS -- TEST 'control_csawmg_debug_gnu' [03:38, 02:15](1056 MB) - -PASS -- COMPILE 'wam_debug_intel' [03:10, 02:54] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 07:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:52, 03:14](1278 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:44, 05:24](1133 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:02, 02:52](1021 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:48, 05:09](1271 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:41, 02:37](1033 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:42, 03:07](995 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:46, 04:01](1098 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:25, 01:35](956 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:19] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:48, 01:42](1301 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:40, 00:43](1218 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:37, 01:05](1168 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:36, 03:49](1098 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [03:10, 03:02] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:09](1108 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:04](1115 MB) -PASS -- TEST 'conus13km_debug_intel' [13:42, 12:14](1366 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:38, 12:18](1019 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:36, 07:16](1253 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:37, 12:12](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:55] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:27, 04:10](1164 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 09:32] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:07, 05:24](878 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 05:09](1276 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:18, 06:23](950 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:03, 14:03](985 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 15:07](1006 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:00, 05:24](611 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:25, 06:50](627 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:52, 02:32](438 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:22](540 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:38](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:58, 04:48](678 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:28, 01:04](453 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:21] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:51, 11:23](647 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 15:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:58, 16:18](731 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:06, 16:47](815 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:11, 09:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 09:59](823 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:10, 09:58] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:15, 05:22](951 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:09, 05:30](933 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:52, 16:23](1338 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 06:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:12](1137 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:19](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:16, 02:04](1012 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:16, 02:11](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:10](1015 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:16, 02:07](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 02:09](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:16, 02:04](1018 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:04, 04:55](1153 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:59, 04:52](1155 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:11](1161 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:06](2442 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:17, 03:10](2433 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 02:48] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:17, 05:10](1075 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:39] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:13](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:46] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 00:50](338 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:27, 00:48](584 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:30](585 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:14, 08:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:00, 03:18](2027 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 07:20] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:57, 03:05](1993 MB) - -PASS -- COMPILE 'atml_intel' [09:12, 08:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:10, 05:40](1897 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:05, 05:41](1906 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:55, 02:59](1149 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:21] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:04, 05:14](1936 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:54, 01:37](1951 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 08:02] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:47, 03:44](2030 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:51, 04:14](1814 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:49, 04:19](1814 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:11, 03:07] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:40, 16:35](4597 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 05:45] -PASS -- TEST 'control_c48_gnu' [10:38, 09:23](1572 MB) -PASS -- TEST 'control_stochy_gnu' [03:22, 02:20](729 MB) -PASS -- TEST 'control_ras_gnu' [04:18, 03:46](734 MB) -PASS -- TEST 'control_p8_gnu' [04:54, 03:50](1712 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:44, 03:43](1718 MB) -PASS -- TEST 'control_flake_gnu' [05:21, 04:27](807 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 05:21] -PASS -- TEST 'rap_control_gnu' [08:42, 07:41](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [08:42, 07:58](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [08:41, 07:10](1127 MB) -PASS -- TEST 'rap_restart_gnu' [04:58, 03:56](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:54, 07:39](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:37, 07:54](1088 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:00, 05:43](884 MB) -PASS -- TEST 'hrrr_control_gnu' [04:42, 04:00](1075 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [04:41, 04:02](1137 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:37, 03:35](1043 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [04:42, 03:55](1072 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [02:24, 02:06](881 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:24, 02:00](933 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:59, 07:36](1081 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:15, 09:52] -PASS -- TEST 'control_diag_debug_gnu' [02:38, 01:16](1632 MB) -PASS -- TEST 'regional_debug_gnu' [07:30, 06:42](1120 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:19, 02:02](1103 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:25, 01:54](1096 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:22, 01:55](1103 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:02](1103 MB) -PASS -- TEST 'rap_diag_debug_gnu' [02:29, 02:03](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:22, 03:04](1106 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:00](1109 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:19, 01:54](1100 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:25](731 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:21](728 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:32, 01:23](1755 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:21, 01:56](1106 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 02:14](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:56, 03:23](1110 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:37] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_gnu' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:30] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:35, 07:15](964 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:04, 03:57](950 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:50, 06:41](972 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:43, 03:31](892 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:39, 03:56](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:01, 05:25](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 01:57](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:45, 02:39](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [01:42, 01:03](1177 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:41, 01:26](931 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:12, 12:00] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:35, 04:24](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 09:24] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:21, 01:58](976 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:21, 01:54](969 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:41, 05:38](1284 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:38, 05:40](962 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:31, 03:23](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:33, 05:38](1352 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 07:02] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:22, 02:09](1008 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:41] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:39] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:05, 04:49](3126 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:55] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:18, 25:50](3035 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:11, 05:07] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:53, 11:55](3067 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:11, 16:03] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:16](764 MB) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:17](1648 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:24](1635 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:38](840 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:21](840 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:23, 04:24](1160 MB) +PASS -- TEST 'control_ras_debug_intel' [03:17, 02:22](839 MB) +PASS -- TEST 'control_diag_debug_intel' [03:29, 02:28](1701 MB) +PASS -- TEST 'control_debug_p8_intel' [04:28, 03:13](1936 MB) +PASS -- TEST 'regional_debug_intel' [17:24, 15:50](1150 MB) +PASS -- TEST 'rap_control_debug_intel' [05:19, 04:33](1231 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:14](1225 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:20](1239 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 04:29](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:28](1229 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:24](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:16](1234 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:25](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:26](1243 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:13](1230 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:04](1235 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:19](1227 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:46](1232 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:12](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:11](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:20](1226 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:31](1232 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:55] +PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 02:55](1055 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 03:18] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 07:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1275 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 06:19](1171 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:56, 02:53](1042 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:46, 06:05](1289 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:39](1043 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](1001 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:49, 04:49](1116 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:37](947 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1299 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:44](1214 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:05](1151 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1084 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:18] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:35](1111 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:27](1116 MB) +PASS -- TEST 'conus13km_debug_intel' [12:31, 11:55](1353 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:14](1015 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 07:17](1257 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 12:14](1423 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:53] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 04:20](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:21](861 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:37](1278 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 07:05](943 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:22](987 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:10, 15:18](1002 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 06:05](603 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 08:23](628 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:17](444 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 08:54](557 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 04:22](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:37, 04:10](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:57](671 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:31](460 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:51] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:42, 11:52](656 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:42] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 15:24](752 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:03](850 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 10:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:55, 09:42](919 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:05, 05:43](947 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:03, 05:44](910 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:27](1344 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:10] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:09](1138 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1105 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:05](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:08](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:11](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1167 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:13](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1169 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1160 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1148 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 03:00](2462 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2457 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:07] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:09](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:11](1161 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:48] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:51](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:46](559 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:32](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:45, 03:40](2025 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 07:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:52, 03:09](1996 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 08:54] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 05:51](1899 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 05:47](1907 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 03:04](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:31] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:49, 05:47](1925 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:49, 01:39](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:46](2034 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:15](1815 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:28](1821 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:21] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 17:11](4607 MB) + +PASS -- COMPILE 'atm_gnu' [07:10, 05:32] +PASS -- TEST 'control_c48_gnu' [10:32, 09:26](1570 MB) +PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](731 MB) +PASS -- TEST 'control_ras_gnu' [04:17, 03:52](733 MB) +PASS -- TEST 'control_p8_gnu' [04:43, 03:55](1734 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:46](1758 MB) +PASS -- TEST 'control_flake_gnu' [05:19, 04:38](809 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:36] +PASS -- TEST 'rap_control_gnu' [09:31, 08:10](1101 MB) +PASS -- TEST 'rap_decomp_gnu' [09:30, 08:10](1086 MB) +PASS -- TEST 'rap_2threads_gnu' [08:49, 07:13](1124 MB) +PASS -- TEST 'rap_restart_gnu' [05:54, 04:17](888 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:35](1085 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 08:28](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:43, 06:14](885 MB) +PASS -- TEST 'hrrr_control_gnu' [05:34, 04:13](1071 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:12](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:43, 03:46](1046 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:13](1071 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:17](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:17, 02:12](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 08:08](1079 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:36] +PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:18](1625 MB) +PASS -- TEST 'regional_debug_gnu' [07:26, 07:03](1118 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:17, 02:05](1102 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:07](1092 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:05](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:23](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:24](1100 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:04](1101 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:04](1100 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:13](730 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:23](727 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:28](1707 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:09](1101 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:26](1108 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:31](1102 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:15] +PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:25](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:34] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:26](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:44, 04:01](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:52](995 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:32](898 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 04:02](952 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:52, 05:47](860 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:19, 02:08](856 MB) +PASS -- TEST 'conus13km_control_gnu' [03:37, 02:37](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:11](1178 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:28, 01:27](933 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:10, 12:11] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:42](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 06:56] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:13](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:10](976 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:29, 06:03](1287 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 06:11](961 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:43](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:30, 05:47](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:53] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:06](1005 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:32] + +PASS -- COMPILE 's2s_gnu' [15:11, 14:42] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:00, 04:57](3081 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:55] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 16:36] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:48, 25:54](3056 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 06:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:44, 12:14](2914 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 15:42] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:17](768 MB) SYNOPSIS: -Starting Date/Time: 20240722 22:35:45 -Ending Date/Time: 20240723 00:04:32 -Total Time: 01h:29m:44s +Starting Date/Time: 20240725 12:51:06 +Ending Date/Time: 20240725 14:24:28 +Total Time: 01h:33m:55s Compiles Completed: 57/57 -Tests Completed: 243/244 -Failed Tests: -* TEST control_wam_debug_gnu: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work/noaa/nems/zshrader/hercules/rt-2354/tests/logs/log_hercules/run_control_wam_debug_gnu.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERCULES REGRESSION TESTING LOG==== -====START OF HERCULES REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3970037 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:54] -PASS -- TEST 'control_wam_debug_gnu' [06:27, 05:17](1569 MB) - -SYNOPSIS: -Starting Date/Time: 20240723 05:32:03 -Ending Date/Time: 20240723 05:42:56 -Total Time: 00h:10m:54s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 244/244 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index dd22fbd906..fe95ec28af 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,254 +35,254 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1587621 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_647373 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:15, 40:03] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:46, 07:34](2007 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:17, 48:44] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:59, 21:35](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:23, 23:36](2010 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:45, 11:05](1115 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:34, 24:37](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:17, 49:39] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:55, 21:07](1890 MB) - -PASS -- COMPILE 's2swa_intel' [41:15, 40:34] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:33, 08:04](2056 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:44, 07:58](2051 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:41, 05:17](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:33, 08:13](2062 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:54, 04:59](1738 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:42, 08:05](2319 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 08:06](2026 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:20, 06:55](2006 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:45, 07:57](2063 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:36, 07:25](2036 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:12] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:41, 06:37](1863 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:57, 06:29](1981 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:43] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:47, 11:07](2035 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:19] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:16, 07:49](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:15, 34:44] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:46, 06:14](1957 MB) - -PASS -- COMPILE 's2s_intel' [36:13, 35:04] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:27, 12:25](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:04, 03:55](3060 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:03, 02:28](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:20, 33:36] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:08, 07:56](2046 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:21, 48:39] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:41, 22:07](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:45, 11:11](1129 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:39, 25:02](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:21] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:51, 32:50](1898 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:15, 37:50] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 04:33](650 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:24, 03:55](1550 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:30, 04:05](1560 MB) -PASS -- TEST 'control_latlon_intel' [05:20, 03:55](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:30, 04:12](1559 MB) -PASS -- TEST 'control_c48_intel' [13:37, 11:48](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:54, 09:13](853 MB) -PASS -- TEST 'control_c192_intel' [16:44, 14:26](1685 MB) -PASS -- TEST 'control_c384_intel' [20:44, 17:57](1829 MB) -PASS -- TEST 'control_c384gdas_intel' [19:55, 13:24](1015 MB) -PASS -- TEST 'control_stochy_intel' [03:37, 02:19](606 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:31, 01:21](441 MB) -PASS -- TEST 'control_lndp_intel' [03:38, 02:14](603 MB) -PASS -- TEST 'control_iovr4_intel' [04:42, 03:27](599 MB) -PASS -- TEST 'control_iovr5_intel' [04:41, 03:27](603 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:30](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:56, 04:37](1852 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:05, 04:28](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [05:11, 02:58](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:49, 04:30](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:20, 03:03](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:49, 04:37](1837 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:49, 04:25](1940 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:27, 07:39](1855 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:26, 05:49](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:02, 04:37](1842 MB) -PASS -- TEST 'merra2_thompson_intel' [07:20, 04:57](1853 MB) -PASS -- TEST 'regional_control_intel' [09:18, 08:08](1016 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 04:28](1013 MB) -PASS -- TEST 'regional_decomp_intel' [10:19, 08:30](1017 MB) -PASS -- TEST 'regional_2threads_intel' [07:21, 05:32](1009 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:27, 08:13](1024 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:52, 07:55](1018 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:05] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:05, 10:10](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:27, 05:44](1217 MB) -PASS -- TEST 'rap_decomp_intel' [12:05, 10:53](984 MB) -PASS -- TEST 'rap_2threads_intel' [11:32, 09:40](1090 MB) -PASS -- TEST 'rap_restart_intel' [07:31, 05:18](995 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:13, 10:10](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 10:53](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:32, 07:54](992 MB) -PASS -- TEST 'hrrr_control_intel' [07:04, 05:25](990 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:06, 05:40](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 04:54](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:49](912 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:42, 09:58](991 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:36, 12:42](1929 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:36, 12:18](1927 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:25] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:51, 08:58](966 MB) -PASS -- TEST 'control_ras_intel' [05:30, 04:30](661 MB) - -PASS -- COMPILE 'wam_intel' [33:14, 32:37] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:04, 14:31](1619 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:17, 52:41] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:28, 04:28](1837 MB) -PASS -- TEST 'regional_control_faster_intel' [08:43, 07:35](1020 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:17] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:00, 03:34](1576 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 03:31](1573 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:33, 03:55](776 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:33](787 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:05, 05:58](1100 MB) -PASS -- TEST 'control_ras_debug_intel' [04:32, 03:37](783 MB) -PASS -- TEST 'control_diag_debug_intel' [05:03, 03:31](1636 MB) -PASS -- TEST 'control_debug_p8_intel' [06:06, 04:20](1875 MB) -PASS -- TEST 'regional_debug_intel' [23:59, 22:56](1046 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 06:27](1162 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:37, 06:16](1158 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 06:28](1162 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 06:25](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:35, 06:25](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:49, 06:48](1249 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 06:28](1162 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 06:29](1163 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:35, 06:24](1164 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 06:11](1163 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:08](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:10](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:10](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:28, 06:05](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:31, 07:34](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:32, 06:21](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:36, 10:44](1167 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:41] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:08, 16:50](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:14] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:44, 05:19](1086 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 08:26](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:18, 04:29](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:10, 07:58](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:18, 04:05](910 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:18, 04:43](862 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:07, 06:24](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 02:27](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:39] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:16, 03:04](1112 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:00, 01:23](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:39](1029 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 30:54] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 05:39](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:13, 04:45] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:13](1040 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 06:02](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [20:14, 18:37](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:12, 18:51](872 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:05, 10:51](1102 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:07, 18:42](1226 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 06:15](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [39:15, 38:11] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 07:07](710 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:34, 06:45](1083 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:03, 09:32](769 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:29, 16:35](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:17](819 MB) -PASS -- TEST 'gnv1_nested_intel' [11:08, 07:12](1671 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:15, 33:20] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:36, 08:49](777 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:38, 08:55](750 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:27] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:42](1060 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 02:16](1029 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:42](932 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:48](921 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:50](923 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:39](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:44](1046 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:28, 03:42](924 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:01, 08:02](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:49, 08:01](841 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:44](1064 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:29, 05:09](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 05:11](2355 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:36] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:29, 08:03](1007 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:09] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:26, 03:41](1068 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:44, 01:44](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:25](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 01:05](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:16, 33:50] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 05:32](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:32] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:35, 05:35](1896 MB) - -PASS -- COMPILE 'atml_intel' [38:17, 37:19] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:56, 09:19](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:52, 09:02](1863 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:04, 05:06](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:45] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:53, 08:15](1886 MB) - -PASS -- COMPILE 'atmw_intel' [36:18, 35:11] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 03:02](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:02] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:01](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:36, 06:22](1724 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:38](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [35:15, 34:16] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:59, 07:39](2009 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:16, 47:55] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 21:39](1884 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:47, 23:31](2018 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:19, 11:41](1117 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 24:48](1859 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:16, 48:53] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [22:47, 21:22](1885 MB) + +PASS -- COMPILE 's2swa_intel' [34:15, 33:31] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [17:30, 07:58](2054 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:51, 08:02](2053 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:41, 04:51](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:27, 08:05](2063 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:56](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:25, 08:26](2317 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:21, 08:10](2057 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:38](2004 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:50, 07:53](2056 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:35, 07:35](2012 MB) + +PASS -- COMPILE 's2sw_intel' [39:16, 38:54] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 06:21](1869 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 06:31](1947 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:14, 05:44] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:39, 11:05](2078 MB) + +PASS -- COMPILE 's2sw_debug_intel' [17:15, 05:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:41](1938 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [42:17, 34:50] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 06:35](1975 MB) + +PASS -- COMPILE 's2s_intel' [35:18, 34:51] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3072 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:06, 04:02](3059 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:25](2483 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:27, 34:16] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:09, 07:37](2053 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:18, 46:56] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:36, 23:21](1923 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:19](1138 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:35, 24:53](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:32] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:52, 32:50](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:45] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:36, 04:31](652 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:13, 03:58](1548 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:09](1558 MB) +PASS -- TEST 'control_latlon_intel' [05:08, 03:56](1545 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1544 MB) +PASS -- TEST 'control_c48_intel' [13:33, 11:45](1736 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:12](852 MB) +PASS -- TEST 'control_c192_intel' [17:03, 14:39](1682 MB) +PASS -- TEST 'control_c384_intel' [22:29, 19:56](1819 MB) +PASS -- TEST 'control_c384gdas_intel' [20:46, 13:25](1024 MB) +PASS -- TEST 'control_stochy_intel' [03:31, 02:15](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:19](440 MB) +PASS -- TEST 'control_lndp_intel' [03:32, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](606 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 03:18](601 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:41](1838 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 04:38](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 04:28](1844 MB) +PASS -- TEST 'control_restart_p8_intel' [04:01, 02:52](1057 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:31](1843 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:03, 02:49](1074 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:38](1830 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:24](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:37](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:01, 05:48](1907 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:49, 04:36](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [07:08, 05:02](1849 MB) +PASS -- TEST 'regional_control_intel' [09:05, 07:45](1010 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 04:48](1013 MB) +PASS -- TEST 'regional_decomp_intel' [10:05, 08:18](1013 MB) +PASS -- TEST 'regional_2threads_intel' [07:07, 05:10](1012 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:14, 07:49](1021 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 07:54](1016 MB) + +PASS -- COMPILE 'rrfs_intel' [36:16, 35:31] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:07, 10:11](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:29, 05:41](1217 MB) +PASS -- TEST 'rap_decomp_intel' [12:11, 10:38](986 MB) +PASS -- TEST 'rap_2threads_intel' [11:35, 09:44](1083 MB) +PASS -- TEST 'rap_restart_intel' [07:18, 05:21](991 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:08](997 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 10:44](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 07:39](995 MB) +PASS -- TEST 'hrrr_control_intel' [07:23, 05:15](986 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 05:23](981 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:50](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:52](917 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:40, 09:58](985 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 12:28](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:42, 12:15](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [33:16, 32:26] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:49, 08:51](959 MB) +PASS -- TEST 'control_ras_intel' [06:36, 05:12](665 MB) + +PASS -- COMPILE 'wam_intel' [33:16, 32:25] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:05, 14:22](1631 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [54:20, 53:18] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:33, 04:30](1829 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:41](1007 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:32] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:54, 03:22](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:59, 03:20](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:52](773 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:29](777 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:48](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:30](785 MB) +PASS -- TEST 'control_diag_debug_intel' [04:57, 03:31](1635 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 04:13](1870 MB) +PASS -- TEST 'regional_debug_intel' [23:57, 23:01](1049 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 06:12](1160 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:35, 06:08](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:12](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:13](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:11](1161 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:40, 06:31](1244 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:17](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 06:16](1168 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:23](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:10](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:23, 06:03](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:10](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:06](1159 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:06](1155 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:30](1160 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:15](1158 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:44](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:31] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:04, 16:55](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:36] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 05:49](1076 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:11, 08:53](902 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:26, 04:37](872 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:45, 08:26](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:20, 04:26](907 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:00, 04:54](860 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:21](904 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:27](847 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:56] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:10, 02:57](1110 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:30](1046 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 02:03](1022 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 31:14] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:56, 05:46](901 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:06](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:33, 06:08](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [24:03, 18:42](1155 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:03, 18:54](865 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:56, 10:47](1100 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:57, 18:40](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:36, 06:19](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [41:18, 38:51] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:24, 07:09](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:47](1091 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:33](771 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:30](805 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:23](814 MB) +PASS -- TEST 'gnv1_nested_intel' [11:46, 07:14](1676 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:20, 34:13] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:54, 08:58](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 09:03](755 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:12, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:37](1063 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:13](1020 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:43](929 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:42](921 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:46](929 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:44](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1050 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:45](926 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 08:11](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 08:18](848 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:42](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 05:12](2418 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:25](2406 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 08:07](1016 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:23] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 03:42](1068 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:56] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:45](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:27](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:51](255 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:27] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:15](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:22] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:47, 05:21](1885 MB) + +PASS -- COMPILE 'atml_intel' [38:18, 37:44] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:46, 10:02](1863 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:48, 08:47](1844 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:57, 05:34](1075 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:13, 06:34] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:46, 08:06](1887 MB) + +PASS -- COMPILE 'atmw_intel' [35:17, 34:19] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:32, 02:59](1857 MB) + +PASS -- COMPILE 'atmaero_intel' [34:16, 33:27] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:27, 06:34](1942 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:22, 06:48](1720 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:12, 06:52](1745 MB) SYNOPSIS: -Starting Date/Time: 20240723 05:48:30 -Ending Date/Time: 20240723 09:45:37 -Total Time: 03h:57m:43s +Starting Date/Time: 20240724 20:55:35 +Ending Date/Time: 20240725 00:58:45 +Total Time: 04h:03m:47s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 13807a10e1..3660c9ea7e 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: -ec399e628231e03101314fdb378214c340cf96cc +17a524e83223725150b6c1bec3ac9e55ac6876a8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,287 +35,352 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3439478 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_566496 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:38] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:35, 14:21](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:04, 19:08](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:59, 09:03](1206 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:46, 20:19](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:12, 20:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:44, 17:45](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:11] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:40, 27:12](1942 MB) - -PASS -- COMPILE 's2swa_intel' [17:12, 16:38] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:27, 14:24](2148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:34, 14:43](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:40, 07:57](1819 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:37, 13:56](2157 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:40, 07:51](1715 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:29, 13:06](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:27, 14:15](2129 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:25, 12:07](2045 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:35, 14:33](2136 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:38, 15:55](2725 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:00, 08:52](2732 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:30, 11:30](3657 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:00, 07:09](3503 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:21, 05:52](2118 MB) - -PASS -- COMPILE 's2sw_intel' [15:11, 15:04] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:11, 13:25](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:26, 04:40](2046 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 08:00] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:25, 08:50](2180 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:11, 14:39] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:25, 04:41](2052 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:37] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:02, 09:42](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:18](3086 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:57, 02:01](2521 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 22:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:28](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:07, 18:12](1992 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:23, 09:00](1247 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:23](1920 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:57] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 28:49](1977 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 14:22](2079 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 23:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:51, 18:01](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 18:59](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:59](1218 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:19](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:46](1952 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:00] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:59, 27:16](1941 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 16:43] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:34, 14:37](2137 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:22](2132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:39, 07:57](1813 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 14:17](2168 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 08:01](1713 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:31, 13:16](2426 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:34, 14:16](2137 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:28](2051 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [22:31, 16:16](2720 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 08:41](2730 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [23:39, 12:20](3655 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 07:06](3502 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:48](2114 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 16:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:13, 13:54](1976 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:40](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:44] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:27, 08:55](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 06:11](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:36](2050 MB) + +PASS -- COMPILE 's2s_intel' [14:11, 13:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:58, 09:46](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:11](3069 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:07](2517 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:11, 26:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:32, 14:44](2149 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:14] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:11](1997 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:59](1260 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 20:24](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 07:07] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 28:49](1982 MB) PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:24, 03:38](696 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 03:02](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1595 MB) -PASS -- TEST 'control_latlon_intel' [03:42, 03:04](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:51, 03:06](1589 MB) -PASS -- TEST 'control_c48_intel' [10:50, 09:13](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:35, 07:56](860 MB) -PASS -- TEST 'control_c192_intel' [11:49, 11:09](1734 MB) -PASS -- TEST 'control_c384_intel' [14:54, 12:16](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [12:41, 09:31](1357 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:48](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:51, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:42](649 MB) -PASS -- TEST 'control_iovr4_intel' [03:30, 02:42](636 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:36](642 MB) -PASS -- TEST 'control_p8_intel' [05:09, 03:26](1890 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:27](1883 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:25, 03:18](1890 MB) -PASS -- TEST 'control_restart_p8_intel' [03:07, 01:57](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:10, 03:22](1872 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1123 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:15, 03:26](1878 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:37](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:53, 05:48](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:47](1949 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:20, 03:28](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:44](1898 MB) -PASS -- TEST 'regional_control_intel' [07:38, 06:23](1088 MB) -PASS -- TEST 'regional_restart_intel' [04:37, 03:34](1086 MB) -PASS -- TEST 'regional_decomp_intel' [07:38, 06:46](1088 MB) -PASS -- TEST 'regional_2threads_intel' [05:37, 04:39](1080 MB) -PASS -- TEST 'regional_noquilt_intel' [07:38, 06:17](1385 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:18](1083 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:37, 06:24](1087 MB) -PASS -- TEST 'regional_wofs_intel' [08:34, 07:37](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:03, 08:12](1062 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:00, 05:08](1298 MB) -PASS -- TEST 'rap_decomp_intel' [10:03, 08:30](1022 MB) -PASS -- TEST 'rap_2threads_intel' [10:25, 08:15](1168 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 04:16](1055 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:24, 08:09](1051 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:23, 08:29](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1071 MB) -PASS -- TEST 'hrrr_control_intel' [06:25, 04:15](1026 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:21, 04:21](1022 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:22, 04:06](1098 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:51, 02:19](959 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:03](1045 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:22, 09:38](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:25](2025 MB) - -PASS -- COMPILE 'csawmg_intel' [12:12, 11:45] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:32](1021 MB) -PASS -- TEST 'control_ras_intel' [04:21, 03:25](716 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:11](1666 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:25] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:25, 03:12](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 06:06](1090 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:00] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:45](1627 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 02:46](1607 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:00](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:43](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:20](1140 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:46](820 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:42](1675 MB) -PASS -- TEST 'control_debug_p8_intel' [04:48, 03:07](1907 MB) -PASS -- TEST 'regional_debug_intel' [18:45, 17:34](1094 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:53](1209 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:49](1195 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:54](1211 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:49](1204 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:57](1212 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:42, 05:09](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:03](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:59](1212 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:26, 05:19](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:57](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:49](1205 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 05:01](1209 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:23, 07:48](1203 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:27, 04:47](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 06:06](1205 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:54](1212 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:18](1210 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 05:04] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:43, 13:29](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:49] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:00, 04:47](1165 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 07:00](999 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:43](936 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:15, 07:04](1076 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 03:36](950 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 03:49](902 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:27, 05:13](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:41, 01:58](877 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:12, 18:23] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:39](1195 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:41, 01:12](1129 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:45, 01:27](1084 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:10] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:28](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:56](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:44](1088 MB) -PASS -- TEST 'conus13km_debug_intel' [14:49, 14:11](1248 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:50, 14:30](947 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:19](1177 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:36, 14:33](1305 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 05:00](1143 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 14:05] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:15, 06:01](756 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:29, 06:19](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:26, 07:34](833 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:18](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:25, 28:47](887 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:04, 07:01](515 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:32, 08:22](524 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:26](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:35, 09:30](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:45](543 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:03, 04:24](548 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 05:45](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:35](411 MB) -PASS -- TEST 'gnv1_nested_intel' [07:12, 04:15](1727 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 06:05] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:58, 13:17](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:11, 22:32] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:06, 12:50](675 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:05, 12:41](736 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:14, 08:45](719 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:21, 07:27](846 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:21, 07:22](819 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:54, 16:28](1205 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 07:34] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:56](1155 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:58](1102 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:48](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1006 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:52](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1144 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:54](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:27](1029 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:08, 06:29](997 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:54](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:17](2441 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2375 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:45] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:30](1079 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 09:28] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1138 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:20] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:29, 01:01](253 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:56](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:35](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 12:02] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:09, 04:03](1975 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:07, 03:50](1965 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:15] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:34, 04:50](1876 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:29, 04:50](1873 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:42](1075 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 06:29] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:27, 05:51](1903 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:26] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:17, 02:12](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:31](1993 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:09, 05:14](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:00, 05:18](1786 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 05:14] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:04, 21:02](4556 MB) +PASS -- TEST 'control_flake_intel' [04:26, 03:38](690 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 03:04](1588 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 03:09](1602 MB) +PASS -- TEST 'control_latlon_intel' [03:37, 03:04](1585 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 03:07](1593 MB) +PASS -- TEST 'control_c48_intel' [10:47, 09:10](1741 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:55](859 MB) +PASS -- TEST 'control_c192_intel' [11:52, 11:09](1737 MB) +PASS -- TEST 'control_c384_intel' [14:43, 12:11](2012 MB) +PASS -- TEST 'control_c384gdas_intel' [12:31, 09:24](1357 MB) +PASS -- TEST 'control_stochy_intel' [02:34, 01:47](643 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:00, 01:03](480 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:44](646 MB) +PASS -- TEST 'control_iovr4_intel' [03:23, 02:43](641 MB) +PASS -- TEST 'control_iovr5_intel' [03:27, 02:40](641 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:31](1891 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:33](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:21](1883 MB) +PASS -- TEST 'control_restart_p8_intel' [03:18, 02:02](1098 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:19](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:54](1125 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:06, 03:25](1876 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:42](1945 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:39, 05:49](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:51](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:30](1887 MB) +PASS -- TEST 'merra2_thompson_intel' [06:32, 03:46](1895 MB) +PASS -- TEST 'regional_control_intel' [07:37, 06:15](1083 MB) +PASS -- TEST 'regional_restart_intel' [04:39, 03:27](1083 MB) +PASS -- TEST 'regional_decomp_intel' [07:32, 06:38](1087 MB) +PASS -- TEST 'regional_2threads_intel' [05:47, 04:35](1071 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 06:15](1383 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:11](1085 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 06:22](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:38, 07:31](1905 MB) + +PASS -- COMPILE 'rrfs_intel' [13:10, 12:42] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:21, 08:13](1062 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:11](1309 MB) +PASS -- TEST 'rap_decomp_intel' [10:23, 08:28](1028 MB) +PASS -- TEST 'rap_2threads_intel' [10:28, 08:14](1163 MB) +PASS -- TEST 'rap_restart_intel' [06:38, 04:17](1049 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:15, 08:11](1056 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:28](1028 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:51, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [06:08, 04:15](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:19](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:14, 04:05](1099 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:20](951 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:30, 08:04](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:39](1990 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:23](2022 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:40] +PASS -- TEST 'control_csawmg_intel' [07:35, 06:27](1022 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:30](717 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 11:20] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:42, 12:14](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:42] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:14](1896 MB) +PASS -- TEST 'regional_control_faster_intel' [06:37, 06:02](1087 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 08:06] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:45, 02:44](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:48, 02:39](1624 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:06](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:46](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:23](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:52](826 MB) +PASS -- TEST 'control_diag_debug_intel' [06:45, 02:46](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [06:45, 03:26](1919 MB) +PASS -- TEST 'regional_debug_intel' [18:41, 17:47](1103 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1203 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:53](1208 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:56](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:53](1207 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:53](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:36, 05:10](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:55](1205 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1209 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:59](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:51](1206 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:50](1204 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1199 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:06](1213 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:54](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:22](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 05:07] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:45, 13:25](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:51](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 06:59](1002 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:14, 03:42](933 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1080 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 03:37](951 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:52](901 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 05:13](975 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:07, 02:00](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:53] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:57, 02:36](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:11](1128 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:28](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:27](975 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1091 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:47](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [14:55, 14:05](1239 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:26](944 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:22](1172 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:13](1310 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:58](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:56](762 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 06:18](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:25](831 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:13, 24:39](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:34, 28:44](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:57](516 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:18](527 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](381 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 09:25](487 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:39](542 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:24](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:38](597 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:34](407 MB) +PASS -- TEST 'gnv1_nested_intel' [07:16, 04:14](1730 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:20](594 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:20, 13:05](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:41](736 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:33] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:20, 08:53](717 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:11, 13:06] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:18](830 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:21](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1197 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:12, 10:25] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:55](1141 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:55](1110 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:49](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:52](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:53](1008 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:58](1161 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:50](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:29](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:25](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:20](2386 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:16](2399 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:32] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:27](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:31] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1152 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:02](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:56](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](322 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:13] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 04:06](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:53] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 04:01](1960 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:19] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:49](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:47](1872 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:58, 02:45](1089 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:09] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:39, 05:51](1912 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 11:58] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:19, 02:05](1918 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 11:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:11, 04:29](1997 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:15](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 05:18](1784 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:50](4547 MB) SYNOPSIS: -Starting Date/Time: 20240722 22:32:52 -Ending Date/Time: 20240723 00:04:05 -Total Time: 01h:32m:05s +Starting Date/Time: 20240725 23:06:11 +Ending Date/Time: 20240726 00:38:27 +Total Time: 01h:33m:08s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 184/185 +Failed Tests: +* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2352/tests/logs/log_orion/run_cpld_control_ciceC_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +17a524e83223725150b6c1bec3ac9e55ac6876a8 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1109443 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf + +PASS -- COMPILE 's2swa_intel' [15:11, 14:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 14:20](2148 MB) + +SYNOPSIS: +Starting Date/Time: 20240726 08:41:12 +Ending Date/Time: 20240726 09:12:46 +Total Time: 00h:31m:47s +Compiles Completed: 1/1 +Tests Completed: 1/1 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 4cafa4b74d..33c1c66350 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: -ec399e628231e03101314fdb378214c340cf96cc +45bcf84d30cfb2cc46913130f6e8615814b3c9e8 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,12 +9,12 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 2d837b16af326b09ff4018daab4de84f4deff7ec CMEPS-interface/CMEPS (cmeps_v0.4.1-2307-g2d837b1) + 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 437ea03100e44ac67826bb3879df89108de25a16 FV3 (remotes/origin/land_upgrade_hr4) + 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop-63-g927261d) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 002e02928c91072c0bb8f8f102df93b1be60031a FV3/ccpp/physics (ccpp_transition_to_vlab_master_20190705-4324-g002e0292) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -35,239 +35,239 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240722 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_192846 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255709 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:37, 19:25] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [48:10, 01:17](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:41, 25:19] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:05, 01:59](1824 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:55, 01:35](1853 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [24:00, 01:46](987 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [43:06, 01:35](1805 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [35:54, 35:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [32:52, 01:08](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:40] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [03:28, 01:55](1848 MB) - -PASS -- COMPILE 's2swa_intel' [20:34, 20:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [48:12, 01:24](3136 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [48:12, 01:45](3128 MB) -PASS -- TEST 'cpld_restart_p8_intel' [39:44, 01:06](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [48:12, 01:25](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [39:43, 01:45](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [48:12, 01:51](3367 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [48:12, 01:31](3127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [48:13, 01:29](3073 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:12, 01:37](3132 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [48:21, 04:38](4128 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:41, 04:45](4270 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [48:12, 01:37](3113 MB) - -PASS -- COMPILE 's2sw_intel' [23:40, 23:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [45:06, 01:46](1829 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [45:06, 01:57](1895 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:27, 12:02] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:19, 01:06](1895 MB) - -PASS -- COMPILE 's2s_intel' [34:51, 33:50] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [33:54, 00:59](2924 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [33:54, 01:25](2920 MB) -PASS -- TEST 'cpld_restart_c48_intel' [29:50, 01:20](2324 MB) - -PASS -- COMPILE 's2swa_faster_intel' [21:35, 20:36] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [47:11, 01:57](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:41, 22:57] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [45:05, 00:50](1837 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:32, 01:36](1009 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:33, 01:44](1809 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:35, 18:56] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [43:52, 01:42](1859 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [29:49, 29:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [26:29, 00:25](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:29, 00:31](1468 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [26:29, 00:25](1481 MB) -PASS -- TEST 'control_latlon_intel' [26:29, 00:23](1476 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [26:29, 00:33](1477 MB) -PASS -- TEST 'control_c48_intel' [26:28, 01:08](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [26:28, 00:50](713 MB) -PASS -- TEST 'control_c192_intel' [26:29, 00:44](1587 MB) -PASS -- TEST 'control_c384_intel' [26:33, 01:22](1907 MB) -PASS -- TEST 'control_c384gdas_intel' [26:33, 01:54](1087 MB) -PASS -- TEST 'control_stochy_intel' [26:29, 00:25](531 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:59, 01:04](334 MB) -PASS -- TEST 'control_lndp_intel' [26:29, 00:30](526 MB) -PASS -- TEST 'control_iovr4_intel' [26:29, 00:42](525 MB) -PASS -- TEST 'control_iovr5_intel' [25:48, 00:45](525 MB) -PASS -- TEST 'control_p8_intel' [23:59, 01:58](1763 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [23:43, 02:00](1772 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [23:02, 02:05](1770 MB) -PASS -- TEST 'control_restart_p8_intel' [18:34, 01:02](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [23:02, 02:06](1757 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [17:21, 01:05](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [22:56, 01:59](1757 MB) -PASS -- TEST 'control_2threads_p8_intel' [22:55, 01:07](1863 MB) -PASS -- TEST 'control_p8_lndp_intel' [22:40, 01:10](1776 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [22:35, 02:02](1823 MB) -PASS -- TEST 'control_p8_mynn_intel' [22:33, 01:48](1784 MB) -PASS -- TEST 'merra2_thompson_intel' [22:29, 01:54](1773 MB) -PASS -- TEST 'regional_control_intel' [22:09, 01:06](854 MB) -PASS -- TEST 'regional_restart_intel' [15:21, 00:19](852 MB) -PASS -- TEST 'regional_decomp_intel' [22:04, 00:51](852 MB) -PASS -- TEST 'regional_2threads_intel' [21:49, 00:59](900 MB) -PASS -- TEST 'regional_noquilt_intel' [21:29, 00:16](1178 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [20:53, 01:24](850 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [20:53, 01:17](853 MB) -PASS -- TEST 'regional_wofs_intel' [20:39, 00:36](1582 MB) - -PASS -- COMPILE 'rrfs_intel' [30:53, 30:02] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [17:09, 01:40](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [16:56, 01:13](1088 MB) -PASS -- TEST 'rap_decomp_intel' [16:47, 01:24](916 MB) -PASS -- TEST 'rap_2threads_intel' [16:45, 01:46](999 MB) -PASS -- TEST 'rap_restart_intel' [08:10, 01:25](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [16:14, 02:11](908 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [16:05, 01:46](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:44, 01:52](780 MB) -PASS -- TEST 'hrrr_control_intel' [15:49, 01:01](903 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [15:47, 00:58](907 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [15:44, 01:24](987 MB) -PASS -- TEST 'hrrr_control_restart_intel' [10:43, 01:08](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:35, 01:19](905 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:22, 01:02](1865 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:05, 01:10](1854 MB) - -PASS -- COMPILE 'csawmg_intel' [19:37, 19:08] -PASS -- TEST 'control_csawmg_intel' [28:32, 00:23](875 MB) -PASS -- TEST 'control_ras_intel' [28:32, 00:57](562 MB) - -PASS -- COMPILE 'wam_intel' [18:33, 18:01] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:37, 00:52](1561 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:37, 20:21] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:42, 02:05](1771 MB) -PASS -- TEST 'regional_control_faster_intel' [18:33, 00:23](850 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:36, 19:52] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [18:19, 01:17](1505 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [18:06, 01:21](1497 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:26, 00:52](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [17:21, 01:04](704 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:05, 00:31](1013 MB) -PASS -- TEST 'control_ras_debug_intel' [14:42, 01:00](709 MB) -PASS -- TEST 'control_diag_debug_intel' [14:09, 01:16](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [14:08, 00:55](1792 MB) -PASS -- TEST 'regional_debug_intel' [14:01, 00:16](898 MB) -PASS -- TEST 'rap_control_debug_intel' [13:50, 00:43](1087 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:22, 00:53](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:19, 00:47](1084 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [13:17, 00:45](1085 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [13:16, 00:46](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [12:55, 00:42](1170 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:55, 00:42](1088 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [12:54, 00:42](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [12:54, 00:48](1091 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 00:56](1086 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:43, 00:48](1081 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:42, 00:45](1083 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:38, 00:40](1084 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:34, 00:48](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:14, 00:55](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:19, 00:42](1088 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:18, 02:04](1089 MB) - -PASS -- COMPILE 'wam_debug_intel' [17:30, 16:27] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [09:09, 00:17](1597 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:32, 14:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:34, 01:26](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [28:33, 01:27](788 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:33, 01:58](790 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:33, 01:54](858 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:34, 01:34](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:33, 01:50](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:18, 01:32](687 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:45, 00:15](669 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:38, 17:31] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:22, 01:04](1004 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:21, 00:53](1007 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:44, 00:42](882 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:32, 14:16] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 01:21](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [18:40, 18:03] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:01, 00:54](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:46, 01:06](956 MB) -PASS -- TEST 'conus13km_debug_intel' [06:46, 01:20](1052 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [06:45, 01:14](724 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [06:44, 00:26](1055 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [06:37, 01:07](1123 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:32, 13:58] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:34, 00:57](995 MB) - -PASS -- COMPILE 'hafsw_intel' [18:45, 18:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:20, 02:04](620 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 00:38](968 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:18, 01:37](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [06:02, 01:21](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:45, 02:07](710 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:29, 01:06](390 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:30, 02:17](407 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:18, 01:35](286 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:01, 02:14](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:10, 01:34](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:10, 00:49](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:09, 00:46](494 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:43, 00:29](316 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:43, 17:18] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [02:38, 01:17](520 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:35, 16:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [01:58, 01:46](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [01:15, 01:35](709 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:42, 21:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [01:02, 01:49](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [27:48, 27:25] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:41, 02:05](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:41, 02:02](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:39, 00:26](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:37, 18:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [58:42, 00:48](1829 MB) - -PASS -- COMPILE 'atml_intel' [14:30, 13:40] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [08:25, 07:22] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:28, 09:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [00:29, 01:24](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [00:27, 01:58](2911 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [00:11, 01:55](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:32, 10:24] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [58:24, 01:05](4440 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:31] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:58, 01:50](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:53, 28:49] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [54:34, 01:43](1821 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:25, 01:20](1842 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:04, 01:44](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:35, 01:19](1795 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [10:56, 00:44](1816 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:37, 18:57] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [03:50, 02:05](1842 MB) + +PASS -- COMPILE 's2swa_intel' [14:29, 11:09] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:58, 01:42](3134 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:58, 01:58](3132 MB) +PASS -- TEST 'cpld_restart_p8_intel' [00:26, 01:31](3068 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 01:56](3156 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [00:26, 01:33](3085 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 01:34](3368 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:58, 01:17](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:59, 01:42](3079 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:58, 01:55](3136 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [12:07, 03:53](4131 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:41, 05:04](4268 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:58, 01:26](3120 MB) + +PASS -- COMPILE 's2sw_intel' [14:30, 10:48] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:56, 01:30](1832 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 01:35](1897 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:36, 17:15] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 01:42](1896 MB) + +PASS -- COMPILE 's2s_intel' [26:41, 22:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [59:44, 00:48](2920 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [59:44, 01:09](2923 MB) +PASS -- TEST 'cpld_restart_c48_intel' [49:30, 01:20](2320 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:54, 29:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [53:31, 02:01](3133 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:43, 23:32] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:43, 01:41](1838 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:08, 01:20](1009 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:37, 01:29](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:34, 14:29] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:25, 01:31](1862 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [24:39, 21:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [47:18, 00:32](570 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [47:18, 00:38](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:18, 00:44](1476 MB) +PASS -- TEST 'control_latlon_intel' [47:18, 00:41](1470 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [47:18, 00:52](1474 MB) +PASS -- TEST 'control_c48_intel' [47:17, 01:27](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [45:26, 01:18](714 MB) +PASS -- TEST 'control_c192_intel' [44:25, 01:00](1589 MB) +PASS -- TEST 'control_c384_intel' [42:13, 01:20](1912 MB) +PASS -- TEST 'control_c384gdas_intel' [41:52, 02:04](1087 MB) +PASS -- TEST 'control_stochy_intel' [40:28, 00:21](527 MB) +PASS -- TEST 'control_stochy_restart_intel' [38:00, 01:00](331 MB) +PASS -- TEST 'control_lndp_intel' [40:23, 00:28](528 MB) +PASS -- TEST 'control_iovr4_intel' [40:21, 00:41](526 MB) +PASS -- TEST 'control_iovr5_intel' [40:17, 00:40](523 MB) +PASS -- TEST 'control_p8_intel' [39:45, 01:28](1773 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 02:00](1770 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [38:58, 01:27](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [33:36, 01:55](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [38:58, 01:25](1769 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [33:35, 01:00](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [38:57, 01:19](1767 MB) +PASS -- TEST 'control_2threads_p8_intel' [38:00, 01:41](1863 MB) +PASS -- TEST 'control_p8_lndp_intel' [36:54, 01:11](1774 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [36:50, 01:53](1832 MB) +PASS -- TEST 'control_p8_mynn_intel' [36:45, 01:25](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [36:43, 01:16](1777 MB) +PASS -- TEST 'regional_control_intel' [36:28, 01:06](853 MB) +PASS -- TEST 'regional_restart_intel' [29:44, 01:02](850 MB) +PASS -- TEST 'regional_decomp_intel' [36:10, 00:51](862 MB) +PASS -- TEST 'regional_2threads_intel' [36:09, 00:49](908 MB) +PASS -- TEST 'regional_noquilt_intel' [35:33, 00:17](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [35:32, 01:18](852 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [35:32, 01:11](852 MB) +PASS -- TEST 'regional_wofs_intel' [35:27, 00:43](1585 MB) + +PASS -- COMPILE 'rrfs_intel' [22:45, 20:06] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [49:10, 01:57](910 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:11, 01:02](1092 MB) +PASS -- TEST 'rap_decomp_intel' [49:10, 01:36](913 MB) +PASS -- TEST 'rap_2threads_intel' [49:10, 01:39](997 MB) +PASS -- TEST 'rap_restart_intel' [35:21, 01:15](781 MB) +PASS -- TEST 'rap_sfcdiff_intel' [49:10, 02:09](913 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:10, 01:39](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:21, 01:40](783 MB) +PASS -- TEST 'hrrr_control_intel' [49:10, 01:35](909 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [49:10, 01:32](902 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [49:11, 01:24](988 MB) +PASS -- TEST 'hrrr_control_restart_intel' [35:20, 01:01](741 MB) +PASS -- TEST 'rrfs_v1beta_intel' [49:10, 01:58](902 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [49:10, 00:51](1870 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:10, 01:12](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [15:36, 12:41] +PASS -- TEST 'control_csawmg_intel' [55:19, 00:51](871 MB) +PASS -- TEST 'control_ras_intel' [55:19, 00:59](561 MB) + +PASS -- COMPILE 'wam_intel' [14:34, 13:11] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [51:15, 01:01](1568 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:45, 20:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [35:18, 02:03](1772 MB) +PASS -- TEST 'regional_control_faster_intel' [33:32, 00:19](853 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:44, 17:54] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:55, 01:07](1500 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:07, 01:21](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [31:44, 00:46](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [31:34, 01:09](703 MB) +PASS -- TEST 'control_csawmg_debug_intel' [31:30, 00:25](1014 MB) +PASS -- TEST 'control_ras_debug_intel' [31:26, 01:02](712 MB) +PASS -- TEST 'control_diag_debug_intel' [31:17, 01:15](1560 MB) +PASS -- TEST 'control_debug_p8_intel' [31:03, 00:49](1803 MB) +PASS -- TEST 'regional_debug_intel' [30:30, 00:17](895 MB) +PASS -- TEST 'rap_control_debug_intel' [30:14, 00:37](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [30:11, 00:50](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [30:06, 00:46](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [29:56, 00:44](1086 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:56, 00:45](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [29:31, 01:28](1172 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:30, 00:25](1093 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:12, 00:27](1091 MB) +PASS -- TEST 'rap_lndp_debug_intel' [29:11, 00:32](1090 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:08, 00:39](1088 MB) +PASS -- TEST 'rap_noah_debug_intel' [28:54, 00:47](1083 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [28:47, 00:58](1086 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:03, 01:16](1083 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [27:54, 00:39](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [27:52, 00:56](1086 MB) +PASS -- TEST 'rap_flake_debug_intel' [27:46, 00:50](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:08, 02:02](1089 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:29, 06:02] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [50:14, 01:13](1590 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 12:41] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:06, 01:16](967 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:03, 02:06](789 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:45, 02:15](788 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:27, 01:43](859 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:23, 02:17](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:33](787 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 01:19](690 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:49, 01:12](672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:36, 13:26] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [24:39, 00:56](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [19:42, 01:01](1010 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [19:41, 00:51](880 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:31, 12:09] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 01:25](816 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:35, 13:07] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:41, 01:04](963 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:33, 01:03](958 MB) +PASS -- TEST 'conus13km_debug_intel' [23:33, 00:47](1051 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [23:24, 00:43](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:23, 00:44](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:38, 01:05](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 05:31] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:02, 00:46](996 MB) + +PASS -- COMPILE 'hafsw_intel' [17:39, 16:44] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:04, 01:55](619 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:04, 00:46](975 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:02, 01:55](663 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:57, 02:11](700 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 01:42](714 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 01:42](394 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:30, 01:42](408 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:29, 01:22](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:28, 02:03](375 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:30, 01:22](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:13, 00:50](414 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:17, 01:42](500 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:13, 01:15](317 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:33, 11:23] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 01:06](529 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:41, 20:13] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:47, 01:37](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:44, 01:15](711 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:41, 13:51] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:37, 01:18](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:35, 15:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [21:27, 01:52](663 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:23, 01:53](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:06, 00:34](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:35, 15:28] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:07, 00:49](1828 MB) + +PASS -- COMPILE 'atml_intel' [19:43, 18:36] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [18:41, 17:28] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [12:34, 11:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [20:52, 01:15](3026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [20:49, 01:59](2905 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:36, 01:57](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [17:40, 16:27] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 00:57](4441 MB) SYNOPSIS: -Starting Date/Time: 20240722 17:50:57 -Ending Date/Time: 20240722 19:28:17 -Total Time: 01h:37m:51s +Starting Date/Time: 20240724 20:33:13 +Ending Date/Time: 20240724 22:10:20 +Total Time: 01h:37m:56s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.conf b/tests/rt.conf index 2a644b651d..36679f99e1 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -327,7 +327,7 @@ RUN | atmaero_control_p8_rad_micro | - noaacloud #RUN | regional_atmaq | - jet s4 | baseline | COMPILE | atmaq_debug | intel | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -D32BIT=ON | - jet noaacloud s4 | fv3 | -RUN | regional_atmaq_debug | - jet s4 noaacloud | baseline | +RUN | regional_atmaq_debug | - hera jet s4 noaacloud | baseline | ### GNU TESTS ### ### CCPP PROD tests ### diff --git a/tests/test_changes.list b/tests/test_changes.list index 972378d3ac..47f77b1466 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -3,7 +3,6 @@ cpld_control_gfsv17 intel cpld_control_gfsv17_iau intel cpld_restart_gfsv17 intel cpld_mpi_gfsv17 intel -cpld_control_sfs intel cpld_debug_gfsv17 intel cpld_control_p8 intel cpld_control_p8.v2.sfc intel @@ -32,60 +31,31 @@ cpld_control_pdlib_p8 intel cpld_restart_pdlib_p8 intel cpld_mpi_pdlib_p8 intel cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 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 -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_wam intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -rrfs_v1beta_debug intel -gnv1_c96_no_nest_debug intel -control_wam_debug intel -gnv1_nested intel -datm_cdeps_lnd_gswp3 intel -datm_cdeps_lnd_era5 intel -datm_cdeps_lnd_era5_rst intel +hafs_regional_atm_ocn intel +hafs_regional_atm_wav intel +hafs_regional_atm_ocn_wav intel +hafs_regional_docn intel +hafs_regional_docn_oisst intel +hafs_regional_datm_cdeps intel +datm_cdeps_control_cfsr intel +datm_cdeps_restart_cfsr intel +datm_cdeps_control_gefs intel +datm_cdeps_iau_gefs intel +datm_cdeps_stochy_gefs intel +datm_cdeps_ciceC_cfsr intel +datm_cdeps_bulk_cfsr intel +datm_cdeps_bulk_gefs intel +datm_cdeps_mx025_cfsr intel +datm_cdeps_mx025_gefs intel +datm_cdeps_multiple_files_cfsr intel +datm_cdeps_3072x1536_cfsr intel +datm_cdeps_gfs intel +datm_cdeps_debug_cfsr intel +datm_cdeps_control_cfsr_faster intel atm_ds2s_docn_pcice intel atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs 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_debug intel -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -rrfs_v1beta gnu -control_diag_debug gnu -rrfs_v1beta_debug gnu -control_debug_p8 gnu -gnv1_c96_no_nest_debug gnu cpld_control_nowave_noaero_p8 gnu cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu +datm_cdeps_control_cfsr gnu From b5a1976012b66352f403588f95e639c6827b97d4 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Tue, 30 Jul 2024 07:17:15 -0400 Subject: [PATCH 5/8] Fix dumpfields=true option by using ESMF_FieldBundleWrite (#2355) * UFSWM - Fix dumpfields=true option in FV3 by using ESMF_FieldBundleWrite * FV3 - Fix dumpfields=true option by using ESMF_FieldBundleWrite * Update rt_utils.sh. Set ECF_HOST on wcoss2 explicitly --- FV3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 522 ++++++------ tests/logs/RegressionTests_derecho.log | 542 ++++++------ tests/logs/RegressionTests_gaea.log | 546 ++++++------ tests/logs/RegressionTests_hera.log | 776 ++++++++++-------- tests/logs/RegressionTests_hercules.log | 728 ++++++++-------- tests/logs/RegressionTests_jet.log | 544 ++++++------ tests/logs/RegressionTests_orion.log | 609 ++++++-------- tests/logs/RegressionTests_wcoss2.log | 456 +++++----- tests/rt_utils.sh | 17 +- tests/test_changes.list | 61 -- 14 files changed, 2452 insertions(+), 2453 deletions(-) diff --git a/FV3 b/FV3 index 927261d391..0495c19204 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 +Subproject commit 0495c19204325401ccba2943f99e65ee9190f07d diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4a8675bfd4..774fbac358 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 20:10:07 UTC 2024 +Fri Jul 26 20:30:45 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 287.098363 - 0: The maximum resident set size (KB) = 1449616 + 0: The total amount of wall time = 280.977475 + 0: The maximum resident set size (KB) = 1454304 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 987.462605 - 0: The maximum resident set size (KB) = 1413952 + 0: The total amount of wall time = 966.539273 + 0: The maximum resident set size (KB) = 1439060 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 254.621474 - 0: The maximum resident set size (KB) = 1413152 + 0: The total amount of wall time = 249.254197 + 0: The maximum resident set size (KB) = 1437604 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 249.757061 - 0: The maximum resident set size (KB) = 1432096 + 0: The total amount of wall time = 249.618477 + 0: The maximum resident set size (KB) = 1432416 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 249.818760 - 0: The maximum resident set size (KB) = 1404272 + 0: The total amount of wall time = 252.799465 + 0: The maximum resident set size (KB) = 1431152 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 254.379486 - 0: The maximum resident set size (KB) = 1415716 + 0: The total amount of wall time = 246.985477 + 0: The maximum resident set size (KB) = 1447148 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835607/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/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 = 252.840901 - 0: The maximum resident set size (KB) = 1413640 + 0: The total amount of wall time = 249.919086 + 0: The maximum resident set size (KB) = 1434244 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 21:22:39 UTC 2024 -Elapsed time: 01h:12m:33s. Have a nice day! +Fri Jul 26 21:54:52 UTC 2024 +Elapsed time: 01h:24m:07s. 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 bd5ba9f0c7..a5a3fcd863 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 19:03:11 UTC 2024 +Fri Jul 26 19:19:32 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 1364.396894 - 0: The maximum resident set size (KB) = 1503220 + 0: The total amount of wall time = 1333.999638 + 0: The maximum resident set size (KB) = 1540440 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 571.646799 - 0: The maximum resident set size (KB) = 1494576 + 0: The total amount of wall time = 724.841272 + 0: The maximum resident set size (KB) = 1538712 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1901665/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/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 = 430.360696 - 0: The maximum resident set size (KB) = 1506724 + 0: The total amount of wall time = 520.811850 + 0: The maximum resident set size (KB) = 1511524 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 20:10:06 UTC 2024 -Elapsed time: 01h:06m:56s. Have a nice day! +Fri Jul 26 20:30:45 UTC 2024 +Elapsed time: 01h:11m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 00f72c583d..b1326ed3c2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 24 16:28:05 UTC 2024 +Fri Jul 26 16:44:32 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 1412.442409 - 0: The maximum resident set size (KB) = 740268 + 0: The total amount of wall time = 1470.646865 + 0: The maximum resident set size (KB) = 769104 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2294.672242 - 0: The maximum resident set size (KB) = 705360 + 0: The total amount of wall time = 2296.345459 + 0: The maximum resident set size (KB) = 731460 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2170.957201 - 0: The maximum resident set size (KB) = 715832 + 0: The total amount of wall time = 2252.359216 + 0: The maximum resident set size (KB) = 715680 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3909363/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/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 = 2158.899518 - 0: The maximum resident set size (KB) = 704304 + 0: The total amount of wall time = 2288.966852 + 0: The maximum resident set size (KB) = 718224 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 24 19:03:10 UTC 2024 -Elapsed time: 02h:35m:05s. Have a nice day! +Fri Jul 26 19:19:31 UTC 2024 +Elapsed time: 02h:35m:00s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 68d6cb2f68..2d37737fda 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: -2fd1d2b2ddf1951557092cdf259c8fa1cfad9099 +4124fe82547dcec17e208ff919f41db354b212e6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,271 +36,271 @@ 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-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_820335 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2547232 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:00] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:38, 01:38](3210 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:32, 16:37] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:29, 02:05](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:16, 03:12](1968 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:13, 03:18](1083 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:30, 03:14](1893 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:31, 15:31] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:30, 00:31](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:49] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [36:44, 02:53](1961 MB) - -PASS -- COMPILE 's2swa_intel' [11:24, 10:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [30:37, 01:45](3240 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [30:37, 01:39](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [21:27, 02:02](3178 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [30:37, 01:18](3264 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:46, 01:39](3194 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [30:37, 01:29](3476 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:37, 01:35](3236 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [30:38, 01:28](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:37, 01:42](3242 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [30:37, 02:05](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:24, 10:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:37, 00:58](1936 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [30:37, 02:13](1996 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [31:37, 02:18](1992 MB) - -PASS -- COMPILE 's2s_intel' [10:25, 09:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [31:36, 01:00](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [31:36, 01:25](2940 MB) -PASS -- TEST 'cpld_restart_c48_intel' [27:10, 00:41](2338 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:31, 14:57] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [26:31, 01:36](3242 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:32, 16:00] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:30, 01:46](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [59:45, 01:52](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:00, 00:57](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:33] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:26, 00:58](1979 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:15] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:35, 00:26](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:15, 01:11](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [16:48, 00:26](1577 MB) -PASS -- TEST 'control_latlon_intel' [16:21, 00:40](1567 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:23, 00:30](1567 MB) -PASS -- TEST 'control_c48_intel' [13:43, 00:55](1612 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:22, 01:09](733 MB) -PASS -- TEST 'control_c192_intel' [13:22, 01:15](1691 MB) -PASS -- TEST 'control_c384_intel' [13:21, 01:53](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [11:23, 02:51](1196 MB) -PASS -- TEST 'control_stochy_intel' [10:38, 00:26](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [56:57, 00:15](434 MB) -PASS -- TEST 'control_lndp_intel' [10:24, 00:22](630 MB) -PASS -- TEST 'control_iovr4_intel' [09:25, 00:39](624 MB) -PASS -- TEST 'control_iovr5_intel' [05:32, 00:27](624 MB) -PASS -- TEST 'control_p8_intel' [05:30, 02:09](1863 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:16](1862 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:22, 02:44](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [52:30, 02:00](1020 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:20, 01:23](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [52:30, 01:52](1024 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:40, 01:41](1858 MB) -PASS -- TEST 'control_2threads_p8_intel' [01:20, 01:25](1958 MB) -PASS -- TEST 'control_p8_lndp_intel' [01:19, 00:39](1864 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [00:20, 02:07](1932 MB) -PASS -- TEST 'control_p8_mynn_intel' [57:59, 02:25](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [57:13, 02:44](1873 MB) -PASS -- TEST 'regional_control_intel' [57:20, 01:09](875 MB) -PASS -- TEST 'regional_restart_intel' [50:29, 00:28](873 MB) -PASS -- TEST 'regional_decomp_intel' [57:03, 00:28](877 MB) -PASS -- TEST 'regional_2threads_intel' [57:00, 01:03](1002 MB) -PASS -- TEST 'regional_noquilt_intel' [56:47, 00:31](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [56:45, 00:37](871 MB) -PASS -- TEST 'regional_wofs_intel' [56:10, 00:26](1603 MB) - -PASS -- COMPILE 'ifi_intel' [09:22, 08:28] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [22:14, 00:44](873 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [22:14, 00:40](876 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [22:15, 00:31](1000 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [21:02, 01:57](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [21:03, 01:22](1190 MB) -PASS -- TEST 'rap_decomp_intel' [21:02, 01:56](1010 MB) -PASS -- TEST 'rap_2threads_intel' [21:02, 02:44](1095 MB) -PASS -- TEST 'rap_restart_intel' [54:59, 03:00](890 MB) -PASS -- TEST 'rap_sfcdiff_intel' [21:02, 02:13](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [21:02, 01:47](1007 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [54:53, 02:24](891 MB) -PASS -- TEST 'hrrr_control_intel' [21:02, 02:15](1001 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [21:02, 02:30](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [21:03, 03:04](1090 MB) -PASS -- TEST 'hrrr_control_restart_intel' [54:41, 00:23](842 MB) -PASS -- TEST 'rrfs_v1beta_intel' [53:21, 02:42](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [52:30, 00:22](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [52:23, 00:42](1957 MB) - -PASS -- COMPILE 'csawmg_intel' [09:21, 08:55] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [21:15, 01:13](969 MB) -PASS -- TEST 'control_ras_intel' [21:15, 00:41](659 MB) - -PASS -- COMPILE 'wam_intel' [09:21, 08:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [21:15, 01:13](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:26, 12:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [52:02, 02:23](1864 MB) -PASS -- TEST 'regional_control_faster_intel' [51:52, 01:05](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:47] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [51:53, 00:33](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:19, 00:37](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [49:37, 00:59](814 MB) -PASS -- TEST 'control_lndp_debug_intel' [49:10, 00:34](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:54, 00:20](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [48:41, 00:57](828 MB) -PASS -- TEST 'control_diag_debug_intel' [48:03, 00:35](1678 MB) -PASS -- TEST 'control_debug_p8_intel' [47:56, 01:06](1912 MB) -PASS -- TEST 'regional_debug_intel' [47:16, 00:40](930 MB) -PASS -- TEST 'rap_control_debug_intel' [46:25, 00:30](1197 MB) -PASS -- TEST 'hrrr_control_debug_intel' [46:07, 00:25](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [45:49, 01:02](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [45:01, 00:38](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:55, 01:15](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [44:26, 01:14](1283 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:20, 00:45](1201 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [44:07, 00:48](1206 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:43, 01:06](1197 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [43:41, 01:04](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [43:05, 00:55](1194 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [42:59, 00:28](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [42:01, 00:41](1199 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [42:04, 00:59](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [41:54, 00:59](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [41:47, 00:18](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [41:08, 02:38](1209 MB) - -PASS -- COMPILE 'wam_debug_intel' [57:16, 03:47] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [28:13, 01:06](1704 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:41, 08:56] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [41:04, 00:56](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [40:58, 01:58](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [38:52, 03:25](891 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [38:44, 02:10](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [38:33, 02:01](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [37:27, 03:04](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:27, 02:24](798 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:28, 00:18](770 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 11:51] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [20:10, 01:08](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [13:57, 00:19](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [11:30, 01:03](978 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [59:17, 08:57] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [22:58, 01:26](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [53:10, 03:47] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [28:04, 00:39](1073 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [28:04, 00:57](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [28:04, 00:40](1183 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [28:04, 00:56](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [28:05, 01:03](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [28:04, 00:36](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [53:10, 03:52] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:04, 00:44](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [01:16, 10:26] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [19:48, 01:24](709 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:48, 00:48](1060 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 02:06](761 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:46, 02:15](794 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:47, 02:05](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [19:46, 00:48](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:47, 02:16](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [19:47, 01:17](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:50, 02:21](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [19:46, 01:00](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [19:46, 01:20](517 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:48, 01:03](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:47, 01:16](419 MB) -PASS -- TEST 'gnv1_nested_intel' [19:45, 03:08](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [54:12, 04:12] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [26:03, 01:04](661 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [02:23, 13:40] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:09, 01:17](690 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:04, 01:43](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [57:12, 10:10] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [20:02, 01:28](794 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:56, 09:45] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:54, 01:41](758 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:54, 01:59](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:52, 00:57](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [17:48, 00:26](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [11:16, 00:19](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [16:52, 00:35](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [10:58, 00:40](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [10:35, 00:53](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:05, 00:47](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:38, 00:17](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:35, 01:05](650 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [04:30, 01:07](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [03:53, 01:04](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:46, 00:33](767 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:29, 00:29](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:25, 01:00](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:30, 00:16](767 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [25:50, 00:29](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:50, 01:11](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [52:46, 00:48](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:28, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [02:09, 01:06](1930 MB) - -PASS -- COMPILE 'atml_intel' [23:37, 10:35] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [01:15, 02:06](1892 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [00:41, 01:58](1894 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:06, 00:52](1043 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:30, 04:46] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [59:28, 02:13](1934 MB) - -PASS -- COMPILE 'atmw_intel' [28:42, 09:37] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [51:27, 02:19](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [29:43, 09:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [50:15, 02:11](3132 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:15, 01:58](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:07, 01:37](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [24:39, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [55:15, 01:39](4544 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:03] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:52, 01:50](3209 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 01:33](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:26, 03:00](1957 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:03, 02:53](1093 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:48, 03:12](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 16:38] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:46, 01:06](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [39:00, 02:59](1962 MB) + +PASS -- COMPILE 's2swa_intel' [11:25, 10:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [32:52, 01:22](3243 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:52, 02:01](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [20:05, 02:18](3176 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:52, 02:24](3264 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [14:33, 01:28](3192 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:52, 02:00](3480 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:52, 01:23](3236 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [32:53, 01:50](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:52, 01:41](3241 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [32:52, 02:05](3222 MB) + +PASS -- COMPILE 's2sw_intel' [11:25, 10:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:52, 01:42](1935 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:52, 02:18](1996 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:53, 02:22](1987 MB) + +PASS -- COMPILE 's2s_intel' [10:25, 09:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [33:51, 00:55](2941 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [33:51, 01:26](2940 MB) +PASS -- TEST 'cpld_restart_c48_intel' [29:24, 00:53](2338 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [27:46, 01:59](3239 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:41] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:46, 01:46](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:53, 00:57](1116 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:13, 01:54](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:27] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:42, 00:55](1980 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [20:45, 00:43](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:11, 00:22](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:42, 01:12](1577 MB) +PASS -- TEST 'control_latlon_intel' [16:00, 00:18](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:35, 00:48](1571 MB) +PASS -- TEST 'control_c48_intel' [13:32, 00:57](1609 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:19, 01:34](733 MB) +PASS -- TEST 'control_c192_intel' [13:00, 01:21](1691 MB) +PASS -- TEST 'control_c384_intel' [12:38, 02:28](1998 MB) +PASS -- TEST 'control_c384gdas_intel' [12:32, 02:38](1197 MB) +PASS -- TEST 'control_stochy_intel' [11:40, 00:35](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [55:57, 01:12](434 MB) +PASS -- TEST 'control_lndp_intel' [10:48, 01:16](628 MB) +PASS -- TEST 'control_iovr4_intel' [08:31, 00:43](623 MB) +PASS -- TEST 'control_iovr5_intel' [06:55, 01:05](625 MB) +PASS -- TEST 'control_p8_intel' [05:44, 02:33](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:35, 02:16](1870 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 02:04](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [51:15, 02:19](1022 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:43, 01:52](1859 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [51:02, 02:05](1025 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:33, 01:51](1857 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:51](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [00:33, 01:07](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [00:27, 02:33](1931 MB) +PASS -- TEST 'control_p8_mynn_intel' [59:35, 01:49](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [57:55, 02:34](1871 MB) +PASS -- TEST 'regional_control_intel' [56:58, 00:18](873 MB) +PASS -- TEST 'regional_restart_intel' [39:54, 00:48](874 MB) +PASS -- TEST 'regional_decomp_intel' [56:23, 00:20](885 MB) +PASS -- TEST 'regional_2threads_intel' [56:21, 00:56](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [55:07, 00:45](1198 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [54:35, 00:22](880 MB) +PASS -- TEST 'regional_wofs_intel' [54:05, 00:43](1602 MB) + +PASS -- COMPILE 'ifi_intel' [09:23, 08:33] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [24:28, 00:20](870 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [24:28, 01:06](876 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [24:29, 00:17](1002 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [23:17, 01:38](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:18, 01:33](1189 MB) +PASS -- TEST 'rap_decomp_intel' [23:17, 01:35](1010 MB) +PASS -- TEST 'rap_2threads_intel' [23:17, 02:30](1092 MB) +PASS -- TEST 'rap_restart_intel' [54:04, 02:56](888 MB) +PASS -- TEST 'rap_sfcdiff_intel' [23:17, 03:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:17, 02:12](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [54:04, 02:35](886 MB) +PASS -- TEST 'hrrr_control_intel' [23:17, 02:11](1003 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [23:17, 02:21](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [23:18, 02:12](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [53:48, 00:57](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [53:33, 02:34](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [53:14, 01:16](1964 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:15, 00:34](1958 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 08:57] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [23:29, 01:13](970 MB) +PASS -- TEST 'control_ras_intel' [23:29, 00:35](658 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 08:55] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [23:29, 00:37](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [51:05, 02:25](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [51:04, 00:33](865 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 05:41] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:53, 00:26](1610 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:24, 00:36](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [49:12, 00:35](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [48:36, 00:27](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [48:32, 01:02](1125 MB) +PASS -- TEST 'control_ras_debug_intel' [48:10, 01:00](826 MB) +PASS -- TEST 'control_diag_debug_intel' [48:01, 00:50](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [47:36, 00:55](1911 MB) +PASS -- TEST 'regional_debug_intel' [46:59, 00:42](948 MB) +PASS -- TEST 'rap_control_debug_intel' [45:36, 00:56](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [45:00, 00:40](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [44:53, 00:27](1199 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [44:53, 00:25](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:36, 00:15](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [44:24, 00:37](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:06, 01:15](1194 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:44, 00:34](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [43:06, 01:11](1199 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:50, 00:20](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [42:39, 01:14](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [41:39, 01:00](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:10, 01:10](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [40:58, 00:54](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [40:44, 00:19](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [40:41, 01:13](1200 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:38, 02:59](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:35, 03:46] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:34, 01:01](1704 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:42, 08:53] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:28, 00:53](1060 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:03, 02:35](887 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:19, 03:58](888 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:18, 02:59](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [37:05, 02:36](943 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:29, 03:51](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [26:58, 01:53](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:06, 00:18](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:57, 11:48] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [35:43, 00:43](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [29:33, 00:32](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [29:32, 00:23](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:24, 09:03] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:05, 01:36](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [57:17, 03:52] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:11, 00:41](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:11, 00:56](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [26:11, 01:00](1183 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:11, 00:57](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:12, 00:58](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:11, 01:08](1244 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [58:20, 03:49] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:09, 01:11](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [04:21, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [18:59, 01:44](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:59, 00:48](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:57, 02:07](765 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 02:13](792 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 01:58](850 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:02, 01:25](498 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:42, 01:29](524 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [12:41, 00:59](384 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 03:00](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:47, 00:55](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:51, 01:14](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 01:29](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:37, 01:02](418 MB) +PASS -- TEST 'gnv1_nested_intel' [07:17, 03:15](1715 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [57:18, 04:15] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:13, 00:47](629 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [05:23, 13:44] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 01:32](709 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:44, 01:48](799 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [00:16, 10:15] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:12, 01:41](797 MB) + +PASS -- COMPILE 'hafs_all_intel' [48:08, 09:44] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [19:03, 02:11](776 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 02:13](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 00:45](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [40:56, 09:13] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:06, 00:46](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 00:12](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:06, 00:28](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:06, 00:17](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 00:52](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:06, 00:18](756 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:06, 00:54](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:06, 00:13](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:07, 01:26](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:07, 01:34](675 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [20:06, 00:21](755 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [20:06, 00:28](2036 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [20:06, 00:59](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [25:38, 09:12] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:07, 00:17](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [23:56, 00:16](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:56, 00:21](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:46](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:49, 09:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [50:19, 01:36](1930 MB) + +PASS -- COMPILE 'atml_intel' [34:49, 10:38] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:20, 02:14](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [50:20, 02:15](1892 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:50, 00:51](1045 MB) + +PASS -- COMPILE 'atml_debug_intel' [29:43, 04:44] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [54:12, 02:45](1932 MB) + +PASS -- COMPILE 'atmw_intel' [31:45, 09:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:19, 02:06](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [32:46, 09:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [47:19, 01:47](3131 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [47:19, 01:33](3016 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:19, 01:44](3026 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [28:42, 03:48] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [50:27, 02:02](4557 MB) SYNOPSIS: -Starting Date/Time: 20240726 02:17:38 -Ending Date/Time: 20240726 04:39:45 -Total Time: 02h:22m:34s +Starting Date/Time: 20240729 13:15:25 +Ending Date/Time: 20240729 15:38:53 +Total Time: 02h:23m:54s Compiles Completed: 38/38 Tests Completed: 179/179 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index f6cc28edc6..0e6673c834 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,282 +36,282 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_37591 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_15902 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [31:29, 21:46] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:29, 05:41](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [33:28, 23:51] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [31:29, 14:44](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:05, 15:54](1950 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:20, 08:11](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:21, 16:34](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [33:29, 24:00] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [28:10, 14:24](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:25, 12:32] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [30:26, 21:33] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:04, 06:19](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:45, 06:15](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [15:03, 04:17](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:42, 06:23](3258 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:07, 04:13](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:16, 06:06](3731 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:20, 06:16](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:04, 05:19](3539 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 06:20](3237 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:51, 10:00](3895 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:40, 06:55](3622 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:25, 10:29](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:12, 07:09](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:01, 06:05](3215 MB) - -PASS -- COMPILE 's2sw_intel' [29:28, 19:51] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:33, 04:54](1927 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:42, 05:04](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [21:24, 12:10] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:04, 08:35](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [21:26, 11:18] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:41, 05:51](1952 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [25:25, 15:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:48, 05:05](1988 MB) - -PASS -- COMPILE 's2s_intel' [25:24, 16:07] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [51:03, 06:51](2947 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [46:07, 02:27](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:32, 01:38](2339 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:17, 26:35] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:53, 06:31](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:39, 24:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:47, 15:01](1939 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:48, 08:06](1115 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:37, 16:39](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [00:52, 13:42] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:36, 23:57](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [01:25, 17:00] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [08:32, 03:25](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:01, 02:25](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:28](1568 MB) -PASS -- TEST 'control_latlon_intel' [05:00, 02:27](1563 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:28](1569 MB) -PASS -- TEST 'control_c48_intel' [08:00, 06:08](1619 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:36, 05:18](734 MB) -PASS -- TEST 'control_c192_intel' [12:35, 08:42](1682 MB) -PASS -- TEST 'control_c384_intel' [15:38, 08:46](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:47, 07:12](1197 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 01:29](622 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:56](441 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 01:23](621 MB) -PASS -- TEST 'control_iovr4_intel' [04:38, 02:09](619 MB) -PASS -- TEST 'control_iovr5_intel' [03:34, 02:07](621 MB) -PASS -- TEST 'control_p8_intel' [05:27, 03:15](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:07](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 03:18](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [05:17, 02:05](1001 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:16, 03:15](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:16, 02:15](1017 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:14](1853 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:05, 03:02](1946 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:56, 05:04](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:59](1916 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:17](1870 MB) -PASS -- TEST 'merra2_thompson_intel' [06:23, 03:34](1868 MB) -PASS -- TEST 'regional_control_intel' [06:58, 05:01](870 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 03:14](875 MB) -PASS -- TEST 'regional_decomp_intel' [06:55, 05:19](872 MB) -PASS -- TEST 'regional_noquilt_intel' [08:59, 05:06](1196 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:05](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:14](871 MB) -PASS -- TEST 'regional_wofs_intel' [08:54, 05:41](1603 MB) - -PASS -- COMPILE 'rrfs_intel' [59:02, 14:42] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:21, 06:10](1014 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:03, 03:57](1197 MB) -PASS -- TEST 'rap_decomp_intel' [13:21, 06:24](1006 MB) -PASS -- TEST 'rap_2threads_intel' [12:34, 05:41](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:11, 03:14](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:23, 06:08](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:23, 06:24](1002 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:06, 04:38](881 MB) -PASS -- TEST 'hrrr_control_intel' [08:21, 03:25](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:21, 03:28](999 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:31, 02:50](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:44, 01:48](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:24, 06:02](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:08, 07:35](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:08, 07:19](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [52:38, 12:22] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:17, 06:59](962 MB) -PASS -- TEST 'control_ras_intel' [04:47, 02:55](656 MB) - -PASS -- COMPILE 'wam_intel' [51:40, 12:09] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:08, 10:07](1662 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [57:33, 19:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:27, 03:09](1871 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 04:54](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [50:58, 14:21] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:47, 02:36](1612 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:51, 02:31](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:54, 03:02](813 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:53, 02:48](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:47, 04:44](1121 MB) -PASS -- TEST 'control_ras_debug_intel' [06:55, 02:51](817 MB) -PASS -- TEST 'control_diag_debug_intel' [10:29, 02:38](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [05:56, 03:23](1905 MB) -PASS -- TEST 'regional_debug_intel' [18:52, 16:35](940 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 04:42](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [26:34, 04:36](1190 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [26:37, 04:50](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:40](1195 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 04:41](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:58, 04:53](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 04:55](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:30, 04:46](1200 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:39, 04:43](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:39, 04:44](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:30, 04:43](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:31, 04:40](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:32, 07:48](1191 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:39](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:41, 05:57](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:38, 04:41](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:03, 08:10](1190 MB) - -PASS -- COMPILE 'wam_debug_intel' [44:57, 08:03] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:47, 12:48](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:35, 12:42] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:23, 03:41](1061 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:21, 05:13](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:33, 02:59](884 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:25, 04:48](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:30, 02:27](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:24, 02:58](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:09, 03:54](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:36](777 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:37, 16:13] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:05, 01:55](1090 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:12, 01:03](1086 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:34, 01:09](974 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:56, 11:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:55, 03:38](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:56, 08:00] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:36, 04:33](1066 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:35, 04:33](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [16:00, 13:17](1154 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:03, 13:40](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:37, 07:58](1151 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 13:51](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:46, 07:50] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:33, 04:39](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [19:48, 18:57] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:29, 04:37](716 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:52, 05:14](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:57, 06:31](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:08](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:48, 12:18](815 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:19, 04:46](475 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:43, 05:47](488 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:05, 02:19](394 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:39, 06:21](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:59, 03:23](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:06, 03:08](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:15, 03:54](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:30, 01:16](429 MB) -PASS -- TEST 'gnv1_nested_intel' [07:27, 04:07](1720 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:38, 09:24] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:32, 12:26](633 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [29:40, 27:33] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:15, 07:11](633 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:32, 07:20](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [22:20, 20:02] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:37, 05:30](680 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:15, 16:03] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 05:40](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 05:43](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:07, 16:18](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:14, 09:02] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:42, 02:29](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:34](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:21, 02:23](652 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 02:24](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:33, 02:25](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:21, 02:30](770 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:30](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:39, 02:21](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 05:43](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:15, 05:40](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:30](770 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:37, 03:54](2035 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:35, 03:55](2034 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:13, 06:37] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:41, 05:12](739 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:56] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:30](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 02:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:38, 01:15](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:35, 01:13](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:48](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:14, 13:50] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:04](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:13, 12:47] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:43, 03:56](1900 MB) - -PASS -- COMPILE 'atml_intel' [18:15, 15:43] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:10](1888 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:45, 07:28](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:01, 04:17](1038 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:19, 10:17] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:48, 06:06](1936 MB) - -PASS -- COMPILE 'atmw_intel' [16:21, 14:24] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:23](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [14:14, 12:42] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:38, 04:20](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:24, 04:20](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:18, 04:21](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 08:07] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:57, 21:52](4535 MB) +PASS -- COMPILE 's2swa_32bit_intel' [01:45, 23:26] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 05:35](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:45, 25:45] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 14:38](1918 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 15:45](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [17:22, 07:47](1080 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:00, 16:33](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:44, 25:23] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:13, 14:31](1917 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [51:41, 14:06] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [00:44, 22:47] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [10:26, 06:14](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 06:24](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:01](3160 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:17, 06:22](3251 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:59, 04:06](3185 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 05:58](3730 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:12, 06:19](3219 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:12, 05:15](3542 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:07](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 09:33](3894 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:50, 06:29](3625 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 10:28](4524 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 07:01](4669 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:01, 05:55](3210 MB) + +PASS -- COMPILE 's2sw_intel' [58:43, 21:15] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:48](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 04:57](1987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [52:42, 14:36] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:42, 08:15](3301 MB) + +PASS -- COMPILE 's2sw_debug_intel' [51:41, 13:25] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:44](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [55:43, 17:30] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 04:58](2001 MB) + +PASS -- COMPILE 's2s_intel' [55:43, 17:40] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [20:16, 06:43](2943 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [15:10, 02:21](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:39](2344 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:28, 26:16] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:02, 06:02](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [39:27, 21:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:31, 14:54](1942 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:58](1094 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:35, 16:43](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:21, 11:16] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:36, 23:37](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [29:24, 15:34] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [15:35, 03:24](667 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:58, 02:27](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:12, 02:29](1573 MB) +PASS -- TEST 'control_latlon_intel' [12:55, 02:25](1568 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:58, 02:25](1570 MB) +PASS -- TEST 'control_c48_intel' [20:02, 06:03](1621 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [16:31, 05:14](736 MB) +PASS -- TEST 'control_c192_intel' [15:40, 08:41](1689 MB) +PASS -- TEST 'control_c384_intel' [15:36, 08:44](2003 MB) +PASS -- TEST 'control_c384gdas_intel' [15:26, 07:05](1201 MB) +PASS -- TEST 'control_stochy_intel' [06:37, 01:27](627 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:52](440 MB) +PASS -- TEST 'control_lndp_intel' [05:30, 01:22](625 MB) +PASS -- TEST 'control_iovr4_intel' [06:33, 02:07](625 MB) +PASS -- TEST 'control_iovr5_intel' [05:37, 02:08](626 MB) +PASS -- TEST 'control_p8_intel' [07:16, 03:10](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:02](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:16, 03:11](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [04:13, 01:57](1018 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:16, 03:20](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:01](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:26, 03:20](1868 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:24, 03:00](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:07](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:48](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:16, 03:10](1875 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:31](1867 MB) +PASS -- TEST 'regional_control_intel' [06:55, 05:03](874 MB) +PASS -- TEST 'regional_restart_intel' [07:54, 03:02](874 MB) +PASS -- TEST 'regional_decomp_intel' [06:54, 05:15](876 MB) +PASS -- TEST 'regional_noquilt_intel' [06:55, 04:54](1194 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:54](864 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 05:00](883 MB) +PASS -- TEST 'regional_wofs_intel' [07:49, 05:48](1608 MB) + +PASS -- COMPILE 'rrfs_intel' [27:24, 13:20] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [14:09, 06:09](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:48, 03:42](1188 MB) +PASS -- TEST 'rap_decomp_intel' [11:12, 06:23](1006 MB) +PASS -- TEST 'rap_2threads_intel' [11:12, 05:38](1097 MB) +PASS -- TEST 'rap_restart_intel' [05:04, 03:14](881 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:06, 06:11](1006 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 06:22](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:36](882 MB) +PASS -- TEST 'hrrr_control_intel' [06:16, 03:17](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:20](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [22:12, 02:52](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:46](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:07, 06:00](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:21](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 07:06](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [23:16, 11:25] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:54, 06:35](963 MB) +PASS -- TEST 'control_ras_intel' [04:33, 02:52](655 MB) + +PASS -- COMPILE 'wam_intel' [21:16, 11:04] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:11, 09:59](1659 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [27:17, 17:32] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:23, 03:04](1861 MB) +PASS -- TEST 'regional_control_faster_intel' [06:56, 04:43](870 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [20:17, 12:53] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:19, 02:34](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:24, 02:31](1604 MB) +PASS -- TEST 'control_stochy_debug_intel' [13:36, 02:53](810 MB) +PASS -- TEST 'control_lndp_debug_intel' [12:33, 02:40](809 MB) +PASS -- TEST 'control_csawmg_debug_intel' [16:19, 04:40](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [14:34, 02:35](820 MB) +PASS -- TEST 'control_diag_debug_intel' [16:53, 02:34](1677 MB) +PASS -- TEST 'control_debug_p8_intel' [18:19, 03:22](1905 MB) +PASS -- TEST 'regional_debug_intel' [25:18, 16:32](941 MB) +PASS -- TEST 'rap_control_debug_intel' [06:40, 04:41](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:31](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:40](1194 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 04:39](1191 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:38](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:03, 05:00](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:48](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 04:51](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:34, 04:44](1191 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 04:49](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 04:42](1194 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:31](1188 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:36](1187 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:35](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:43](1193 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:27](1193 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:14, 06:46] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:12, 12:22](1702 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:32, 11:09] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:28, 03:41](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:59](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:16](881 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:07, 05:21](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:04](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:35](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:54](795 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:34](773 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:28, 14:58] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:28, 01:55](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:15, 01:04](1085 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:08, 01:07](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:32, 11:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 03:39](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:29, 07:07] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:32](1067 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:26](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [16:42, 13:30](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 13:26](836 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:05](1157 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 13:22](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:25, 07:02] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:53](1095 MB) + +PASS -- COMPILE 'hafsw_intel' [38:31, 18:08] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:31, 04:37](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:13, 05:18](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:30](775 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:39, 11:00](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:06](814 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:41](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:57](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:02, 02:21](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 06:22](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:02, 03:23](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:05](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 03:51](588 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:38, 01:21](431 MB) +PASS -- TEST 'gnv1_nested_intel' [07:21, 04:10](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [28:24, 08:36] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:11, 13:13](634 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [42:33, 26:51] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:12](634 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:14](688 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [33:42, 19:42] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:22](679 MB) + +PASS -- COMPILE 'hafs_all_intel' [26:21, 15:54] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:38, 05:38](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:50, 05:39](742 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:28, 16:14](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:40] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:47, 02:28](757 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:46, 01:34](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:44, 02:20](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:45, 02:22](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:45, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:46, 02:28](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:29](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:21](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 05:38](699 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 05:43](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:29](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:56, 03:55](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 03:53](2037 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:04] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:26, 05:09](738 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:51] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:34, 02:30](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [11:14, 02:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:39, 01:13](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:27, 01:07](458 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:43](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:18, 13:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 03:53](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:20, 12:19] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 03:49](1909 MB) + +PASS -- COMPILE 'atml_intel' [19:20, 15:20] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:06](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 06:58](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:04, 03:55](1038 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:19, 09:54] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:43, 06:20](1938 MB) + +PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:15](1893 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:06](3124 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:18](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:34](3015 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:44] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:59, 21:50](4535 MB) SYNOPSIS: -Starting Date/Time: 20240725 11:13:10 -Ending Date/Time: 20240725 13:43:58 -Total Time: 02h:31m:54s +Starting Date/Time: 20240726 14:27:02 +Ending Date/Time: 20240726 17:11:21 +Total Time: 02h:45m:22s Compiles Completed: 41/41 Tests Completed: 183/183 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 03dce4aae7..e3f3fd2bcd 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,284 +36,284 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_109327 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_205288 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:15, 18:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:27, 07:05](3197 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:15, 23:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [32:18, 13:46](1925 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [40:13, 14:50](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [31:20, 07:07](1063 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:30, 14:46](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:18, 26:17] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [30:42, 13:10](1915 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:12, 13:22] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [38:55, 24:00](1948 MB) - -PASS -- COMPILE 's2swa_intel' [18:15, 18:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [22:05, 07:38](3226 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:13, 07:39](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [37:48, 04:48](3156 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [22:05, 07:44](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [37:48, 04:46](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [24:11, 06:17](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [22:05, 07:40](3222 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [22:57, 06:43](3169 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:03, 07:53](3226 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [30:00, 10:25](3448 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [35:50, 07:13](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [38:28, 12:48](4207 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [34:43, 08:58](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [20:54, 07:28](3206 MB) - -PASS -- COMPILE 's2sw_intel' [22:15, 21:10] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [21:18, 05:03](1939 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:33, 05:20](1997 MB) - -PASS -- COMPILE 's2swa_debug_intel' [14:12, 13:24] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:54, 09:25](3277 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:12, 13:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:44, 05:56](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 16:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [21:32, 05:12](1998 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 15:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [22:13, 06:32](2927 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [17:11, 01:57](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:10, 01:09](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:18, 24:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [39:51, 07:23](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [47:33, 15:09](1934 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 07:34](1109 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:12, 17:21](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:17, 12:02] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [46:18, 26:41](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:15, 14:54] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [38:38, 03:38](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [34:52, 03:10](1566 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [34:51, 03:04](1570 MB) -PASS -- TEST 'control_latlon_intel' [34:45, 03:01](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [35:02, 02:56](1572 MB) -PASS -- TEST 'control_c48_intel' [38:15, 06:30](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [36:47, 05:44](719 MB) -PASS -- TEST 'control_c192_intel' [39:50, 09:59](1683 MB) -PASS -- TEST 'control_c384_intel' [48:08, 18:10](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [46:06, 14:22](1181 MB) -PASS -- TEST 'control_stochy_intel' [31:33, 01:51](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:12](426 MB) -PASS -- TEST 'control_lndp_intel' [29:45, 01:48](622 MB) -PASS -- TEST 'control_iovr4_intel' [28:35, 02:32](620 MB) -PASS -- TEST 'control_iovr5_intel' [28:35, 02:35](620 MB) -PASS -- TEST 'control_p8_intel' [30:02, 03:30](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:19, 03:30](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [30:04, 03:12](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [02:57, 01:39](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:01, 03:20](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:57, 01:38](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [28:59, 03:24](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:05, 02:54](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:41, 05:12](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:02, 04:03](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [12:01, 03:14](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [12:04, 03:30](1866 MB) -PASS -- TEST 'regional_control_intel' [06:38, 04:48](860 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 02:38](848 MB) -PASS -- TEST 'regional_decomp_intel' [11:35, 05:04](860 MB) -PASS -- TEST 'regional_2threads_intel' [08:34, 02:59](1006 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 04:44](1184 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:45, 04:53](858 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:35, 04:53](859 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 06:16](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [13:15, 12:43] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [25:05, 06:46](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [25:14, 04:01](1186 MB) -PASS -- TEST 'rap_decomp_intel' [24:05, 06:59](1009 MB) -PASS -- TEST 'rap_2threads_intel' [23:10, 06:09](1096 MB) -PASS -- TEST 'rap_restart_intel' [06:56, 03:29](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [24:09, 06:45](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [24:58, 07:08](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:00, 04:51](880 MB) -PASS -- TEST 'hrrr_control_intel' [21:04, 03:55](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:52, 03:58](1005 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:04](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:07](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:57, 06:32](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 08:06](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:45](1953 MB) - -PASS -- COMPILE 'csawmg_intel' [13:12, 12:11] -PASS -- TEST 'control_csawmg_intel' [07:36, 06:37](964 MB) -PASS -- TEST 'control_ras_intel' [04:28, 03:19](657 MB) - -PASS -- COMPILE 'wam_intel' [12:12, 11:50] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:57, 11:35](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:13, 21:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:03, 03:08](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [05:33, 04:34](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:12, 12:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:51](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:46, 02:48](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:08](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:34, 04:30](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 02:53](805 MB) -PASS -- TEST 'control_diag_debug_intel' [03:41, 02:58](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:35, 03:09](1893 MB) -PASS -- TEST 'regional_debug_intel' [18:05, 16:14](901 MB) -PASS -- TEST 'rap_control_debug_intel' [05:31, 05:03](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:33, 04:57](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:33, 04:57](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:10, 05:17](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:05, 05:07](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:54, 05:15](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:47, 05:21](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:08, 05:04](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:28, 05:07](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:54, 05:03](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:40, 04:55](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:38, 04:59](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:31, 07:53](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:26, 04:55](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 05:51](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:08](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:56, 08:34](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:12, 08:22] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:05, 13:26](1686 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:12, 13:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:12, 03:51](1048 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:54, 05:54](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:48, 03:25](880 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:50, 05:16](939 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:57, 02:58](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:51, 03:43](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:56, 04:22](781 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:33, 01:43](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:13, 16:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:25, 02:42](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:55, 01:21](1076 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:56, 01:36](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 05:20](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 07:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:30, 05:29](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 05:28](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:12, 14:09](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:12, 14:28](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:05, 08:22](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:09, 14:05](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:10, 08:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:57](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [15:17, 14:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:19, 05:25](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:35, 04:32](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:46, 07:38](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:48](783 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:34, 12:49](797 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:19](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:50, 06:45](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:08, 02:55](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:44, 08:07](433 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:17, 03:51](509 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:27, 03:33](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:05, 04:45](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:41, 01:42](400 MB) -PASS -- TEST 'gnv1_nested_intel' [09:00, 05:48](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:14, 09:26] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:40, 12:59](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:15, 21:29] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:17, 07:45](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:18, 07:49](787 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:10] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:15, 06:08](783 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:26] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:22, 06:19](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:11, 06:18](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:19, 20:07](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:13, 13:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:25, 02:25](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:28, 02:29](643 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:28, 02:32](642 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:26, 02:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:22, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:26, 02:29](640 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:03, 06:05](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:02, 06:12](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:22, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 04:39](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:40](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:12, 07:24] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:30, 05:27](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:12, 11:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:26, 02:38](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 02:36] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:01, 01:56](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:54, 01:37](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:47, 01:02](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:14, 12:56] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:33, 04:06](1926 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:14, 12:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:51, 04:08](1913 MB) - -PASS -- COMPILE 'atml_intel' [14:14, 13:31] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:49, 08:28](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:49, 08:12](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:47, 03:41](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:13, 09:04] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:39, 06:10](1931 MB) - -PASS -- COMPILE 'atmw_intel' [14:12, 13:30] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:03, 02:18](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 12:15] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:26, 06:56](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:37](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:17, 06:37](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:12, 08:01] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:34, 18:12](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:17, 19:04] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:37, 07:27](3200 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:12] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:45, 14:07](1924 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:40, 14:10](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 06:50](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 15:09](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:06, 13:40](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:42, 24:57](1947 MB) + +PASS -- COMPILE 's2swa_intel' [18:13, 18:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:43, 08:37](3228 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:14, 08:20](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:22, 05:05](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:43, 08:29](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 05:31](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:38, 07:04](3464 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:26, 08:34](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:28, 07:50](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:48, 09:01](3225 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [23:10, 10:37](3450 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:38, 07:19](3609 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [28:09, 13:09](4208 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 09:20](4359 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 08:28](3208 MB) + +PASS -- COMPILE 's2sw_intel' [18:13, 17:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:17, 05:58](1930 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 06:26](1994 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:16, 13:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:10, 10:00](3278 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:09] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:28](1958 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:17, 19:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:12, 05:24](1999 MB) + +PASS -- COMPILE 's2s_intel' [16:13, 16:03] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:31](2926 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:44, 02:06](2931 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:40, 01:09](2325 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:19, 29:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 08:00](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 25:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:26](1935 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 07:56](1101 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:53, 17:57](1910 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:16, 17:38] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 27:21](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:20] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:48, 03:54](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:34](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 03:16](1570 MB) +PASS -- TEST 'control_latlon_intel' [07:55, 03:24](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 03:33](1572 MB) +PASS -- TEST 'control_c48_intel' [11:00, 06:31](1596 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 05:43](719 MB) +PASS -- TEST 'control_c192_intel' [15:11, 10:11](1682 MB) +PASS -- TEST 'control_c384_intel' [23:45, 18:14](1979 MB) +PASS -- TEST 'control_c384gdas_intel' [21:43, 14:42](1179 MB) +PASS -- TEST 'control_stochy_intel' [03:07, 01:55](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:20](426 MB) +PASS -- TEST 'control_lndp_intel' [02:56, 01:53](622 MB) +PASS -- TEST 'control_iovr4_intel' [04:20, 02:40](620 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:40](620 MB) +PASS -- TEST 'control_p8_intel' [09:38, 04:01](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:31, 04:04](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:47, 04:02](1867 MB) +PASS -- TEST 'control_restart_p8_intel' [05:22, 01:51](1014 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:43, 03:55](1858 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:59, 02:03](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:43, 03:57](1861 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:11](1950 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:31, 05:38](1860 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:30](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:04, 03:37](1868 MB) +PASS -- TEST 'merra2_thompson_intel' [06:03, 03:45](1866 MB) +PASS -- TEST 'regional_control_intel' [06:02, 04:54](866 MB) +PASS -- TEST 'regional_restart_intel' [05:16, 02:43](860 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 05:16](860 MB) +PASS -- TEST 'regional_2threads_intel' [06:00, 03:16](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [08:10, 05:09](1181 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:25, 05:10](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:55](866 MB) +PASS -- TEST 'regional_wofs_intel' [07:14, 06:02](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [16:14, 15:25] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:19, 06:56](1007 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 04:10](1181 MB) +PASS -- TEST 'rap_decomp_intel' [10:11, 07:22](1007 MB) +PASS -- TEST 'rap_2threads_intel' [09:49, 06:21](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:51, 03:35](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:59, 06:52](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 07:11](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:39, 05:03](877 MB) +PASS -- TEST 'hrrr_control_intel' [08:02, 04:00](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 03:59](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 03:17](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:57](834 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:47, 06:42](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:18](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:58](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [15:14, 14:30] +PASS -- TEST 'control_csawmg_intel' [08:18, 06:48](966 MB) +PASS -- TEST 'control_ras_intel' [04:52, 03:24](659 MB) + +PASS -- COMPILE 'wam_intel' [15:16, 14:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:02, 12:02](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [23:16, 23:01] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:52, 03:44](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 05:02](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 13:14] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 03:03](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:58](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:59, 03:23](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:41, 02:50](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:57, 04:36](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:54, 02:55](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:11](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [05:33, 03:30](1892 MB) +PASS -- TEST 'regional_debug_intel' [18:37, 16:30](901 MB) +PASS -- TEST 'rap_control_debug_intel' [06:13, 05:03](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 05:02](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 05:05](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:06](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:27](1183 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:10](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:20, 05:16](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:58, 05:20](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:58, 05:10](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:00, 05:03](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:10, 05:05](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:56, 08:03](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:08, 05:00](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:15, 06:10](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:09](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:30](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:14, 09:49] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:26, 13:36](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 04:02](1050 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:15](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:25](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:20](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:40](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:37](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:23](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:50, 02:09](767 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:15, 23:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:12, 02:31](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:20, 01:20](1080 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:51](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:13, 16:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:41](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 10:39] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 05:01](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:56](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:41, 14:08](1140 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:42](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:25](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 14:10](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 16:53] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:42, 04:59](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [26:17, 25:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:23](708 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:51, 04:34](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:53](755 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:41](785 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:47, 12:54](801 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:45, 05:25](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:47](495 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:54](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:03](435 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:49](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 03:40](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:40](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:14, 01:43](402 MB) +PASS -- TEST 'gnv1_nested_intel' [09:23, 05:54](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [17:17, 16:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 13:06](601 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:25] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:44](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:24, 07:48](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [26:17, 25:57] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:19, 06:52](785 MB) + +PASS -- COMPILE 'hafs_all_intel' [25:16, 24:19] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:33](737 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:33, 06:19](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:34, 20:10](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:17, 15:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:29](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:36](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:31, 02:41](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:39](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:29, 02:28](645 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:21, 06:15](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:28, 06:03](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:37](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:40](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [12:20, 11:16] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:25](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 14:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:38](752 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [07:18, 05:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:16, 02:20](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:13, 01:32](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:51, 01:14](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:46] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:12, 04:18](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:14, 16:10] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:02](1911 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 16:58] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:05, 08:14](1893 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:05, 08:13](1893 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:14, 04:12](1046 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:12, 11:41] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:43](1930 MB) + +PASS -- COMPILE 'atmw_intel' [16:13, 15:27] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 03:03](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [16:16, 15:53] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:40](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:32, 07:16](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:25, 07:07](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:13, 14:51] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:44, 18:18](4486 MB) SYNOPSIS: -Starting Date/Time: 20240724 21:15:42 -Ending Date/Time: 20240724 23:27:23 -Total Time: 02h:12m:55s +Starting Date/Time: 20240726 14:39:28 +Ending Date/Time: 20240726 16:26:22 +Total Time: 01h:48m:17s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 354808eb20..d7f6ca0801 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,15 +1,15 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -25,381 +25,380 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:12, 13:55] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:20, 05:40](3300 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 16:43] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:06, 17:25](1969 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:37, 18:21](2133 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:26, 08:25](1243 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:15, 19:34](1858 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:27] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:45, 17:03](1953 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:11] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:11, 22:44](1902 MB) - -PASS -- COMPILE 's2swa_intel' [14:11, 13:54] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:18, 06:16](3313 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:27, 06:14](3315 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:35, 03:40](3235 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:16, 06:05](3326 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:37, 03:38](3249 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:10, 05:35](3609 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:10, 05:56](3315 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:14, 04:49](3193 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:23, 06:00](3327 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:20, 10:36](3572 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:25, 06:39](3606 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [19:16, 10:08](4276 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:14, 06:29](4350 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:15, 05:30](3301 MB) - -PASS -- COMPILE 's2sw_intel' [13:12, 13:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:06, 04:53](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:38](2032 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:11] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:28, 08:48](3330 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:48] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:01, 05:52](1980 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:12, 12:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:23](2028 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 12:23] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:52, 09:07](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:50, 02:41](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:33](2492 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:21, 05:42](3323 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:13, 16:23] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:14, 17:50](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:35, 08:40](1255 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:15, 19:56](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 04:53] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:12, 25:09](1921 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 12:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:29, 03:25](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 02:53](1578 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:07](1588 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 02:54](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:00, 02:57](1581 MB) -PASS -- TEST 'control_c48_intel' [08:56, 07:28](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:27](852 MB) -PASS -- TEST 'control_c192_intel' [14:30, 10:41](1718 MB) -PASS -- TEST 'control_c384_intel' [14:43, 10:38](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [13:57, 08:10](1377 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 01:39](634 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:30, 00:59](486 MB) -PASS -- TEST 'control_lndp_intel' [03:27, 01:35](639 MB) -PASS -- TEST 'control_iovr4_intel' [04:31, 02:28](634 MB) -PASS -- TEST 'control_iovr5_intel' [04:30, 02:29](637 MB) -PASS -- TEST 'control_p8_intel' [06:15, 03:07](1871 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:11, 03:09](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:58, 03:10](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:47](1117 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 03:03](1868 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1141 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:47, 03:10](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:52, 02:56](1962 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:50, 05:30](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:56, 04:07](1926 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:02, 03:07](1880 MB) -PASS -- TEST 'merra2_thompson_intel' [04:57, 03:27](1889 MB) -PASS -- TEST 'regional_control_intel' [06:39, 05:24](1082 MB) -PASS -- TEST 'regional_restart_intel' [03:52, 02:58](1083 MB) -PASS -- TEST 'regional_decomp_intel' [06:39, 05:42](1066 MB) -PASS -- TEST 'regional_2threads_intel' [04:40, 03:29](1072 MB) -PASS -- TEST 'regional_noquilt_intel' [06:42, 05:16](1377 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:20](1090 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:37, 05:23](1082 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 06:52](1898 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:44, 07:45](1086 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:20, 04:15](1285 MB) -PASS -- TEST 'rap_decomp_intel' [09:43, 08:08](1022 MB) -PASS -- TEST 'rap_2threads_intel' [08:40, 07:18](1168 MB) -PASS -- TEST 'rap_restart_intel' [05:46, 04:06](1086 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:45](1087 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:41, 08:08](1019 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:48, 05:56](1112 MB) -PASS -- TEST 'hrrr_control_intel' [05:04, 04:00](1019 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 04:08](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:42](1093 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:36, 02:10](981 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:37](1064 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:28](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:31, 09:09](2049 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 10:57] -PASS -- TEST 'control_csawmg_intel' [07:41, 06:10](1007 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:18](731 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:33] -PASS -- TEST 'control_csawmg_gnu' [09:41, 08:23](746 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:33] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:01, 11:10](1642 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 14:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:03, 02:51](1874 MB) -PASS -- TEST 'regional_control_faster_intel' [05:49, 04:52](1078 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:21] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 02:39](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:46](1589 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:13](788 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:49](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:42, 04:23](1111 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:54](803 MB) -PASS -- TEST 'control_diag_debug_intel' [03:51, 02:50](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [04:44, 03:09](1885 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:45](1075 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:04](1184 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:27, 04:54](1175 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:57](1186 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 05:09](1179 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:24, 04:59](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:21](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:25, 05:13](1182 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:05](1181 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:23, 05:02](1187 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:08](1181 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 05:00](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:09](1183 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:25, 08:15](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:56](1182 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:27, 06:04](1181 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:58](1181 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:46, 08:53](1195 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:55] -PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:22](712 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 03:50] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:56, 13:57](1668 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:09, 04:00](1153 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:28](1024 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](976 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:37, 06:06](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:36, 03:10](947 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:37, 03:36](915 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:43, 04:54](1018 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:29, 01:57](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:13, 14:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:08](1198 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:52, 00:59](1103 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:47, 01:18](1095 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 10:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:13](970 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:59](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:27, 04:55](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [15:54, 14:52](1188 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:47](919 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:50, 08:26](1121 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:51, 14:40](1257 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:45] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 05:09](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [13:15, 12:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:22, 05:20](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:26](1094 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:42, 07:07](812 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:21, 13:41](844 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:35, 15:25](867 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 05:33](490 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:30, 07:03](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:47, 02:41](361 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:52, 07:28](453 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:50, 03:52](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:53, 03:37](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:55, 04:15](569 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:14](385 MB) -PASS -- TEST 'gnv1_nested_intel' [06:35, 04:07](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:43] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:15](549 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:12, 16:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:04, 08:48](626 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:11, 08:51](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:12, 12:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:20, 06:36](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:37] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:24, 06:36](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:34](798 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:18](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:22, 02:49](1145 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:23, 01:41](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:41](1015 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:51](1001 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:20, 02:38](1011 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:22, 02:40](1138 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:43](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:58](1006 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:40, 06:10](1058 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:28, 06:13](1035 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:46](1142 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:59](2503 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:22, 04:27](2493 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:44] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1054 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:42] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:21, 02:41](1149 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:12, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:32, 00:47](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:51](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:34](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:25] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:18, 03:47](1981 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:24] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:12, 03:38](1948 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:21](1845 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:07, 04:31](1846 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:26](1086 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 05:00] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:01, 05:51](1855 MB) - -PASS -- COMPILE 'atmw_intel' [12:13, 12:00] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:51, 01:51](1922 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:02, 04:11](3177 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:01, 04:59](3077 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:47, 05:21](3078 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:13, 04:02] ( 884 warnings 6 remarks ) -FAILED: TEST TIMED OUT -- TEST 'regional_atmaq_debug_intel' [, ]( MB) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:52] -PASS -- TEST 'control_c48_gnu' [12:44, 11:15](1519 MB) -PASS -- TEST 'control_stochy_gnu' [05:24, 03:19](481 MB) -PASS -- TEST 'control_ras_gnu' [06:25, 04:47](485 MB) -PASS -- TEST 'control_p8_gnu' [06:58, 04:47](1444 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:55, 04:42](1455 MB) -PASS -- TEST 'control_flake_gnu' [11:27, 10:29](525 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:23] -PASS -- TEST 'rap_control_gnu' [11:33, 10:49](838 MB) -PASS -- TEST 'rap_decomp_gnu' [12:37, 11:05](834 MB) -PASS -- TEST 'rap_2threads_gnu' [10:46, 09:56](917 MB) -PASS -- TEST 'rap_restart_gnu' [06:43, 05:31](563 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:39, 10:50](801 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:35, 11:03](826 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](570 MB) -PASS -- TEST 'hrrr_control_gnu' [06:47, 05:39](797 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:39, 05:38](784 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:38, 05:12](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:40, 05:38](833 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:58](545 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:37, 02:51](639 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:46, 10:48](795 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:55] -PASS -- TEST 'control_diag_debug_gnu' [03:00, 01:39](1251 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:42](719 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:41](799 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:26, 02:34](800 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:24, 02:40](805 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:42](800 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:47, 02:54](886 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:26, 04:09](800 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:41](797 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:37](796 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:26, 01:39](433 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:25, 01:46](426 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:46, 01:55](1430 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:26, 02:42](807 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:25, 02:57](801 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:25](814 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:45] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:20] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:22](692 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 05:02](691 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:42, 08:38](744 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:32](738 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:30, 05:05](688 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:55](540 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:28, 02:42](520 MB) -PASS -- TEST 'conus13km_control_gnu' [05:11, 03:16](859 MB) -PASS -- TEST 'conus13km_2threads_gnu' [06:52, 05:49](866 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:48, 01:51](542 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:48, 05:44](714 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:48] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:30, 02:37](692 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:28, 02:38](690 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:01, 07:07](873 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:17](560 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 08:00](875 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 07:01](929 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:48] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:27, 02:37](718 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:48] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:25] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:16, 07:31](1525 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 05:49](3301 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:15] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 19:03](1944 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:10, 19:56](2137 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 09:07](1256 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 20:07](1870 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:45] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:18](1972 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:33] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:18, 23:01](1941 MB) + +PASS -- COMPILE 's2swa_intel' [14:12, 13:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:15, 07:19](3362 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:26, 07:21](3333 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:42, 03:43](3260 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:15, 07:22](3374 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:52](3292 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:12, 07:11](3619 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:22](3319 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:46](3225 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 07:37](3321 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:26, 11:43](3522 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [17:50, 10:50](3637 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [24:09, 11:26](4300 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 07:45](4398 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:32](3301 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 13:04] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:53](1989 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:27](2039 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:07, 08:30](3409 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:19](2005 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:27] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:32](2055 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:45, 09:35](3107 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:43](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:34](2513 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:51] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:39](3331 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:31] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 18:45](2020 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 09:31](1274 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 21:02](1925 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:57] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:20, 25:18](1965 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 13:03] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:34, 03:24](706 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 03:06](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:12](1618 MB) +PASS -- TEST 'control_latlon_intel' [06:57, 03:02](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:09](1583 MB) +PASS -- TEST 'control_c48_intel' [08:57, 07:36](1758 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 06:26](863 MB) +PASS -- TEST 'control_c192_intel' [13:37, 10:59](1746 MB) +PASS -- TEST 'control_c384_intel' [17:02, 12:15](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [14:05, 08:38](1402 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:40](653 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:16](501 MB) +PASS -- TEST 'control_lndp_intel' [04:29, 01:36](662 MB) +PASS -- TEST 'control_iovr4_intel' [04:32, 02:33](658 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:31](657 MB) +PASS -- TEST 'control_p8_intel' [07:20, 03:17](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 03:13](1892 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:09](1906 MB) +PASS -- TEST 'control_restart_p8_intel' [05:20, 03:00](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:25, 03:16](1894 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:49, 03:37](1155 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:39](1894 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:04, 03:21](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:09, 06:02](1901 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 05:07](1940 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:13, 03:46](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [06:15, 04:10](1901 MB) +PASS -- TEST 'regional_control_intel' [08:58, 07:10](1106 MB) +PASS -- TEST 'regional_restart_intel' [04:57, 03:34](1098 MB) +PASS -- TEST 'regional_decomp_intel' [08:51, 08:03](1109 MB) +PASS -- TEST 'regional_2threads_intel' [08:50, 07:17](1104 MB) +PASS -- TEST 'regional_noquilt_intel' [09:36, 07:46](1397 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:14, 08:29](1108 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 08:09](1104 MB) +PASS -- TEST 'regional_wofs_intel' [10:48, 09:28](1914 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 11:41] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:01, 08:43](1116 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:14, 05:56](1296 MB) +PASS -- TEST 'rap_decomp_intel' [10:57, 09:22](1037 MB) +PASS -- TEST 'rap_2threads_intel' [10:49, 09:07](1189 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 04:29](1111 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:57, 09:27](1107 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:57, 09:48](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 07:06](1136 MB) +PASS -- TEST 'hrrr_control_intel' [06:04, 05:01](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 05:16](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 05:28](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:47](1009 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:56, 08:42](1102 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:35, 10:30](1982 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:34, 09:38](2073 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] +PASS -- TEST 'control_csawmg_intel' [09:02, 06:44](1018 MB) +PASS -- TEST 'control_ras_intel' [05:32, 03:59](745 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] +PASS -- TEST 'control_csawmg_gnu' [10:40, 09:36](750 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 10:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:07, 13:36](1676 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 16:22] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:17, 03:47](1899 MB) +PASS -- TEST 'regional_control_faster_intel' [08:04, 06:37](1098 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:03] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:12](1625 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:18](1623 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:23](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:28, 03:03](831 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:47](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 03:19](843 MB) +PASS -- TEST 'control_diag_debug_intel' [05:00, 03:15](1688 MB) +PASS -- TEST 'control_debug_p8_intel' [04:45, 03:21](1915 MB) +PASS -- TEST 'regional_debug_intel' [19:43, 18:21](1111 MB) +PASS -- TEST 'rap_control_debug_intel' [06:27, 05:13](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:50](1214 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:59](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:56](1215 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:28, 04:58](1223 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:12, 05:29](1302 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:11](1218 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 05:11](1225 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:02](1225 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1226 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:52](1213 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:09](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 09:00](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:30](1213 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:42](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:19](1222 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:47](1217 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 06:03] +PASS -- TEST 'control_csawmg_debug_gnu' [05:48, 02:29](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:13, 05:17] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:52, 14:12](1683 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:12] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:59](1171 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 07:30](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 04:30](991 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 07:10](1091 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:20](969 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 04:45](924 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1042 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 01:54](933 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 03:15](1213 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:53](1123 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:15](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:11] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 05:19](984 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:05] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 06:08](1104 MB) +PASS -- TEST 'conus13km_debug_intel' [17:48, 16:14](1241 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 16:25](957 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:32](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:47](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:03](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [15:16, 14:40] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:02](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 05:53](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:28, 06:56](835 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:32](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:37, 15:05](877 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:28](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:40](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:42](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:37](477 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:40](533 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:32](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:05](599 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:14](406 MB) +PASS -- TEST 'gnv1_nested_intel' [06:30, 04:07](1759 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:13, 05:02] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:13](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:51](645 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:04, 08:58](745 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:16, 15:34] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:02, 06:33](734 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:12, 13:49] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](847 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:32](821 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:13](1208 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:12] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1147 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1111 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1024 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:40](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:38](1046 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:41](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:43](1172 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 06:40](1074 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:28](1056 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:41](1164 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:53](2466 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2523 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:11] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1100 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:48] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:38](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:45](263 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](324 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:48](1990 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 13:12] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:41](1942 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:49] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:25](1852 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:28](1869 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:30](1104 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:12, 07:05] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:54](1892 MB) + +PASS -- COMPILE 'atmw_intel' [14:13, 13:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:58](1909 MB) + +PASS -- COMPILE 'atmaero_intel' [13:13, 12:38] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:11](3214 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 05:00](3104 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:54](3116 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:41] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:48] +PASS -- TEST 'control_c48_gnu' [15:40, 11:09](1537 MB) +PASS -- TEST 'control_stochy_gnu' [05:22, 03:24](505 MB) +PASS -- TEST 'control_ras_gnu' [06:23, 04:46](507 MB) +PASS -- TEST 'control_p8_gnu' [05:55, 04:49](1458 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:44](1459 MB) +PASS -- TEST 'control_flake_gnu' [11:25, 10:30](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:26] +PASS -- TEST 'rap_control_gnu' [11:38, 10:52](852 MB) +PASS -- TEST 'rap_decomp_gnu' [11:38, 10:54](849 MB) +PASS -- TEST 'rap_2threads_gnu' [12:34, 09:52](929 MB) +PASS -- TEST 'rap_restart_gnu' [07:42, 05:26](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:44](818 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 10:57](814 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 07:56](581 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:38](811 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:29](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:40, 05:02](919 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:36](847 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:31, 02:53](563 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:50](657 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:42, 10:25](810 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:40] +PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:44](1276 MB) +PASS -- TEST 'regional_debug_gnu' [11:40, 10:11](734 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:42](822 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:37](821 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:27, 02:39](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:42](827 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:52](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:11](822 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:40](823 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:40](822 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:42](456 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:49](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [04:40, 01:47](1438 MB) +PASS -- TEST 'rap_flake_debug_gnu' [05:26, 02:39](823 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:25, 02:54](824 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:20](828 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 05:33] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:34, 09:19](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:56](707 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:28](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:30](745 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:10](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 06:52](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:27, 02:29](541 MB) +PASS -- TEST 'conus13km_control_gnu' [06:59, 03:11](876 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:51](880 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](554 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 11:49] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:39, 05:51](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:41] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:36](715 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:59](892 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 06:59](577 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [09:43, 07:46](892 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:58](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:35] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:40](739 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 17:49] + +PASS -- COMPILE 's2s_gnu' [18:12, 17:10] +FAILED: TEST TIMED OUT -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] -PASS -- COMPILE 's2sw_pdlib_gnu' [16:12, 16:07] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:03, 19:20](1439 MB) +PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:04] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:58, 21:09](1447 MB) -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:12] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:56, 13:05](1436 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:56, 12:44](1473 MB) -PASS -- COMPILE 'datm_cdeps_gnu' [16:14, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:23, 03:06](681 MB) +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:24] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:54](690 MB) SYNOPSIS: -Starting Date/Time: 20240724 21:18:58 -Ending Date/Time: 20240724 23:09:38 -Total Time: 01h:51m:29s +Starting Date/Time: 20240726 18:33:36 +Ending Date/Time: 20240726 20:24:37 +Total Time: 01h:51m:18s Compiles Completed: 57/57 -Tests Completed: 244/245 +Tests Completed: 243/244 Failed Tests: -* TEST regional_atmaq_debug_intel: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3718900/regional_atmaq_debug_intel/err +* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054/cpld_control_nowave_noaero_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -409,3 +408,54 @@ If you are using this log as a pull request verification, please commit 'test_ch Result: FAILURE ====END OF HERA REGRESSION TESTING LOG==== +====START OF HERA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3626519 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2s_gnu' [17:12, 16:33] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:18](1521 MB) + +SYNOPSIS: +Starting Date/Time: 20240729 06:07:25 +Ending Date/Time: 20240729 06:35:11 +Total Time: 00h:27m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF HERA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 388c0dc873..a3d52df0cc 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: -17a524e83223725150b6c1bec3ac9e55ac6876a8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,375 +36,375 @@ 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-20240724 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_859761 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1943568 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:10, 11:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 08:20](2131 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:10, 21:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [15:01, 13:17](2000 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:18, 13:57](2324 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:31](1314 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:45, 15:02](1921 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:10, 17:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:27, 13:03](1991 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:57] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:32](1979 MB) - -PASS -- COMPILE 's2swa_intel' [12:10, 11:19] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:57, 07:41](2190 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:01, 07:47](2183 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:13, 04:20](1960 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:57, 07:51](2204 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:12, 05:19](1749 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:50, 09:08](2551 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:53, 08:19](2172 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:58, 07:20](2098 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:02, 08:30](2195 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:36, 14:53](2996 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:09, 06:53](2932 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:37, 10:48](3809 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:24, 06:41](3651 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [06:52, 05:54](2152 MB) - -PASS -- COMPILE 's2sw_intel' [13:10, 12:50] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:47, 07:22](2021 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:34](2081 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:57] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [09:00, 07:10](2216 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:18] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:51, 04:49](2059 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:10, 09:27] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:47, 04:08](2091 MB) - -PASS -- COMPILE 's2s_intel' [10:10, 09:12] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:34, 07:01](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:37, 02:06](3076 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:35, 01:19](2518 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:10, 17:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:57, 08:15](2194 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:10, 16:44] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:47, 14:21](2046 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:53, 07:22](1391 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:56, 16:21](1971 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 05:19] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:53, 23:05](2022 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:10, 09:09] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:19, 02:55](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:26](1611 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:36, 02:32](1612 MB) -PASS -- TEST 'control_latlon_intel' [03:27, 02:28](1614 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:30](1614 MB) -PASS -- TEST 'control_c48_intel' [07:36, 07:00](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:25, 05:49](845 MB) -PASS -- TEST 'control_c192_intel' [09:41, 09:04](1772 MB) -PASS -- TEST 'control_c384_intel' [11:22, 09:38](2044 MB) -PASS -- TEST 'control_c384gdas_intel' [09:43, 07:19](1527 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:27](667 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:26, 00:54](549 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:21](677 MB) -PASS -- TEST 'control_iovr4_intel' [02:26, 02:05](674 MB) -PASS -- TEST 'control_iovr5_intel' [03:19, 02:39](670 MB) -PASS -- TEST 'control_p8_intel' [04:48, 03:23](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 03:08](1912 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:49, 03:23](1900 MB) -PASS -- TEST 'control_restart_p8_intel' [04:46, 02:18](1156 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:40, 03:23](1901 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:43, 02:29](1201 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:43, 02:44](1885 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:35, 02:29](1997 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:28, 04:33](1907 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 03:34](1974 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:46, 02:38](1908 MB) -PASS -- TEST 'merra2_thompson_intel' [03:52, 02:58](1916 MB) -PASS -- TEST 'regional_control_intel' [05:26, 04:44](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:24, 03:10](1176 MB) -PASS -- TEST 'regional_decomp_intel' [05:26, 04:56](1187 MB) -PASS -- TEST 'regional_2threads_intel' [03:29, 03:07](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [05:31, 04:30](1516 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:29, 04:39](1196 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:23, 04:42](1201 MB) -PASS -- TEST 'regional_wofs_intel' [07:24, 05:43](2077 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:50] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:49, 06:44](1199 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:45, 03:46](1412 MB) -PASS -- TEST 'rap_decomp_intel' [07:43, 06:58](1130 MB) -PASS -- TEST 'rap_2threads_intel' [07:43, 06:13](1372 MB) -PASS -- TEST 'rap_restart_intel' [04:59, 03:31](1141 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:48, 06:41](1223 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:52, 07:01](1157 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:52, 05:04](1186 MB) -PASS -- TEST 'hrrr_control_intel' [06:42, 03:28](1072 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 03:33](1050 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 03:16](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:27, 01:54](1020 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:54, 06:34](1200 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:12](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 07:45](2180 MB) - -PASS -- COMPILE 'csawmg_intel' [08:10, 07:51] -PASS -- TEST 'control_csawmg_intel' [08:29, 06:04](1046 MB) -PASS -- TEST 'control_ras_intel' [05:17, 02:52](839 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 04:09] -PASS -- TEST 'control_csawmg_gnu' [08:38, 07:30](1071 MB) - -PASS -- COMPILE 'wam_intel' [07:10, 07:06] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:33, 09:46](1681 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 14:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:45, 03:45](1905 MB) -PASS -- TEST 'regional_control_faster_intel' [07:25, 05:20](1203 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:10, 05:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:28, 02:17](1648 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:31, 02:24](1635 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:16, 02:38](840 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:16, 02:21](840 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:23, 04:24](1160 MB) -PASS -- TEST 'control_ras_debug_intel' [03:17, 02:22](839 MB) -PASS -- TEST 'control_diag_debug_intel' [03:29, 02:28](1701 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 03:13](1936 MB) -PASS -- TEST 'regional_debug_intel' [17:24, 15:50](1150 MB) -PASS -- TEST 'rap_control_debug_intel' [05:19, 04:33](1231 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:21, 04:14](1225 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 04:20](1239 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:16, 04:29](1231 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:16, 04:28](1229 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:25, 04:24](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:17, 04:16](1234 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 04:25](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:26](1243 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 04:13](1230 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:17, 04:04](1235 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:19](1227 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 06:46](1232 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:17, 04:12](1228 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:17, 05:11](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:18, 04:20](1226 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:49, 07:31](1232 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 04:55] -PASS -- TEST 'control_csawmg_debug_gnu' [03:29, 02:55](1055 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:10, 03:18] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 07:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:16](1275 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:30, 06:19](1171 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:56, 02:53](1042 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:46, 06:05](1289 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:35, 02:39](1043 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:34, 02:59](1001 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:49, 04:49](1116 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 01:37](947 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:37, 01:45](1299 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:28, 00:44](1214 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:05](1151 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:33, 03:44](1084 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:18] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:20, 04:35](1111 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:20, 04:27](1116 MB) -PASS -- TEST 'conus13km_debug_intel' [12:31, 11:55](1353 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:30, 12:14](1015 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [08:27, 07:17](1257 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:34, 12:14](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:11, 02:53] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:19, 04:20](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:41] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:21](861 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:24, 05:37](1278 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 07:05](943 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:22](987 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:10, 15:18](1002 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:46, 06:05](603 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:17, 08:23](628 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:39, 03:17](444 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 08:54](557 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:44, 04:22](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:37, 04:10](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:57](671 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:26, 01:31](460 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 03:51] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:42, 11:52](656 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:42] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 15:24](752 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:51, 16:03](850 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 10:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:55, 09:42](919 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:05, 05:43](947 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:03, 05:44](910 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:44, 16:27](1344 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:10] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:15, 02:09](1138 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:18](1105 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:14, 02:05](1025 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:15, 02:08](1019 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 02:11](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:11](1167 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:13](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:14, 02:07](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1169 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:48, 04:53](1160 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:10](1148 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:16, 03:00](2462 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:15, 03:04](2457 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [03:11, 03:07] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:15, 05:09](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [06:11, 05:41] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:11](1161 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:48] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:27, 00:51](340 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:22, 00:46](559 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:20, 00:32](561 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:10, 08:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:45, 03:40](2025 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 07:40] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [03:52, 03:09](1996 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 08:54] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:54, 05:51](1899 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:51, 05:47](1907 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:34, 03:04](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:31] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:49, 05:47](1925 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:43] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:49, 01:39](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:34] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:46, 03:46](2034 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:45, 04:15](1815 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:28](1821 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:21] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:24, 17:11](4607 MB) - -PASS -- COMPILE 'atm_gnu' [07:10, 05:32] -PASS -- TEST 'control_c48_gnu' [10:32, 09:26](1570 MB) -PASS -- TEST 'control_stochy_gnu' [03:19, 02:22](731 MB) -PASS -- TEST 'control_ras_gnu' [04:17, 03:52](733 MB) -PASS -- TEST 'control_p8_gnu' [04:43, 03:55](1734 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:36, 03:46](1758 MB) -PASS -- TEST 'control_flake_gnu' [05:19, 04:38](809 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:36] -PASS -- TEST 'rap_control_gnu' [09:31, 08:10](1101 MB) -PASS -- TEST 'rap_decomp_gnu' [09:30, 08:10](1086 MB) -PASS -- TEST 'rap_2threads_gnu' [08:49, 07:13](1124 MB) -PASS -- TEST 'rap_restart_gnu' [05:54, 04:17](888 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [09:45, 08:35](1085 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:31, 08:28](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:43, 06:14](885 MB) -PASS -- TEST 'hrrr_control_gnu' [05:34, 04:13](1071 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:31, 04:12](1138 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:43, 03:46](1046 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:31, 04:13](1071 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:24, 02:17](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:17, 02:12](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:50, 08:08](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 08:36] -PASS -- TEST 'control_diag_debug_gnu' [02:33, 01:18](1625 MB) -PASS -- TEST 'regional_debug_gnu' [07:26, 07:03](1118 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:17, 02:05](1102 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:18, 02:07](1092 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:17, 02:05](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 02:09](1100 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:23](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:24](1100 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:16, 02:04](1101 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:16, 02:04](1100 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:13](730 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:23](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:26, 01:28](1707 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:17, 02:09](1101 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:26](1108 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:31](1102 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 04:15] -PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:25](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 06:34] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:32, 07:26](962 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:44, 04:01](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:43, 06:52](995 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:32](898 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [04:35, 04:02](952 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:52, 05:47](860 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:19, 02:08](856 MB) -PASS -- TEST 'conus13km_control_gnu' [03:37, 02:37](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:27, 01:11](1178 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:28, 01:27](933 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:10, 12:11] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 04:42](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:10, 06:56] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:17, 02:13](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:16, 02:10](976 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:29, 06:03](1287 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:29, 06:11](961 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:25, 03:43](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:30, 05:47](1354 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [10:11, 09:53] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:06](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:32] - -PASS -- COMPILE 's2s_gnu' [15:11, 14:42] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:00, 04:57](3081 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:55] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 16:36] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [26:48, 25:54](3056 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [11:10, 06:18] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:44, 12:14](2914 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:10, 15:42] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:15, 02:17](768 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:19, 12:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 09:11](2138 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:26] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:02](2004 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:31](2313 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:20](1318 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:32, 14:57](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:56, 13:08](1994 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:13] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:21, 21:11](1984 MB) + +PASS -- COMPILE 's2swa_intel' [13:18, 12:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:59](2188 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:36, 09:10](2179 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:37, 04:38](1970 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:54, 08:46](2223 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:17, 04:34](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:15, 10:18](2544 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:58, 09:00](2180 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 07:27](2093 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:31, 08:44](2195 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 16:24](2967 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 07:37](2932 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:08, 10:30](3807 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:16](3648 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:30, 06:14](2162 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 08:02](2018 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 05:05](2086 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:28] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:39, 08:09](2218 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:56] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:54, 06:16](2066 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:01] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 05:38](2088 MB) + +PASS -- COMPILE 's2s_intel' [10:11, 10:02] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:55, 07:41](3106 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:21, 02:56](3089 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:41](2512 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:43](2183 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:55] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:55](2037 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:34, 07:33](1405 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:29, 16:10](1973 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 06:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 22:42](2016 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:12, 10:19] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:50, 03:43](707 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:30](1622 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:57](1611 MB) +PASS -- TEST 'control_latlon_intel' [03:57, 02:42](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:07, 02:31](1608 MB) +PASS -- TEST 'control_c48_intel' [09:14, 07:00](1730 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:55](859 MB) +PASS -- TEST 'control_c192_intel' [10:16, 09:05](1759 MB) +PASS -- TEST 'control_c384_intel' [12:20, 09:52](2036 MB) +PASS -- TEST 'control_c384gdas_intel' [14:21, 10:03](1521 MB) +PASS -- TEST 'control_stochy_intel' [02:23, 01:55](668 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:27](539 MB) +PASS -- TEST 'control_lndp_intel' [02:21, 01:34](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:34](661 MB) +PASS -- TEST 'control_iovr5_intel' [05:31, 02:54](665 MB) +PASS -- TEST 'control_p8_intel' [06:05, 03:30](1917 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 04:01](1918 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:23](1915 MB) +PASS -- TEST 'control_restart_p8_intel' [03:57, 02:20](1149 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:24](1897 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:05](1200 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:43, 03:34](1897 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:02](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:27](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:20](1987 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:43](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [07:26, 03:53](1921 MB) +PASS -- TEST 'regional_control_intel' [06:57, 05:25](1202 MB) +PASS -- TEST 'regional_restart_intel' [04:46, 03:29](1177 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 05:34](1192 MB) +PASS -- TEST 'regional_2threads_intel' [03:41, 03:11](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [07:34, 06:11](1525 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:43, 04:46](1201 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:41](1209 MB) +PASS -- TEST 'regional_wofs_intel' [08:26, 07:47](2093 MB) + +PASS -- COMPILE 'rrfs_intel' [14:15, 09:53] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:05, 06:54](1215 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:06, 03:42](1419 MB) +PASS -- TEST 'rap_decomp_intel' [07:42, 07:02](1166 MB) +PASS -- TEST 'rap_2threads_intel' [07:40, 06:13](1359 MB) +PASS -- TEST 'rap_restart_intel' [06:07, 04:20](1144 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:50, 06:37](1192 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:47, 07:01](1149 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:58](1200 MB) +PASS -- TEST 'hrrr_control_intel' [05:21, 03:55](1076 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:43](1045 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:45](1116 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:05](1039 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:19, 07:03](1207 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 07:40](2014 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:28, 07:38](2189 MB) + +PASS -- COMPILE 'csawmg_intel' [10:22, 09:17] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:55](1053 MB) +PASS -- TEST 'control_ras_intel' [05:47, 03:06](846 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:14, 04:50] +PASS -- TEST 'control_csawmg_gnu' [10:30, 08:37](1070 MB) + +PASS -- COMPILE 'wam_intel' [07:16, 07:05] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:05, 10:28](1674 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:20, 02:24](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [06:36, 05:34](1201 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:55] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:20](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:15](1643 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:57, 03:01](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:41, 02:23](844 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:27, 04:05](1157 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:23](853 MB) +PASS -- TEST 'control_diag_debug_intel' [04:35, 03:13](1712 MB) +PASS -- TEST 'control_debug_p8_intel' [03:39, 03:07](1931 MB) +PASS -- TEST 'regional_debug_intel' [17:28, 16:27](1162 MB) +PASS -- TEST 'rap_control_debug_intel' [04:23, 04:05](1236 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:13](1218 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:38, 04:09](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:16](1228 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:13](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:51, 04:24](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:15](1223 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:15](1231 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:30, 04:20](1229 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:35, 04:17](1235 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:31](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:07](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:38, 06:47](1222 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:13](1228 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:33](1231 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:24](1225 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:00, 07:35](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:24] +PASS -- TEST 'control_csawmg_debug_gnu' [04:00, 03:03](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 03:06] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:15, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:44](1266 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:50, 07:16](1178 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](1058 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 06:06](1291 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 02:55](1044 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 04:33](1003 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:00, 05:39](1149 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 01:57](972 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:10, 01:51](1316 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:06, 01:13](1217 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:43](1166 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:12, 07:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:41](1089 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:03] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:10](1109 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:38, 03:58](1119 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 13:25](1349 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 13:36](1002 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 08:49](1254 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 12:44](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:44](1171 MB) + +PASS -- COMPILE 'hafsw_intel' [13:14, 12:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:28](872 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 05:14](1284 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 06:34](957 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:11](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:32, 15:31](988 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:35](613 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:57, 08:00](628 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:21, 03:34](439 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 07:38](546 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:59, 03:58](623 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:39](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 04:50](684 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:08](458 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 06:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:19, 13:51](655 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:12, 15:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:09, 16:45](733 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:18, 16:24](812 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:18, 09:56] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:22, 09:35](828 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:14, 09:50] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:31, 05:48](949 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 05:47](912 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:04, 16:30](1335 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:26, 02:23](1146 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:33](1118 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:19, 02:16](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:20, 03:07](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:18, 03:04](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:20, 02:33](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 02:21](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [10:18, 03:16](1025 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:45, 05:50](1167 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:41, 05:01](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:14, 03:06](1129 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:27, 03:18](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:31, 04:21](2390 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 04:06] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 06:05](1083 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 03:01](1148 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:47, 01:01](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:28, 01:54](576 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:32](562 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:05] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:31, 03:51](2028 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 08:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 04:09](1998 MB) + +PASS -- COMPILE 'atml_intel' [09:12, 08:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:42](1913 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:54](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:22](1156 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:12, 04:13] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:13, 05:57](1939 MB) + +PASS -- COMPILE 'atmw_intel' [10:25, 09:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:02, 01:41](1963 MB) + +PASS -- COMPILE 'atmaero_intel' [08:11, 07:44] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:23](2020 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:00, 04:48](1811 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:52](1831 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:59] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:08, 16:44](4556 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:45] +PASS -- TEST 'control_c48_gnu' [10:48, 09:21](1572 MB) +PASS -- TEST 'control_stochy_gnu' [04:39, 02:50](732 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 04:24](734 MB) +PASS -- TEST 'control_p8_gnu' [07:03, 05:38](1715 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:56](1730 MB) +PASS -- TEST 'control_flake_gnu' [06:45, 05:17](807 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:14, 04:42] +PASS -- TEST 'rap_control_gnu' [10:39, 09:12](1087 MB) +PASS -- TEST 'rap_decomp_gnu' [10:35, 09:02](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [10:00, 07:27](1153 MB) +PASS -- TEST 'rap_restart_gnu' [06:00, 04:34](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 08:11](1093 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:46, 08:22](1087 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:00](883 MB) +PASS -- TEST 'hrrr_control_gnu' [06:22, 04:18](1073 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:01, 05:36](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 03:57](1041 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:41, 05:36](1069 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:39](879 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:33, 02:06](936 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:29, 08:36](1083 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:21] +PASS -- TEST 'control_diag_debug_gnu' [03:03, 01:39](1629 MB) +PASS -- TEST 'regional_debug_gnu' [08:37, 07:45](1126 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:56](1105 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:27, 02:40](1097 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:24](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:32, 02:05](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:55](1278 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:39](1102 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:38](1102 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:28, 02:45](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:56](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:46](727 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:42, 02:29](1727 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:20, 03:11](1104 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:16](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:11, 04:12](1108 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:43] +PASS -- TEST 'control_wam_debug_gnu' [06:52, 05:14](1587 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:56] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:36, 08:06](963 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 04:03](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:05, 06:54](997 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:07, 03:39](895 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:39, 04:09](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:58](861 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:48, 02:07](856 MB) +PASS -- TEST 'conus13km_control_gnu' [05:04, 03:33](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:55, 01:48](1175 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:56, 01:39](925 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:16, 13:18] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:52, 04:54](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:16, 10:45] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:26](981 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:34, 03:04](974 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:20](1291 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 07:37](964 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:34, 04:13](1203 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:32, 05:49](1355 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:23, 11:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:21](1006 MB) + +PASS -- COMPILE 's2swa_gnu' [20:12, 19:27] + +PASS -- COMPILE 's2s_gnu' [18:14, 17:30] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:08](2739 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [11:13, 10:20] + +PASS -- COMPILE 's2sw_pdlib_gnu' [19:13, 18:56] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:13, 26:50](3038 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:12, 09:51] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:09, 12:48](3045 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [19:13, 18:13] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 02:21](769 MB) SYNOPSIS: -Starting Date/Time: 20240725 12:51:06 -Ending Date/Time: 20240725 14:24:28 -Total Time: 01h:33m:55s +Starting Date/Time: 20240726 15:31:11 +Ending Date/Time: 20240726 17:19:53 +Total Time: 01h:52m:57s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index fe95ec28af..ce6f0fc6da 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +ba4c3ee47280b777133ba3f3e60f271d70738c34 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,255 +36,333 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_647373 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3152011 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [35:15, 34:16] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [20:59, 07:39](2009 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:16, 47:55] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:02, 21:39](1884 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:47, 23:31](2018 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:19, 11:41](1117 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:33, 24:48](1859 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:16, 48:53] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [22:47, 21:22](1885 MB) - -PASS -- COMPILE 's2swa_intel' [34:15, 33:31] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:30, 07:58](2054 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:51, 08:02](2053 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:41, 04:51](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:27, 08:05](2063 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:55, 04:56](1736 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:25, 08:26](2317 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:21, 08:10](2057 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:46, 07:38](2004 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:50, 07:53](2056 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [19:35, 07:35](2012 MB) - -PASS -- COMPILE 's2sw_intel' [39:16, 38:54] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 06:21](1869 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:40, 06:31](1947 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:14, 05:44] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:39, 11:05](2078 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:15, 05:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:24, 07:41](1938 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [42:17, 34:50] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:55, 06:35](1975 MB) - -PASS -- COMPILE 's2s_intel' [35:18, 34:51] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3072 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:06, 04:02](3059 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:25](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:27, 34:16] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:09, 07:37](2053 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:18, 46:56] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:36, 23:21](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:49, 11:19](1138 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:35, 24:53](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:32] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:52, 32:50](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:16, 37:45] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:36, 04:31](652 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:13, 03:58](1548 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:18, 04:09](1558 MB) -PASS -- TEST 'control_latlon_intel' [05:08, 03:56](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:17, 04:04](1544 MB) -PASS -- TEST 'control_c48_intel' [13:33, 11:45](1736 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:12](852 MB) -PASS -- TEST 'control_c192_intel' [17:03, 14:39](1682 MB) -PASS -- TEST 'control_c384_intel' [22:29, 19:56](1819 MB) -PASS -- TEST 'control_c384gdas_intel' [20:46, 13:25](1024 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:15](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:19](440 MB) -PASS -- TEST 'control_lndp_intel' [03:32, 02:09](606 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](606 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 03:18](601 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:41](1838 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:45, 04:38](1848 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:53, 04:28](1844 MB) -PASS -- TEST 'control_restart_p8_intel' [04:01, 02:52](1057 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:31](1843 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:03, 02:49](1074 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:38](1830 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:24](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:16, 07:37](1853 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:01, 05:48](1907 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:49, 04:36](1852 MB) -PASS -- TEST 'merra2_thompson_intel' [07:08, 05:02](1849 MB) -PASS -- TEST 'regional_control_intel' [09:05, 07:45](1010 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 04:48](1013 MB) -PASS -- TEST 'regional_decomp_intel' [10:05, 08:18](1013 MB) -PASS -- TEST 'regional_2threads_intel' [07:07, 05:10](1012 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:14, 07:49](1021 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:49, 07:54](1016 MB) - -PASS -- COMPILE 'rrfs_intel' [36:16, 35:31] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:07, 10:11](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:29, 05:41](1217 MB) -PASS -- TEST 'rap_decomp_intel' [12:11, 10:38](986 MB) -PASS -- TEST 'rap_2threads_intel' [11:35, 09:44](1083 MB) -PASS -- TEST 'rap_restart_intel' [07:18, 05:21](991 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:08](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:10, 10:44](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:17, 07:39](995 MB) -PASS -- TEST 'hrrr_control_intel' [07:23, 05:15](986 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:26, 05:23](981 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:38, 04:50](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 02:52](917 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:40, 09:58](985 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 12:28](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:42, 12:15](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [33:16, 32:26] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:49, 08:51](959 MB) -PASS -- TEST 'control_ras_intel' [06:36, 05:12](665 MB) - -PASS -- COMPILE 'wam_intel' [33:16, 32:25] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:05, 14:22](1631 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:20, 53:18] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:33, 04:30](1829 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:41](1007 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:12, 08:32] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:54, 03:22](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:59, 03:20](1576 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:31, 03:52](773 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:32, 03:29](777 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:48](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:30](785 MB) -PASS -- TEST 'control_diag_debug_intel' [04:57, 03:31](1635 MB) -PASS -- TEST 'control_debug_p8_intel' [06:05, 04:13](1870 MB) -PASS -- TEST 'regional_debug_intel' [23:57, 23:01](1049 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 06:12](1160 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:35, 06:08](1159 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:12](1161 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:13](1163 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:33, 06:11](1161 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:40, 06:31](1244 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:30, 06:17](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 06:16](1168 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:23](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 06:10](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:23, 06:03](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 06:10](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:06](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:06](1155 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 07:30](1160 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:15](1158 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:27, 10:44](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:31] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:04, 16:55](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 30:36] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 05:49](1076 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [15:11, 08:53](902 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:26, 04:37](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:45, 08:26](952 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [15:20, 04:26](907 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [13:00, 04:54](860 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:21](904 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:33, 02:27](847 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [49:15, 48:56] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:10, 02:57](1110 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:01, 01:30](1046 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 02:03](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [32:14, 31:14] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:56, 05:46](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:48] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 06:06](1045 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:33, 06:08](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [24:03, 18:42](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:03, 18:54](865 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:56, 10:47](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:57, 18:40](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:36, 06:19](1085 MB) - -PASS -- COMPILE 'hafsw_intel' [41:18, 38:51] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:24, 07:09](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:47](1091 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:34, 09:33](771 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:28, 16:30](805 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:45, 18:23](814 MB) -PASS -- TEST 'gnv1_nested_intel' [11:46, 07:14](1676 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:20, 34:13] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:54, 08:58](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:59, 09:03](755 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:12, 08:29] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:26, 03:37](1063 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 02:13](1020 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 03:43](929 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:26, 03:42](921 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:46](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:26, 03:44](1079 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:39](1050 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:25, 03:45](926 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 08:11](889 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:29, 08:18](848 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:22, 03:42](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:26, 05:12](2418 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:25, 05:25](2406 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:29] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:03, 49:32](2004 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:15, 47:50] ( 1 warnings 1427 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) +FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:00, 24:30](1853 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:38] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [09:28, 21:24](1881 MB) + +PASS -- COMPILE 's2swa_intel' [41:14, 40:50] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:23, 07:57](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:34, 49:38](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [51:29, 05:09](1720 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:19, 08:00](2080 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 07:43](2322 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:16, 08:11](2050 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [51:40, 51:05](1974 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:25, 48:31](2048 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:33, 07:49](2039 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:40] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:45](1905 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:57, 50:41](1953 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:04](2081 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:46] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [50:49, 50:01](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:21] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 06:20](1947 MB) + +PASS -- COMPILE 's2s_intel' [35:13, 34:51] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:43](3062 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:54](3053 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:03, 02:32](2466 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:16, 12:08] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:40](2050 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:28] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 21:46](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 11:24](1127 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:56](1878 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:13] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:58](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:13, 37:27] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:36, 04:30](646 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:02](1553 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 04:09](1552 MB) +PASS -- TEST 'control_latlon_intel' [05:11, 03:57](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:04](1558 MB) +PASS -- TEST 'control_c48_intel' [13:28, 11:47](1733 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:17](857 MB) +PASS -- TEST 'control_c192_intel' [16:32, 14:25](1690 MB) +PASS -- TEST 'control_c384_intel' [20:30, 17:50](1821 MB) +PASS -- TEST 'control_c384gdas_intel' [45:04, 43:04](1024 MB) +PASS -- TEST 'control_stochy_intel' [03:33, 02:17](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:20](435 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:13](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:35, 03:25](603 MB) +PASS -- TEST 'control_iovr5_intel' [04:36, 03:25](601 MB) +PASS -- TEST 'control_p8_intel' [06:36, 04:43](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 04:41](1828 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 04:31](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [04:08, 02:49](1063 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:38, 04:31](1838 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [55:41, 55:04](1078 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:47](1830 MB) +PASS -- TEST 'control_2threads_p8_intel' [53:52, 53:09](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:18, 07:46](1844 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 05:49](1917 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:52, 04:41](1848 MB) +PASS -- TEST 'merra2_thompson_intel' [53:32, 51:46](1855 MB) +PASS -- TEST 'regional_control_intel' [09:08, 07:54](1015 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 04:22](1014 MB) +PASS -- TEST 'regional_decomp_intel' [10:08, 08:24](1018 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 06:08](1005 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [50:33, 50:24](1022 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [50:31, 49:36](1012 MB) + +PASS -- COMPILE 'rrfs_intel' [35:13, 35:09] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [12:06, 10:10](993 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 05:46](1223 MB) +PASS -- TEST 'rap_decomp_intel' [12:04, 10:42](988 MB) +PASS -- TEST 'rap_2threads_intel' [11:33, 09:44](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:29, 05:18](991 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:05](994 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:06, 10:47](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:25, 07:34](1002 MB) +PASS -- TEST 'hrrr_control_intel' [53:20, 52:08](993 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [53:14, 52:06](983 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [53:47, 52:45](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:49](915 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:40, 10:01](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [46:01, 45:28](1943 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:11](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [32:13, 32:09] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:49, 08:53](960 MB) +PASS -- TEST 'control_ras_intel' [05:30, 04:30](664 MB) + +PASS -- COMPILE 'wam_intel' [33:14, 32:27] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [16:01, 14:27](1623 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:54] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:36, 04:12](1842 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 07:21](1017 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:17] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 03:24](1572 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:20](1570 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:53](774 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:29](774 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:59](1094 MB) +PASS -- TEST 'control_ras_debug_intel' [04:30, 03:32](785 MB) +PASS -- TEST 'control_diag_debug_intel' [04:54, 03:28](1634 MB) +PASS -- TEST 'control_debug_p8_intel' [06:01, 04:09](1868 MB) +PASS -- TEST 'regional_debug_intel' [24:00, 22:52](1039 MB) +PASS -- TEST 'rap_control_debug_intel' [07:32, 06:15](1161 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:34, 06:09](1153 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:09](1164 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:12](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:14](1163 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:45, 06:42](1236 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:18](1164 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 06:24](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:14](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:13](1158 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:04](1163 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:11](1164 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:08](1163 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:11](1156 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 07:31](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:11](1159 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:42](1177 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:35] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:00, 16:53](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:16, 30:08] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:17](1078 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:23](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:24](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:19, 07:58](937 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 04:05](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 04:42](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:26](908 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:27](850 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:15, 38:32] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:58](1104 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:54, 01:24](1048 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:38](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:12, 30:52] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 05:31](907 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1042 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:02](1047 MB) +PASS -- TEST 'conus13km_debug_intel' [20:03, 18:39](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 18:55](866 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:45](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 18:40](1221 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:31] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:16](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [39:14, 38:25] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:08](711 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:12](1081 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:51, 09:38](769 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:27](796 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:53, 18:21](801 MB) +PASS -- TEST 'gnv1_nested_intel' [10:48, 07:24](1680 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:14, 33:24] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:51](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:25, 08:52](763 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:33] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 03:40](1056 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:12](1044 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:36](938 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](922 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:38](931 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:38](1067 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:36](934 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 08:11](883 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 08:19](840 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 05:59](2408 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 05:11](2397 MB) PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:28, 08:07](1016 MB) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1024 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:14, 08:23] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:27, 03:42](1068 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:25] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:49](1060 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:56] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:41, 01:45](232 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:34, 01:27](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:30, 00:51](255 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:52] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 02:30](235 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:54](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:54](253 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:27] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:27, 05:15](1912 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:52] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 05:24](1909 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:16, 33:22] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:47, 05:21](1885 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:13, 33:09] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 05:16](1899 MB) -PASS -- COMPILE 'atml_intel' [38:18, 37:44] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:46, 10:02](1863 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [17:48, 08:47](1844 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:57, 05:34](1075 MB) +PASS -- COMPILE 'atml_intel' [42:17, 41:35] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:36](1861 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 08:35](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 05:00](1072 MB) -PASS -- COMPILE 'atml_debug_intel' [07:13, 06:34] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:46, 08:06](1887 MB) +PASS -- COMPILE 'atml_debug_intel' [06:10, 06:01] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:38, 08:06](1888 MB) -PASS -- COMPILE 'atmw_intel' [35:17, 34:19] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:32, 02:59](1857 MB) +PASS -- COMPILE 'atmw_intel' [34:14, 33:28] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 02:54](1868 MB) -PASS -- COMPILE 'atmaero_intel' [34:16, 33:27] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:27, 06:34](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [11:22, 06:48](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:12, 06:52](1745 MB) +PASS -- COMPILE 'atmaero_intel' [34:14, 33:27] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:30, 05:49](1944 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:27](1722 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 06:31](1741 MB) SYNOPSIS: -Starting Date/Time: 20240724 20:55:35 -Ending Date/Time: 20240725 00:58:45 -Total Time: 04h:03m:47s +Starting Date/Time: 20240729 06:22:57 +Ending Date/Time: 20240729 15:24:17 +Total Time: 09h:01m:51s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 160/164 +Failed Tests: +* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_intel.log +* TEST cpld_control_gfsv17_iau_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_iau_intel.log +* TEST cpld_restart_gfsv17_intel: FAILED: RUN DID NOT COMPLETE +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log +* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_qr_p8_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +9fc184af0952396d9793dade5f7d4b699b781120 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2040239 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:06, 49:05] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:30, 21:46](1879 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 22:34](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 11:21](1090 MB) + +PASS -- COMPILE 's2swa_intel' [40:45, 40:44] ( 1381 remarks ) +PASS -- TEST 'cpld_control_qr_p8_intel' [09:43, 08:16](2067 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 05:53](1724 MB) + +SYNOPSIS: +Starting Date/Time: 20240729 15:56:33 +Ending Date/Time: 20240729 17:53:36 +Total Time: 01h:57m:17s +Compiles Completed: 2/2 +Tests Completed: 5/5 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 3660c9ea7e..770122e795 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: -17a524e83223725150b6c1bec3ac9e55ac6876a8 +d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,351 +36,286 @@ 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-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_566496 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3184996 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:39] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:49, 14:22](2079 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 23:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:51, 18:01](1956 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:12, 18:59](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:08, 08:59](1218 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:19](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 23:57] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:46](1952 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 08:00] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:59, 27:16](1941 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 16:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:34, 14:37](2137 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:22](2132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:39, 07:57](1813 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 14:17](2168 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:33, 08:01](1713 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:31, 13:16](2426 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:34, 14:16](2137 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:34, 12:28](2051 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_ciceC_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:31, 16:16](2720 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 08:41](2730 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:39, 12:20](3655 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:17, 07:06](3502 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:25, 05:48](2114 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 16:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:13, 13:54](1976 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:40](2048 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:44] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:27, 08:55](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:06, 06:11](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:27, 04:36](2050 MB) - -PASS -- COMPILE 's2s_intel' [14:11, 13:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:58, 09:46](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:11](3069 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:01, 02:07](2517 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:11, 26:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:32, 14:44](2149 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:11](1997 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:19, 08:59](1260 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:10, 20:24](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 07:07] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:09, 28:49](1982 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:38](690 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:40, 03:04](1588 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:51, 03:09](1602 MB) -PASS -- TEST 'control_latlon_intel' [03:37, 03:04](1585 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:46, 03:07](1593 MB) -PASS -- TEST 'control_c48_intel' [10:47, 09:10](1741 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:55](859 MB) -PASS -- TEST 'control_c192_intel' [11:52, 11:09](1737 MB) -PASS -- TEST 'control_c384_intel' [14:43, 12:11](2012 MB) -PASS -- TEST 'control_c384gdas_intel' [12:31, 09:24](1357 MB) -PASS -- TEST 'control_stochy_intel' [02:34, 01:47](643 MB) -PASS -- TEST 'control_stochy_restart_intel' [04:00, 01:03](480 MB) -PASS -- TEST 'control_lndp_intel' [02:27, 01:44](646 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 02:43](641 MB) -PASS -- TEST 'control_iovr5_intel' [03:27, 02:40](641 MB) -PASS -- TEST 'control_p8_intel' [05:14, 03:31](1891 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:11, 03:33](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:21](1883 MB) -PASS -- TEST 'control_restart_p8_intel' [03:18, 02:02](1098 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:32, 03:19](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:24, 01:54](1125 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:06, 03:25](1876 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:02, 03:42](1945 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:39, 05:49](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:51](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:18, 03:30](1887 MB) -PASS -- TEST 'merra2_thompson_intel' [06:32, 03:46](1895 MB) -PASS -- TEST 'regional_control_intel' [07:37, 06:15](1083 MB) -PASS -- TEST 'regional_restart_intel' [04:39, 03:27](1083 MB) -PASS -- TEST 'regional_decomp_intel' [07:32, 06:38](1087 MB) -PASS -- TEST 'regional_2threads_intel' [05:47, 04:35](1071 MB) -PASS -- TEST 'regional_noquilt_intel' [07:52, 06:15](1383 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:11](1085 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:39, 06:22](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:38, 07:31](1905 MB) - -PASS -- COMPILE 'rrfs_intel' [13:10, 12:42] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:21, 08:13](1062 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:51, 05:11](1309 MB) -PASS -- TEST 'rap_decomp_intel' [10:23, 08:28](1028 MB) -PASS -- TEST 'rap_2threads_intel' [10:28, 08:14](1163 MB) -PASS -- TEST 'rap_restart_intel' [06:38, 04:17](1049 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:15, 08:11](1056 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:01, 08:28](1028 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:51, 06:09](1075 MB) -PASS -- TEST 'hrrr_control_intel' [06:08, 04:15](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:00, 04:19](1025 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:14, 04:05](1099 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:20](951 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:30, 08:04](1044 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:39](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:23](2022 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:40] -PASS -- TEST 'control_csawmg_intel' [07:35, 06:27](1022 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:30](717 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:20] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 12:14](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:42] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:14](1896 MB) -PASS -- TEST 'regional_control_faster_intel' [06:37, 06:02](1087 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 08:06] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:45, 02:44](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:48, 02:39](1624 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:06](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:26, 02:46](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:39, 04:23](1131 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:52](826 MB) -PASS -- TEST 'control_diag_debug_intel' [06:45, 02:46](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [06:45, 03:26](1919 MB) -PASS -- TEST 'regional_debug_intel' [18:41, 17:47](1103 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:53](1208 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:56](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:53](1207 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:53](1209 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:36, 05:10](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:00](1211 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:55](1205 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:52](1209 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 04:59](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:20, 04:51](1206 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:23, 05:05](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:27, 07:50](1204 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:47](1199 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 06:06](1213 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:54](1205 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:33, 08:22](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 05:07] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:25](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:15] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:51](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:01, 06:59](1002 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:14, 03:42](933 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1080 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 03:37](951 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:05, 03:52](901 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:28, 05:13](975 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:07, 02:00](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:53] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:57, 02:36](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:46, 01:11](1128 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:43, 01:28](1077 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:27](975 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 05:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1091 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:32, 04:47](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [14:55, 14:05](1239 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:26](944 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:42, 08:22](1172 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:13](1310 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:58](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:31] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:18, 05:56](762 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:32, 06:18](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:33, 07:25](831 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:13, 24:39](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:34, 28:44](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:05, 06:57](516 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:18](527 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 03:24](381 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:25, 09:25](487 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:47, 04:39](542 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:24](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 05:38](597 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:34](407 MB) -PASS -- TEST 'gnv1_nested_intel' [07:16, 04:14](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 13:20](594 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:11, 22:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [15:20, 13:05](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [15:09, 12:41](736 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:33] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:20, 08:53](717 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:06] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:18](830 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:21](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1197 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:12, 10:25] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:55](1141 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:20, 01:55](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:49](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:52](1020 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:53](1008 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 03:00](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:19, 02:58](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:50](1019 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:08, 06:29](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:11, 06:25](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:17, 02:56](1151 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:20](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:20, 04:16](2399 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:32] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 06:27](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:10, 08:31] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:56](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:34, 01:02](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:24, 00:56](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](322 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:13] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 04:06](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:10, 04:01](1960 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:19] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:31, 04:49](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:35, 04:47](1872 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:58, 02:45](1089 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:09] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:39, 05:51](1912 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 11:58] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:19, 02:05](1918 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 11:57] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:11, 04:29](1997 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:23, 05:15](1775 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 05:18](1784 MB) +PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:02] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:29](2084 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:20] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:43, 18:03](1962 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:15, 19:01](2143 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:49](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:24](1883 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:42](1958 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:24] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:35, 26:49](1940 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 16:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:44, 14:19](2148 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:19](2150 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:45](1817 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:44, 14:18](2161 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:50](1714 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:38, 13:11](2440 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 14:06](2137 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:40, 12:00](2044 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:45, 14:30](2139 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:34, 16:15](2714 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 08:40](2731 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:06, 11:23](3655 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 06:57](3502 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:50](2117 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 13:37](1979 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:45](2049 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:22] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:34](2168 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 06:06](2011 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:42](2040 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:52] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:02](3108 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:34](3082 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:04](2513 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:51](2143 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:35] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 18:07](1997 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 08:58](1259 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:15, 20:19](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:08, 29:01](1982 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:28, 03:37](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 03:03](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1588 MB) +PASS -- TEST 'control_latlon_intel' [03:40, 03:04](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:06](1587 MB) +PASS -- TEST 'control_c48_intel' [10:46, 09:11](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:54](860 MB) +PASS -- TEST 'control_c192_intel' [12:00, 11:06](1732 MB) +PASS -- TEST 'control_c384_intel' [13:47, 12:10](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:23, 09:20](1359 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:47](644 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:04](483 MB) +PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:39](644 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 02:39](642 MB) +PASS -- TEST 'control_p8_intel' [05:12, 03:25](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 03:24](1890 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:14](1888 MB) +PASS -- TEST 'control_restart_p8_intel' [03:08, 01:57](1100 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:19](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1137 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:17, 03:26](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:16, 03:32](1966 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:46](1891 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:45](1950 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:26, 03:23](1893 MB) +PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1897 MB) +PASS -- TEST 'regional_control_intel' [07:36, 06:14](1088 MB) +PASS -- TEST 'regional_restart_intel' [06:38, 03:43](1084 MB) +PASS -- TEST 'regional_decomp_intel' [07:36, 06:35](1076 MB) +PASS -- TEST 'regional_2threads_intel' [05:31, 04:35](1093 MB) +PASS -- TEST 'regional_noquilt_intel' [07:40, 06:13](1380 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 06:09](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:15](1089 MB) +PASS -- TEST 'regional_wofs_intel' [09:02, 07:56](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:25, 08:37](1063 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:01](1306 MB) +PASS -- TEST 'rap_decomp_intel' [10:00, 08:44](1031 MB) +PASS -- TEST 'rap_2threads_intel' [09:52, 08:30](1170 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:17](1047 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:05, 08:13](1052 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 08:33](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:09](1070 MB) +PASS -- TEST 'hrrr_control_intel' [06:15, 04:15](1034 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:19](1021 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:03](1096 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:23](951 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:13](1047 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:46](1992 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:30](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:38] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:39](1023 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:35](721 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:35] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:11](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:11, 19:53] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:36, 03:24](1882 MB) +PASS -- TEST 'regional_control_faster_intel' [07:44, 06:11](1084 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:18] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:44](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:55, 02:37](1614 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:10](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](819 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:14](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [03:26, 02:47](824 MB) +PASS -- TEST 'control_diag_debug_intel' [03:52, 02:47](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [03:52, 03:06](1912 MB) +PASS -- TEST 'regional_debug_intel' [18:50, 17:25](1109 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:49](1202 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:46](1201 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:47](1206 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:51](1209 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:57](1213 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:34, 06:12](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:30](1205 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:50](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:10](1212 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:33](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:18](1207 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 05:32](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 08:02](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:48](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1216 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:51](1204 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:21, 08:24](1212 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 05:26] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:46, 13:31](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:20] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:41](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:56](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:41](934 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 07:06](1079 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:35](957 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:49](906 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [29:21, 05:13](982 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:55, 02:00](888 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:52, 02:39](1177 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:51, 01:11](1135 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [07:42, 01:28](1087 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:28](982 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:15] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:49](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:43](1091 MB) +PASS -- TEST 'conus13km_debug_intel' [15:48, 14:10](1240 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:27](945 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:27](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:25](1306 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:07] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:57](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [14:12, 13:16] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](764 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 06:14](1141 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:26](841 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:11, 24:45](867 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:16, 28:36](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:04, 06:59](512 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 08:19](525 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 03:23](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 09:26](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:51, 04:39](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:51, 04:25](535 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:50, 05:37](602 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:33, 01:32](417 MB) +PASS -- TEST 'gnv1_nested_intel' [20:10, 04:16](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:44] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:55, 13:08](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:13, 22:38] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:14, 13:01](761 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:59, 12:55](734 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:58, 08:45](728 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:16, 13:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [34:20, 07:16](841 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:12, 07:17](812 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:58, 16:25](1206 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [24:20, 02:56](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:23, 01:54](1118 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [28:19, 02:48](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:21, 02:52](1018 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [28:19, 02:52](1027 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [27:21, 02:57](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:56](1157 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:19, 02:48](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:10, 06:26](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [34:05, 06:24](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:18, 02:55](1134 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2444 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [29:20, 04:19](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:39] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [31:20, 06:30](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:18, 02:56](1159 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:34, 01:02](250 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:26, 00:56](323 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:28, 00:36](318 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:22] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [27:10, 04:02](1980 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [26:09, 03:50](1965 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:42] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [27:31, 04:44](1877 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [27:32, 04:45](1874 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:37](1080 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:56] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [26:24, 05:52](1901 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 12:41] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:17, 02:03](1920 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [21:13, 04:29](1997 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [18:13, 05:14](1782 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:59, 05:18](1783 MB) PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:00, 20:50](4547 MB) +PASS -- TEST 'regional_atmaq_debug_intel' [31:56, 20:52](4551 MB) SYNOPSIS: -Starting Date/Time: 20240725 23:06:11 -Ending Date/Time: 20240726 00:38:27 -Total Time: 01h:33m:08s +Starting Date/Time: 20240729 07:28:02 +Ending Date/Time: 20240729 09:28:56 +Total Time: 02h:01m:46s Compiles Completed: 41/41 -Tests Completed: 184/185 -Failed Tests: -* TEST cpld_control_ciceC_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2352/tests/logs/log_orion/run_cpld_control_ciceC_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -17a524e83223725150b6c1bec3ac9e55ac6876a8 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1109443 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf - -PASS -- COMPILE 's2swa_intel' [15:11, 14:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:23, 14:20](2148 MB) - -SYNOPSIS: -Starting Date/Time: 20240726 08:41:12 -Ending Date/Time: 20240726 09:12:46 -Total Time: 00h:31m:47s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 185/185 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 33c1c66350..cb60b28f68 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: -45bcf84d30cfb2cc46913130f6e8615814b3c9e8 +4124fe82547dcec17e208ff919f41db354b212e6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,9 +9,9 @@ Submodule hashes used in testing: fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - 47fb4e633a76ec6d60969b1af751f90790387246 CMEPS-interface/CMEPS (cmeps_v0.4.1-2989-g47fb4e63) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 927261d3916c8e96e7ebe38fe86f06f7aab0abc2 FV3 (heads/develop-63-g927261d) + a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -36,238 +36,238 @@ 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-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_255709 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18190 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:29, 11:31] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:58, 01:50](3100 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [31:53, 28:49] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [54:34, 01:43](1821 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [33:25, 01:20](1842 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [33:04, 01:44](975 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:35, 01:19](1795 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [15:30, 11:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [10:56, 00:44](1816 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [22:37, 18:57] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [03:50, 02:05](1842 MB) - -PASS -- COMPILE 's2swa_intel' [14:29, 11:09] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:58, 01:42](3134 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:58, 01:58](3132 MB) -PASS -- TEST 'cpld_restart_p8_intel' [00:26, 01:31](3068 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:58, 01:56](3156 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [00:26, 01:33](3085 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:58, 01:34](3368 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:58, 01:17](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:59, 01:42](3079 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:58, 01:55](3136 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [12:07, 03:53](4131 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [50:41, 05:04](4268 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:58, 01:26](3120 MB) - -PASS -- COMPILE 's2sw_intel' [14:30, 10:48] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:56, 01:30](1832 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:56, 01:35](1897 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:36, 17:15] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:50, 01:42](1896 MB) - -PASS -- COMPILE 's2s_intel' [26:41, 22:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [59:44, 00:48](2920 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [59:44, 01:09](2923 MB) -PASS -- TEST 'cpld_restart_c48_intel' [49:30, 01:20](2320 MB) - -PASS -- COMPILE 's2swa_faster_intel' [32:54, 29:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [53:31, 02:01](3133 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:43, 23:32] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:43, 01:41](1838 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:08, 01:20](1009 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [33:37, 01:29](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:34, 14:29] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [54:25, 01:31](1862 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [24:39, 21:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [47:18, 00:32](570 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [47:18, 00:38](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [47:18, 00:44](1476 MB) -PASS -- TEST 'control_latlon_intel' [47:18, 00:41](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [47:18, 00:52](1474 MB) -PASS -- TEST 'control_c48_intel' [47:17, 01:27](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [45:26, 01:18](714 MB) -PASS -- TEST 'control_c192_intel' [44:25, 01:00](1589 MB) -PASS -- TEST 'control_c384_intel' [42:13, 01:20](1912 MB) -PASS -- TEST 'control_c384gdas_intel' [41:52, 02:04](1087 MB) -PASS -- TEST 'control_stochy_intel' [40:28, 00:21](527 MB) -PASS -- TEST 'control_stochy_restart_intel' [38:00, 01:00](331 MB) -PASS -- TEST 'control_lndp_intel' [40:23, 00:28](528 MB) -PASS -- TEST 'control_iovr4_intel' [40:21, 00:41](526 MB) -PASS -- TEST 'control_iovr5_intel' [40:17, 00:40](523 MB) -PASS -- TEST 'control_p8_intel' [39:45, 01:28](1773 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [39:33, 02:00](1770 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [38:58, 01:27](1772 MB) -PASS -- TEST 'control_restart_p8_intel' [33:36, 01:55](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [38:58, 01:25](1769 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [33:35, 01:00](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [38:57, 01:19](1767 MB) -PASS -- TEST 'control_2threads_p8_intel' [38:00, 01:41](1863 MB) -PASS -- TEST 'control_p8_lndp_intel' [36:54, 01:11](1774 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [36:50, 01:53](1832 MB) -PASS -- TEST 'control_p8_mynn_intel' [36:45, 01:25](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [36:43, 01:16](1777 MB) -PASS -- TEST 'regional_control_intel' [36:28, 01:06](853 MB) -PASS -- TEST 'regional_restart_intel' [29:44, 01:02](850 MB) -PASS -- TEST 'regional_decomp_intel' [36:10, 00:51](862 MB) -PASS -- TEST 'regional_2threads_intel' [36:09, 00:49](908 MB) -PASS -- TEST 'regional_noquilt_intel' [35:33, 00:17](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [35:32, 01:18](852 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [35:32, 01:11](852 MB) -PASS -- TEST 'regional_wofs_intel' [35:27, 00:43](1585 MB) - -PASS -- COMPILE 'rrfs_intel' [22:45, 20:06] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [49:10, 01:57](910 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:11, 01:02](1092 MB) -PASS -- TEST 'rap_decomp_intel' [49:10, 01:36](913 MB) -PASS -- TEST 'rap_2threads_intel' [49:10, 01:39](997 MB) -PASS -- TEST 'rap_restart_intel' [35:21, 01:15](781 MB) -PASS -- TEST 'rap_sfcdiff_intel' [49:10, 02:09](913 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [49:10, 01:39](909 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [35:21, 01:40](783 MB) -PASS -- TEST 'hrrr_control_intel' [49:10, 01:35](909 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [49:10, 01:32](902 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [49:11, 01:24](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [35:20, 01:01](741 MB) -PASS -- TEST 'rrfs_v1beta_intel' [49:10, 01:58](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [49:10, 00:51](1870 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [49:10, 01:12](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [15:36, 12:41] -PASS -- TEST 'control_csawmg_intel' [55:19, 00:51](871 MB) -PASS -- TEST 'control_ras_intel' [55:19, 00:59](561 MB) - -PASS -- COMPILE 'wam_intel' [14:34, 13:11] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [51:15, 01:01](1568 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:45, 20:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [35:18, 02:03](1772 MB) -PASS -- TEST 'regional_control_faster_intel' [33:32, 00:19](853 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:44, 17:54] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [32:55, 01:07](1500 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [32:07, 01:21](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [31:44, 00:46](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [31:34, 01:09](703 MB) -PASS -- TEST 'control_csawmg_debug_intel' [31:30, 00:25](1014 MB) -PASS -- TEST 'control_ras_debug_intel' [31:26, 01:02](712 MB) -PASS -- TEST 'control_diag_debug_intel' [31:17, 01:15](1560 MB) -PASS -- TEST 'control_debug_p8_intel' [31:03, 00:49](1803 MB) -PASS -- TEST 'regional_debug_intel' [30:30, 00:17](895 MB) -PASS -- TEST 'rap_control_debug_intel' [30:14, 00:37](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [30:11, 00:50](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [30:06, 00:46](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [29:56, 00:44](1086 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [29:56, 00:45](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [29:31, 01:28](1172 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [29:30, 00:25](1093 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [29:12, 00:27](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [29:11, 00:32](1090 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [29:08, 00:39](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [28:54, 00:47](1083 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [28:47, 00:58](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [28:03, 01:16](1083 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [27:54, 00:39](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [27:52, 00:56](1086 MB) -PASS -- TEST 'rap_flake_debug_intel' [27:46, 00:50](1090 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:08, 02:02](1089 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:29, 06:02] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [50:14, 01:13](1590 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:32, 12:41] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [27:06, 01:16](967 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [27:03, 02:06](789 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [26:45, 02:15](788 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [26:27, 01:43](859 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [26:23, 02:17](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:38, 01:33](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:39, 01:19](690 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:49, 01:12](672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:36, 13:26] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [24:39, 00:56](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [19:42, 01:01](1010 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [19:41, 00:51](880 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:31, 12:09] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [23:51, 01:25](816 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:35, 13:07] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [23:41, 01:04](963 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [23:33, 01:03](958 MB) -PASS -- TEST 'conus13km_debug_intel' [23:33, 00:47](1051 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [23:24, 00:43](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:23, 00:44](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [22:38, 01:05](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:21, 05:31] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [22:02, 00:46](996 MB) - -PASS -- COMPILE 'hafsw_intel' [17:39, 16:44] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [17:04, 01:55](619 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [17:04, 00:46](975 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [17:02, 01:55](663 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:57, 02:11](700 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:12, 01:42](714 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:01, 01:42](394 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [15:30, 01:42](408 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [15:29, 01:22](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:28, 02:03](375 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:30, 01:22](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:13, 00:50](414 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [13:17, 01:42](500 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:13, 01:15](317 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [16:33, 11:23] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:51, 01:06](529 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:41, 20:13] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:47, 01:37](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:44, 01:15](711 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:41, 13:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:37, 01:18](713 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:35, 15:04] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [21:27, 01:52](663 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:23, 01:53](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:06, 00:34](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:35, 15:28] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [21:07, 00:49](1828 MB) - -PASS -- COMPILE 'atml_intel' [19:43, 18:36] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [18:41, 17:28] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [12:34, 11:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:52, 01:15](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:49, 01:59](2905 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [20:36, 01:57](2922 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [17:40, 16:27] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:17, 00:57](4441 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:23] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:39, 01:31](3102 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:46, 27:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:20, 01:59](1823 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:03, 02:28](1853 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [58:03, 01:59](981 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:21, 01:58](1793 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:42, 22:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:24, 01:08](1819 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:32, 16:07] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:36, 02:00](1843 MB) + +PASS -- COMPILE 's2swa_intel' [11:30, 11:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [32:36, 01:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:36, 01:56](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [24:15, 01:09](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [32:36, 01:36](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [24:15, 01:42](3084 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [32:36, 01:05](3372 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [32:36, 01:33](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 01:34](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:36, 01:57](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 04:36](4127 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:25, 05:43](4268 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [32:36, 01:58](3115 MB) + +PASS -- COMPILE 's2sw_intel' [11:28, 11:07] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:38, 00:54](1835 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:38, 01:04](1891 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:28, 10:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:38, 01:07](1893 MB) + +PASS -- COMPILE 's2s_intel' [11:28, 10:26] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [32:37, 01:06](2928 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [32:37, 01:30](2918 MB) +PASS -- TEST 'cpld_restart_c48_intel' [28:28, 01:04](2326 MB) + +PASS -- COMPILE 's2swa_faster_intel' [40:59, 40:29] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [03:01, 02:24](3130 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:42, 22:39] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:43, 01:05](1834 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:13, 01:24](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:14, 01:39](1808 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:31, 15:37] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:07, 01:30](1865 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [21:13, 00:20](572 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [21:12, 00:29](1469 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:12, 00:27](1478 MB) +PASS -- TEST 'control_latlon_intel' [21:13, 00:19](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:13, 00:31](1472 MB) +PASS -- TEST 'control_c48_intel' [21:11, 01:06](1593 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [21:11, 00:53](715 MB) +PASS -- TEST 'control_c192_intel' [21:12, 00:27](1588 MB) +PASS -- TEST 'control_c384_intel' [21:16, 01:22](1910 MB) +PASS -- TEST 'control_c384gdas_intel' [21:17, 02:02](1088 MB) +PASS -- TEST 'control_stochy_intel' [21:12, 00:24](530 MB) +PASS -- TEST 'control_stochy_restart_intel' [18:43, 01:03](332 MB) +PASS -- TEST 'control_lndp_intel' [21:13, 00:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [21:12, 00:44](524 MB) +PASS -- TEST 'control_iovr5_intel' [21:12, 00:42](525 MB) +PASS -- TEST 'control_p8_intel' [21:12, 01:40](1765 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:13, 01:50](1772 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:12, 01:51](1775 MB) +PASS -- TEST 'control_restart_p8_intel' [15:55, 01:09](915 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:12, 01:41](1761 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [15:55, 01:10](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:34](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:13, 01:06](1858 MB) +PASS -- TEST 'control_p8_lndp_intel' [21:13, 01:08](1770 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [21:13, 02:01](1823 MB) +PASS -- TEST 'control_p8_mynn_intel' [21:13, 01:42](1776 MB) +PASS -- TEST 'merra2_thompson_intel' [21:13, 01:39](1772 MB) +PASS -- TEST 'regional_control_intel' [21:12, 00:15](851 MB) +PASS -- TEST 'regional_restart_intel' [15:20, 00:33](837 MB) +PASS -- TEST 'regional_decomp_intel' [18:26, 00:51](847 MB) +PASS -- TEST 'regional_2threads_intel' [17:48, 00:50](903 MB) +PASS -- TEST 'regional_noquilt_intel' [17:39, 00:19](1169 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 01:18](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:23, 01:08](853 MB) +PASS -- TEST 'regional_wofs_intel' [17:19, 00:48](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [24:45, 24:18] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [07:52, 02:03](912 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:53, 01:03](1092 MB) +PASS -- TEST 'rap_decomp_intel' [06:30, 02:01](912 MB) +PASS -- TEST 'rap_2threads_intel' [06:12, 01:44](996 MB) +PASS -- TEST 'rap_restart_intel' [58:30, 01:28](784 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:44, 02:19](914 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:44, 02:02](910 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [56:07, 01:39](782 MB) +PASS -- TEST 'hrrr_control_intel' [05:29, 01:27](907 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 01:02](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:53, 01:14](986 MB) +PASS -- TEST 'hrrr_control_restart_intel' [00:00, 01:18](735 MB) +PASS -- TEST 'rrfs_v1beta_intel' [04:13, 01:29](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [04:13, 01:16](1871 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:07, 01:31](1860 MB) + +PASS -- COMPILE 'csawmg_intel' [13:27, 13:11] +PASS -- TEST 'control_csawmg_intel' [17:17, 00:25](872 MB) +PASS -- TEST 'control_ras_intel' [17:13, 00:51](566 MB) + +PASS -- COMPILE 'wam_intel' [38:05, 37:46] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:33, 00:55](1568 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [19:36, 18:47] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:58, 02:03](1773 MB) +PASS -- TEST 'regional_control_faster_intel' [07:57, 00:21](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 06:02] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:04, 01:16](1504 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:04, 01:22](1498 MB) +PASS -- TEST 'control_stochy_debug_intel' [15:04, 00:51](702 MB) +PASS -- TEST 'control_lndp_debug_intel' [15:04, 01:09](700 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:04, 00:22](1015 MB) +PASS -- TEST 'control_ras_debug_intel' [14:35, 00:59](710 MB) +PASS -- TEST 'control_diag_debug_intel' [14:24, 01:16](1565 MB) +PASS -- TEST 'control_debug_p8_intel' [14:14, 00:51](1805 MB) +PASS -- TEST 'regional_debug_intel' [13:07, 00:12](893 MB) +PASS -- TEST 'rap_control_debug_intel' [13:05, 00:45](1088 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:44, 00:49](1079 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 00:49](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:25, 00:45](1087 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:58, 00:39](1087 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:47, 00:35](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:28, 00:37](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:50, 00:35](1092 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:47, 00:38](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:22, 00:42](1084 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:22, 00:46](1084 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:10, 00:39](1086 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:08, 00:28](1084 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 00:47](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:02, 00:36](1092 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:35, 00:41](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:33, 01:54](1093 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:21, 06:25] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [09:33, 00:26](1592 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:34, 13:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 01:16](955 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:48, 02:18](791 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:41, 02:09](786 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:31, 02:02](853 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [02:27, 02:23](843 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:20, 01:51](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:19, 01:26](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:02, 00:28](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:41, 19:36] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [58:26, 01:25](1006 MB) +PASS -- TEST 'conus13km_2threads_intel' [54:07, 00:52](1008 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [54:06, 00:41](886 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:49, 21:12] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [54:29, 01:16](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:54, 22:50] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:11, 00:55](961 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:11, 01:05](960 MB) +PASS -- TEST 'conus13km_debug_intel' [52:11, 01:05](1055 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [52:11, 00:53](726 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [52:12, 00:18](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:11, 01:00](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:56, 25:58] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [48:07, 00:47](994 MB) + +PASS -- COMPILE 'hafsw_intel' [25:45, 25:03] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [48:08, 01:59](613 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:08, 01:12](969 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:06, 01:49](662 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [48:06, 01:27](697 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:07, 01:23](713 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:06, 00:59](391 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:07, 02:16](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [48:07, 01:43](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:10, 02:20](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [48:06, 01:33](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [48:06, 00:49](418 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:08, 00:50](491 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:07, 00:25](313 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:27, 09:57] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:33, 01:17](525 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [20:45, 19:47] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [47:09, 00:48](531 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:09, 01:39](710 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:48, 22:36] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:04, 00:48](712 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:34, 13:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [48:34, 02:11](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:34, 02:10](650 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:32, 00:25](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [46:46, 00:46](1827 MB) + +PASS -- COMPILE 'atml_intel' [16:32, 15:52] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [10:25, 09:56] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:31, 17:01] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [36:02, 01:21](3024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:02, 01:49](2906 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:02, 01:47](2923 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:29, 06:25] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [44:43, 01:14](4438 MB) SYNOPSIS: -Starting Date/Time: 20240724 20:33:13 -Ending Date/Time: 20240724 22:10:20 -Total Time: 01h:37m:56s +Starting Date/Time: 20240729 13:15:36 +Ending Date/Time: 20240729 14:41:50 +Total Time: 01h:26m:50s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index a8aba0860d..c82ee2d1b8 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -622,16 +622,13 @@ ecflow_run() { # Make sure ECF_HOST and ECF_PORT are set/ready on systems that have an # explicit ecflow node if [[ ${MACHINE_ID} == wcoss2 || ${MACHINE_ID} == acorn ]]; then - readarray -t ECFHOSTLIST < "${ECF_HOSTFILE}" - for ECF_HOST in "${ECFHOSTLIST[@]}" - do - if ssh -q "${ECF_HOST}" "exit"; then - export ECF_HOST - break - else - ECF_HOST='' - fi - done + if [[ "${HOST::1}" == "a" ]]; then + ECF_HOST=aecflow01 + elif [[ "${HOST::1}" == "c" ]]; then + ECF_HOST=cdecflow01 + elif [[ "${HOST::1}" == "d" ]]; then + ECF_HOST=ddecflow01 + fi elif [[ ${MACHINE_ID} == hera || ${MACHINE_ID} == jet ]]; then module load ecflow fi diff --git a/tests/test_changes.list b/tests/test_changes.list index 47f77b1466..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,61 +0,0 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 intel -cpld_mpi_gfsv17 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_bmark_p8 intel -cpld_restart_bmark_p8 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_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -hafs_regional_atm_ocn intel -hafs_regional_atm_wav intel -hafs_regional_atm_ocn_wav intel -hafs_regional_docn intel -hafs_regional_docn_oisst intel -hafs_regional_datm_cdeps intel -datm_cdeps_control_cfsr intel -datm_cdeps_restart_cfsr intel -datm_cdeps_control_gefs intel -datm_cdeps_iau_gefs intel -datm_cdeps_stochy_gefs intel -datm_cdeps_ciceC_cfsr intel -datm_cdeps_bulk_cfsr intel -datm_cdeps_bulk_gefs intel -datm_cdeps_mx025_cfsr intel -datm_cdeps_mx025_gefs intel -datm_cdeps_multiple_files_cfsr intel -datm_cdeps_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -atmwav_control_noaero_p8 intel -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu From ee4f19a0a630fc2245a313bfe20302b5a6b555aa Mon Sep 17 00:00:00 2001 From: Daniel Sarmiento <42810219+dpsarmie@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:15:05 -0400 Subject: [PATCH 6/8] Add omega calculation and change LSM diag option to RTs (#2373) * UFSWM - Adds pass_full_omega_to_physics_in_non_hydrostatic_model parameter in the global_control.nml.IN namelist and sets it to true for non-hydrostatic runs. An additional field (omga) has been added to the diag_tables. --- tests/bl_date.conf | 2 +- tests/default_vars.sh | 7 + tests/logs/OpnReqTests_control_p8_hera.log | 48 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 24 +- .../OpnReqTests_regional_control_hera.log | 30 +- tests/logs/RegressionTests_acorn.log | 571 +++++++------ tests/logs/RegressionTests_derecho.log | 615 +++++++------- tests/logs/RegressionTests_gaea.log | 619 +++++++------- tests/logs/RegressionTests_hera.log | 757 +++++++++--------- tests/logs/RegressionTests_hercules.log | 728 ++++++++--------- tests/logs/RegressionTests_jet.log | 564 ++++++------- tests/logs/RegressionTests_orion.log | 619 +++++++------- tests/logs/RegressionTests_wcoss2.log | 524 ++++++------ tests/parm/diag_table/diag_table_cpld.IN | 1 + tests/parm/diag_table/diag_table_template | 1 + tests/parm/diag_table/diag_table_thompson | 1 + tests/parm/diag_table/diag_table_wam | 5 +- tests/parm/global_control.nml.IN | 1 + tests/test_changes.list | 77 ++ tests/tests/cpld_control_gfsv17 | 2 +- tests/tests/cpld_control_gfsv17_iau | 2 +- tests/tests/cpld_control_sfs | 2 +- tests/tests/cpld_debug_gfsv17 | 2 +- tests/tests/cpld_mpi_gfsv17 | 2 +- tests/tests/cpld_restart_gfsv17 | 2 +- tests/tests/gnv1_nested | 2 +- 26 files changed, 2787 insertions(+), 2421 deletions(-) diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 5448183396..2fc1026343 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20240724 +export BL_DATE=20240730 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index ef44dfe4a9..78a89ec8e6 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -764,6 +764,7 @@ export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.false. export MAX_OUTPUT_FIELDS=310 +export UPDATE_FULL_OMEGA=.false. # Stochastic physics export STOCHINI=.false. @@ -1101,6 +1102,12 @@ export NY_GLB=320 export NPZ=127 export NPZP=128 +# Use updated omega calculations if +# hydrostatic is set to false +if [[ "${HYDROSTATIC}" == .false. ]]; then + export UPDATE_FULL_OMEGA=.true. +fi + # default resources export DOMAINS_STACK_SIZE=8000000 export INPES=${INPES_cpl_dflt} diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 774fbac358..b52438f989 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jul 26 20:30:45 UTC 2024 +Wed Jul 31 16:54:12 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 280.977475 - 0: The maximum resident set size (KB) = 1454304 + 0: The total amount of wall time = 279.178521 + 0: The maximum resident set size (KB) = 1452196 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 966.539273 - 0: The maximum resident set size (KB) = 1439060 + 0: The total amount of wall time = 980.789299 + 0: The maximum resident set size (KB) = 1438832 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.254197 - 0: The maximum resident set size (KB) = 1437604 + 0: The total amount of wall time = 250.532991 + 0: The maximum resident set size (KB) = 1435764 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.618477 - 0: The maximum resident set size (KB) = 1432416 + 0: The total amount of wall time = 252.858828 + 0: The maximum resident set size (KB) = 1423936 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 252.799465 - 0: The maximum resident set size (KB) = 1431152 + 0: The total amount of wall time = 250.469720 + 0: The maximum resident set size (KB) = 1435444 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 246.985477 - 0: The maximum resident set size (KB) = 1447148 + 0: The total amount of wall time = 251.094450 + 0: The maximum resident set size (KB) = 1435512 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2494518/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/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 = 249.919086 - 0: The maximum resident set size (KB) = 1434244 + 0: The total amount of wall time = 250.907119 + 0: The maximum resident set size (KB) = 1424508 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 21:54:52 UTC 2024 -Elapsed time: 01h:24m:07s. Have a nice day! +Wed Jul 31 18:06:20 UTC 2024 +Elapsed time: 01h:12m:08s. 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 a5a3fcd863..b2c3bea61e 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Fri Jul 26 19:19:32 UTC 2024 +Wed Jul 31 15:34:20 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 1333.999638 - 0: The maximum resident set size (KB) = 1540440 + 0: The total amount of wall time = 1598.613826 + 0: The maximum resident set size (KB) = 1535936 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 724.841272 - 0: The maximum resident set size (KB) = 1538712 + 0: The total amount of wall time = 726.442492 + 0: The maximum resident set size (KB) = 1538112 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1506640/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/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 = 520.811850 - 0: The maximum resident set size (KB) = 1511524 + 0: The total amount of wall time = 465.781642 + 0: The maximum resident set size (KB) = 1538556 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 20:30:45 UTC 2024 -Elapsed time: 01h:11m:14s. Have a nice day! +Wed Jul 31 16:54:12 UTC 2024 +Elapsed time: 01h:19m:53s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index b1326ed3c2..3e72d37929 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Fri Jul 26 16:44:32 UTC 2024 +Wed Jul 31 13:03:37 UTC 2024 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 1470.646865 - 0: The maximum resident set size (KB) = 769104 + 0: The total amount of wall time = 1465.693547 + 0: The maximum resident set size (KB) = 757880 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2296.345459 - 0: The maximum resident set size (KB) = 731460 + 0: The total amount of wall time = 2169.422270 + 0: The maximum resident set size (KB) = 729460 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2252.359216 - 0: The maximum resident set size (KB) = 715680 + 0: The total amount of wall time = 2264.677203 + 0: The maximum resident set size (KB) = 730040 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_268113/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/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 = 2288.966852 - 0: The maximum resident set size (KB) = 718224 + 0: The total amount of wall time = 2181.123987 + 0: The maximum resident set size (KB) = 735016 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jul 26 19:19:31 UTC 2024 -Elapsed time: 02h:35m:00s. Have a nice day! +Wed Jul 31 15:34:18 UTC 2024 +Elapsed time: 02h:30m:42s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2d37737fda..fb5048da8d 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: -4124fe82547dcec17e208ff919f41db354b212e6 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,274 +35,345 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2547232 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1128655 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:03] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [32:52, 01:50](3209 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [56:47, 02:34](3214 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 15:48] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:47, 01:33](1920 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:26, 03:00](1957 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [59:03, 02:53](1093 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:48, 03:12](1893 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:27] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [50:41, 03:03](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:40, 02:47](1967 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [23:57, 03:15](1091 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:42, 03:29](1898 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:30, 16:38] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:46, 01:06](1922 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:18] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [51:41, 01:24](1918 MB) -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:18, 04:50] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [39:00, 02:59](1962 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:53] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [02:53, 02:50](1962 MB) -PASS -- COMPILE 's2swa_intel' [11:25, 10:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [32:52, 01:22](3243 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:52, 02:01](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:05, 02:18](3176 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [32:52, 02:24](3264 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:33, 01:28](3192 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:52, 02:00](3480 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:52, 01:23](3236 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [32:53, 01:50](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:52, 01:41](3241 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [32:52, 02:05](3222 MB) +PASS -- COMPILE 's2swa_intel' [11:26, 11:09] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [56:45, 01:31](3244 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:45, 01:32](3241 MB) +PASS -- TEST 'cpld_restart_p8_intel' [40:39, 01:11](3176 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [56:45, 01:57](3265 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:51](3191 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [56:45, 01:15](3475 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [56:45, 01:11](3235 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [56:46, 01:41](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:45, 01:41](3243 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [56:45, 01:54](3223 MB) -PASS -- COMPILE 's2sw_intel' [11:25, 10:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:52, 01:42](1935 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:52, 02:18](1996 MB) +PASS -- COMPILE 's2sw_intel' [11:25, 10:34] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [56:46, 01:55](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [56:46, 02:13](2004 MB) -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [33:53, 02:22](1987 MB) +PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:47, 01:28](1994 MB) -PASS -- COMPILE 's2s_intel' [10:25, 09:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [33:51, 00:55](2941 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [33:51, 01:26](2940 MB) -PASS -- TEST 'cpld_restart_c48_intel' [29:24, 00:53](2338 MB) +PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [57:46, 00:57](2948 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [57:46, 01:28](2945 MB) +PASS -- TEST 'cpld_restart_c48_intel' [53:21, 01:41](2360 MB) -PASS -- COMPILE 's2swa_faster_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [27:46, 01:59](3239 MB) +PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:02] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [52:42, 01:51](3237 MB) -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:41] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:46, 01:46](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [58:53, 00:57](1116 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [58:13, 01:54](1912 MB) +PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:40, 01:27](1938 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:55, 01:08](1102 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:29, 01:00](1910 MB) -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:18, 04:27] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:42, 00:55](1980 MB) +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:31] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:35, 00:59](1981 MB) PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [20:45, 00:43](669 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [20:11, 00:22](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:42, 01:12](1577 MB) -PASS -- TEST 'control_latlon_intel' [16:00, 00:18](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:35, 00:48](1571 MB) -PASS -- TEST 'control_c48_intel' [13:32, 00:57](1609 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:19, 01:34](733 MB) -PASS -- TEST 'control_c192_intel' [13:00, 01:21](1691 MB) -PASS -- TEST 'control_c384_intel' [12:38, 02:28](1998 MB) -PASS -- TEST 'control_c384gdas_intel' [12:32, 02:38](1197 MB) -PASS -- TEST 'control_stochy_intel' [11:40, 00:35](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [55:57, 01:12](434 MB) -PASS -- TEST 'control_lndp_intel' [10:48, 01:16](628 MB) -PASS -- TEST 'control_iovr4_intel' [08:31, 00:43](623 MB) -PASS -- TEST 'control_iovr5_intel' [06:55, 01:05](625 MB) -PASS -- TEST 'control_p8_intel' [05:44, 02:33](1869 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:35, 02:16](1870 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 02:04](1872 MB) -PASS -- TEST 'control_restart_p8_intel' [51:15, 02:19](1022 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:43, 01:52](1859 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [51:02, 02:05](1025 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:33, 01:51](1857 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:51](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [00:33, 01:07](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [00:27, 02:33](1931 MB) -PASS -- TEST 'control_p8_mynn_intel' [59:35, 01:49](1874 MB) -PASS -- TEST 'merra2_thompson_intel' [57:55, 02:34](1871 MB) -PASS -- TEST 'regional_control_intel' [56:58, 00:18](873 MB) -PASS -- TEST 'regional_restart_intel' [39:54, 00:48](874 MB) -PASS -- TEST 'regional_decomp_intel' [56:23, 00:20](885 MB) -PASS -- TEST 'regional_2threads_intel' [56:21, 00:56](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [55:07, 00:45](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [54:35, 00:22](880 MB) -PASS -- TEST 'regional_wofs_intel' [54:05, 00:43](1602 MB) - -PASS -- COMPILE 'ifi_intel' [09:23, 08:33] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [24:28, 00:20](870 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [24:28, 01:06](876 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [24:29, 00:17](1002 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:30] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [23:17, 01:38](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:18, 01:33](1189 MB) -PASS -- TEST 'rap_decomp_intel' [23:17, 01:35](1010 MB) -PASS -- TEST 'rap_2threads_intel' [23:17, 02:30](1092 MB) -PASS -- TEST 'rap_restart_intel' [54:04, 02:56](888 MB) -PASS -- TEST 'rap_sfcdiff_intel' [23:17, 03:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [23:17, 02:12](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [54:04, 02:35](886 MB) -PASS -- TEST 'hrrr_control_intel' [23:17, 02:11](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [23:17, 02:21](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [23:18, 02:12](1086 MB) -PASS -- TEST 'hrrr_control_restart_intel' [53:48, 00:57](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [53:33, 02:34](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [53:14, 01:16](1964 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [51:15, 00:34](1958 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:57] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [23:29, 01:13](970 MB) -PASS -- TEST 'control_ras_intel' [23:29, 00:35](658 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 08:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [23:29, 00:37](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [51:05, 02:25](1860 MB) -PASS -- TEST 'regional_control_faster_intel' [51:04, 00:33](865 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:20, 05:41] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [50:53, 00:26](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [50:24, 00:36](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [49:12, 00:35](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [48:36, 00:27](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [48:32, 01:02](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [48:10, 01:00](826 MB) -PASS -- TEST 'control_diag_debug_intel' [48:01, 00:50](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [47:36, 00:55](1911 MB) -PASS -- TEST 'regional_debug_intel' [46:59, 00:42](948 MB) -PASS -- TEST 'rap_control_debug_intel' [45:36, 00:56](1196 MB) -PASS -- TEST 'hrrr_control_debug_intel' [45:00, 00:40](1192 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [44:53, 00:27](1199 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [44:53, 00:25](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [44:36, 00:15](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [44:24, 00:37](1278 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [44:06, 01:15](1194 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [43:44, 00:34](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [43:06, 01:11](1199 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [42:50, 00:20](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [42:39, 01:14](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [41:39, 01:00](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [41:10, 01:10](1195 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [40:58, 00:54](1192 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [40:44, 00:19](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [40:41, 01:13](1200 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [40:38, 02:59](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [20:35, 03:46] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [40:34, 01:01](1704 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:42, 08:53] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [38:28, 00:53](1060 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [38:03, 02:35](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [37:19, 03:58](888 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [37:18, 02:59](951 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [37:05, 02:36](943 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:29, 03:51](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [26:58, 01:53](796 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [28:06, 00:18](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [41:57, 11:48] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [35:43, 00:43](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [29:33, 00:32](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [29:32, 00:23](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:24, 09:03] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [21:05, 01:36](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [57:17, 03:52] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [26:11, 00:41](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [26:11, 00:56](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [26:11, 01:00](1183 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:11, 00:57](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:12, 00:58](1146 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:11, 01:08](1244 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [58:20, 03:49] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:09, 01:11](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [04:21, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [18:59, 01:44](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [18:59, 00:48](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [18:57, 02:07](765 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:22, 02:13](792 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:18, 01:58](850 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [15:02, 01:25](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:42, 01:29](524 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [12:41, 00:59](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:37, 03:00](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:47, 00:55](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:51, 01:14](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:53, 01:29](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:37, 01:02](418 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 03:15](1715 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [57:18, 04:15] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:13, 00:47](629 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [05:23, 13:44] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:35, 01:32](709 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [05:44, 01:48](799 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [00:16, 10:15] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [19:12, 01:41](797 MB) - -PASS -- COMPILE 'hafs_all_intel' [48:08, 09:44] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [19:03, 02:11](776 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [19:03, 02:13](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:01, 00:45](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [40:56, 09:13] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [20:06, 00:46](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 00:12](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [20:06, 00:28](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [20:06, 00:17](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [20:06, 00:52](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [20:06, 00:18](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [20:06, 00:54](770 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [20:06, 00:13](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:07, 01:26](696 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:07, 01:34](675 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [20:06, 00:21](755 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [20:06, 00:28](2036 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [20:06, 00:59](2034 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [25:38, 09:12] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:07, 00:17](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [23:56, 00:16](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [23:56, 00:21](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:30, 00:46](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:49, 09:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [50:19, 01:36](1930 MB) - -PASS -- COMPILE 'atml_intel' [34:49, 10:38] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [50:20, 02:14](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [50:20, 02:15](1892 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [40:50, 00:51](1045 MB) - -PASS -- COMPILE 'atml_debug_intel' [29:43, 04:44] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [54:12, 02:45](1932 MB) - -PASS -- COMPILE 'atmw_intel' [31:45, 09:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [49:19, 02:06](1905 MB) - -PASS -- COMPILE 'atmaero_intel' [32:46, 09:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [47:19, 01:47](3131 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [47:19, 01:33](3016 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [47:19, 01:44](3026 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [28:42, 03:48] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [50:27, 02:02](4557 MB) +PASS -- TEST 'control_flake_intel' [44:37, 00:29](670 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [43:01, 01:07](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:00, 00:38](1579 MB) +PASS -- TEST 'control_latlon_intel' [42:34, 01:02](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:19, 01:12](1575 MB) +PASS -- TEST 'control_c48_intel' [40:18, 00:41](1612 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [39:22, 00:55](733 MB) +PASS -- TEST 'control_c192_intel' [39:18, 01:05](1692 MB) +PASS -- TEST 'control_c384_intel' [38:11, 02:17](2001 MB) +PASS -- TEST 'control_c384gdas_intel' [37:53, 02:46](1190 MB) +PASS -- TEST 'control_stochy_intel' [37:37, 00:34](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [21:54, 00:38](434 MB) +PASS -- TEST 'control_lndp_intel' [35:34, 01:13](630 MB) +PASS -- TEST 'control_iovr4_intel' [33:25, 00:42](624 MB) +PASS -- TEST 'control_iovr5_intel' [31:50, 00:46](624 MB) +PASS -- TEST 'control_p8_intel' [30:45, 02:16](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [30:32, 02:37](1869 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [29:52, 02:16](1871 MB) +PASS -- TEST 'control_restart_p8_intel' [16:48, 02:08](1020 MB) +PASS -- TEST 'control_noqr_p8_intel' [29:43, 01:46](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [16:48, 02:13](1024 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:42, 01:38](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [28:49, 01:59](1960 MB) +PASS -- TEST 'control_p8_lndp_intel' [28:42, 00:23](1873 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [28:12, 02:36](1923 MB) +PASS -- TEST 'control_p8_mynn_intel' [26:49, 02:05](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [26:29, 02:19](1871 MB) +PASS -- TEST 'regional_control_intel' [25:51, 00:13](871 MB) +PASS -- TEST 'regional_restart_intel' [20:02, 00:42](880 MB) +PASS -- TEST 'regional_decomp_intel' [24:52, 00:49](881 MB) +PASS -- TEST 'regional_2threads_intel' [24:41, 01:09](1004 MB) +PASS -- TEST 'regional_noquilt_intel' [23:29, 01:07](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [23:06, 00:38](872 MB) +PASS -- TEST 'regional_wofs_intel' [22:29, 00:39](1603 MB) + +PASS -- COMPILE 'ifi_intel' [09:21, 08:36] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [48:11, 01:09](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [48:11, 00:14](873 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [48:12, 00:40](1001 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:40] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [46:23, 02:12](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 01:23](1193 MB) +PASS -- TEST 'rap_decomp_intel' [46:23, 02:24](1010 MB) +PASS -- TEST 'rap_2threads_intel' [46:23, 01:50](1095 MB) +PASS -- TEST 'rap_restart_intel' [21:43, 02:44](890 MB) +PASS -- TEST 'rap_sfcdiff_intel' [46:23, 03:09](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:23, 01:59](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [20:55, 02:48](892 MB) +PASS -- TEST 'hrrr_control_intel' [46:23, 02:43](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:23, 02:10](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:24, 02:51](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [20:26, 00:39](838 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:29, 02:54](1003 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [19:10, 01:21](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:39, 00:48](1959 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [47:25, 00:54](969 MB) +PASS -- TEST 'control_ras_intel' [47:25, 00:26](658 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [47:24, 00:40](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [18:06, 02:05](1868 MB) +PASS -- TEST 'regional_control_faster_intel' [16:47, 01:09](868 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [32:49, 05:44] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:20, 00:49](1615 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:20, 00:57](1617 MB) +PASS -- TEST 'control_stochy_debug_intel' [16:02, 00:39](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [16:06, 00:20](813 MB) +PASS -- TEST 'control_csawmg_debug_intel' [15:53, 01:02](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [15:50, 01:05](820 MB) +PASS -- TEST 'control_diag_debug_intel' [14:42, 00:51](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [14:19, 00:40](1906 MB) +PASS -- TEST 'regional_debug_intel' [13:49, 00:37](948 MB) +PASS -- TEST 'rap_control_debug_intel' [13:44, 00:58](1199 MB) +PASS -- TEST 'hrrr_control_debug_intel' [13:30, 01:08](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:07, 00:45](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:36, 01:10](1197 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:37, 00:49](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:16, 01:30](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 00:37](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 00:57](1203 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:34, 01:04](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:34, 01:08](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:04, 00:26](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:48, 00:36](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 00:51](1196 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:51, 00:50](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 01:05](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:23, 00:35](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:13, 02:44](1200 MB) + +PASS -- COMPILE 'wam_debug_intel' [55:12, 03:53] ( 840 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [59:19, 08:56] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:22, 00:57](1054 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:21, 01:55](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:21, 03:27](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:21, 02:38](953 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:22, 01:56](939 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:21, 03:16](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:09, 02:30](797 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:14](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [02:18, 11:59] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [48:20, 01:17](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:43, 00:47](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [16:42, 00:37](976 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:12, 09:04] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:00, 00:46](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [51:08, 04:03] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:16, 00:56](1075 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:16, 00:50](1071 MB) +PASS -- TEST 'conus13km_debug_intel' [56:16, 00:29](1163 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [56:16, 00:47](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [56:17, 01:15](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [56:16, 00:43](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 03:44] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [56:16, 00:48](1096 MB) + +PASS -- COMPILE 'hafsw_intel' [57:12, 10:33] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [49:13, 01:55](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:13, 00:58](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:11, 01:21](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [49:11, 01:54](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:12, 01:35](813 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:11, 00:52](480 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:12, 01:31](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [49:12, 01:05](388 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:15, 02:34](448 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:11, 01:37](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:11, 01:21](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:13, 01:39](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:12, 00:51](417 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [50:05, 04:10] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:18, 01:11](689 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [57:13, 13:46] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [44:06, 01:22](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:36, 01:08](802 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [29:44, 10:18] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:09, 01:07](795 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:23, 09:34] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [40:16, 01:40](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:47, 01:37](740 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:43, 00:15](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:36] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [35:22, 00:34](771 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:40, 00:21](744 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:24, 00:13](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:52, 01:10](649 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:47, 00:17](650 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:13, 00:32](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:43, 00:41](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [30:16, 01:12](651 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:42, 01:20](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:37, 01:19](670 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:37, 00:37](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:02, 00:37](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [24:34, 00:39](2036 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:04, 00:54](771 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:01, 00:42](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:01, 00:14](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [50:29, 00:41](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:42, 09:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:43, 01:39](1925 MB) + +PASS -- COMPILE 'atml_intel' [49:03, 10:49] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:18, 02:11](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [03:18, 02:06](1896 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [54:53, 00:53](1044 MB) + +PASS -- COMPILE 'atml_debug_intel' [41:57, 04:37] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 02:01](1938 MB) + +PASS -- COMPILE 'atmw_intel' [46:00, 09:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:33](1904 MB) + +PASS -- COMPILE 'atmaero_intel' [44:59, 09:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:10, 01:49](3132 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [04:10, 02:11](3016 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:10, 02:09](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [38:54, 03:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [09:29, 01:54](4564 MB) SYNOPSIS: -Starting Date/Time: 20240729 13:15:25 -Ending Date/Time: 20240729 15:38:53 -Total Time: 02h:23m:54s +Starting Date/Time: 20240731 13:51:30 +Ending Date/Time: 20240731 16:18:19 +Total Time: 02h:27m:14s Compiles Completed: 38/38 -Tests Completed: 179/179 +Tests Completed: 177/179 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ACORN REGRESSION TESTING LOG==== +====START OF ACORN REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1769361 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-l) - USE CONFIG FILE: rt.test +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:16, 03:51] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [03:14, 00:46](1702 MB) + +PASS -- COMPILE 'hafsw_intel' [11:24, 10:36] ( 2 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [56:06, 03:33](1710 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:52:30 +Ending Date/Time: 20240731 17:15:35 +Total Time: 00h:23m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 0e6673c834..e49fb23fde 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,285 +35,356 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_15902 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_118977 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [01:45, 23:26] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:02, 05:35](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:45, 25:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 14:38](1918 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:23, 15:45](1946 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:22, 07:47](1080 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:00, 16:33](1886 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [03:44, 25:23] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:13, 14:31](1917 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [51:41, 14:06] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [00:44, 22:47] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:26, 06:14](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:29, 06:24](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:04, 04:01](3160 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:17, 06:22](3251 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:59, 04:06](3185 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 05:58](3730 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:12, 06:19](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:12, 05:15](3542 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:13, 06:07](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:37, 09:33](3894 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:50, 06:29](3625 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:45, 10:28](4524 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 07:01](4669 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:01, 05:55](3210 MB) - -PASS -- COMPILE 's2sw_intel' [58:43, 21:15] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:48](1929 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 04:57](1987 MB) - -PASS -- COMPILE 's2swa_debug_intel' [52:42, 14:36] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:42, 08:15](3301 MB) - -PASS -- COMPILE 's2sw_debug_intel' [51:41, 13:25] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:21, 05:44](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [55:43, 17:30] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 04:58](2001 MB) - -PASS -- COMPILE 's2s_intel' [55:43, 17:40] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [20:16, 06:43](2943 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:10, 02:21](2945 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:08, 01:39](2344 MB) - -PASS -- COMPILE 's2swa_faster_intel' [43:28, 26:16] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:02, 06:02](3230 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [39:27, 21:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:31, 14:54](1942 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:58](1094 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:35, 16:43](1911 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [27:21, 11:16] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:36, 23:37](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [29:24, 15:34] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [15:35, 03:24](667 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:58, 02:27](1571 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:12, 02:29](1573 MB) -PASS -- TEST 'control_latlon_intel' [12:55, 02:25](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:58, 02:25](1570 MB) -PASS -- TEST 'control_c48_intel' [20:02, 06:03](1621 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:31, 05:14](736 MB) -PASS -- TEST 'control_c192_intel' [15:40, 08:41](1689 MB) -PASS -- TEST 'control_c384_intel' [15:36, 08:44](2003 MB) -PASS -- TEST 'control_c384gdas_intel' [15:26, 07:05](1201 MB) -PASS -- TEST 'control_stochy_intel' [06:37, 01:27](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 00:52](440 MB) -PASS -- TEST 'control_lndp_intel' [05:30, 01:22](625 MB) -PASS -- TEST 'control_iovr4_intel' [06:33, 02:07](625 MB) -PASS -- TEST 'control_iovr5_intel' [05:37, 02:08](626 MB) -PASS -- TEST 'control_p8_intel' [07:16, 03:10](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:02](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:16, 03:11](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [04:13, 01:57](1018 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:16, 03:20](1860 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:06, 02:01](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:26, 03:20](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:24, 03:00](1957 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:10, 05:07](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:20, 03:48](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:16, 03:10](1875 MB) -PASS -- TEST 'merra2_thompson_intel' [06:19, 03:31](1867 MB) -PASS -- TEST 'regional_control_intel' [06:55, 05:03](874 MB) -PASS -- TEST 'regional_restart_intel' [07:54, 03:02](874 MB) -PASS -- TEST 'regional_decomp_intel' [06:54, 05:15](876 MB) -PASS -- TEST 'regional_noquilt_intel' [06:55, 04:54](1194 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 04:54](864 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:51, 05:00](883 MB) -PASS -- TEST 'regional_wofs_intel' [07:49, 05:48](1608 MB) - -PASS -- COMPILE 'rrfs_intel' [27:24, 13:20] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:09, 06:09](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:48, 03:42](1188 MB) -PASS -- TEST 'rap_decomp_intel' [11:12, 06:23](1006 MB) -PASS -- TEST 'rap_2threads_intel' [11:12, 05:38](1097 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 03:14](881 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:06, 06:11](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:06, 06:22](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:05, 04:36](882 MB) -PASS -- TEST 'hrrr_control_intel' [06:16, 03:17](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:20](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [22:12, 02:52](1087 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 01:46](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:07, 06:00](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:42, 07:21](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 07:06](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [23:16, 11:25] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:54, 06:35](963 MB) -PASS -- TEST 'control_ras_intel' [04:33, 02:52](655 MB) - -PASS -- COMPILE 'wam_intel' [21:16, 11:04] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:11, 09:59](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [27:17, 17:32] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:23, 03:04](1861 MB) -PASS -- TEST 'regional_control_faster_intel' [06:56, 04:43](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [20:17, 12:53] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:19, 02:34](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:24, 02:31](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [13:36, 02:53](810 MB) -PASS -- TEST 'control_lndp_debug_intel' [12:33, 02:40](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [16:19, 04:40](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [14:34, 02:35](820 MB) -PASS -- TEST 'control_diag_debug_intel' [16:53, 02:34](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [18:19, 03:22](1905 MB) -PASS -- TEST 'regional_debug_intel' [25:18, 16:32](941 MB) -PASS -- TEST 'rap_control_debug_intel' [06:40, 04:41](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 04:31](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:25, 04:40](1194 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:28, 04:39](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 04:38](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:03, 05:00](1276 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 04:48](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 04:51](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:34, 04:44](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:28, 04:49](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:32, 04:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:33, 04:42](1194 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 07:31](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:27, 04:36](1187 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 05:35](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 04:43](1193 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:27](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [14:14, 06:46] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:12, 12:22](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [37:32, 11:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:28, 03:41](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:05, 05:59](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:02, 03:16](881 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:07, 05:21](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:54, 03:04](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:54, 03:35](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 03:54](795 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:34](773 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:28, 14:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:28, 01:55](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:15, 01:04](1085 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:08, 01:07](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:32, 11:21] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:08, 03:39](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:29, 07:07] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:35, 04:32](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:33, 04:26](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [16:42, 13:30](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:42, 13:26](836 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:42, 08:05](1157 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 13:22](1219 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:25, 07:02] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 04:53](1095 MB) - -PASS -- COMPILE 'hafsw_intel' [38:31, 18:08] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:31, 04:37](717 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:13, 05:18](1066 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:01, 06:30](775 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:39, 11:00](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:42, 12:06](814 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:12, 04:41](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:39, 05:57](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:02, 02:21](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 06:22](459 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:02, 03:23](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:05](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 03:51](588 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:38, 01:21](431 MB) -PASS -- TEST 'gnv1_nested_intel' [07:21, 04:10](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [28:24, 08:36] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:11, 13:13](634 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [42:33, 26:51] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:26, 07:12](634 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:41, 07:14](688 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:42, 19:42] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:30, 05:22](679 MB) - -PASS -- COMPILE 'hafs_all_intel' [26:21, 15:54] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:38, 05:38](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:50, 05:39](742 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:28, 16:14](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:20, 08:40] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:47, 02:28](757 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:46, 01:34](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:44, 02:20](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:45, 02:22](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:45, 02:24](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:46, 02:28](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:29](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:32, 02:21](649 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:30, 05:38](699 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:22, 05:43](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:33, 02:29](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:56, 03:55](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:53, 03:53](2037 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:18, 06:04] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:26, 05:09](738 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:15, 08:51] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [14:34, 02:30](756 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [11:14, 02:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:39, 01:13](310 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:27, 01:07](458 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:39, 00:43](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:18, 13:22] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:33, 03:53](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:20, 12:19] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 03:49](1909 MB) - -PASS -- COMPILE 'atml_intel' [19:20, 15:20] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:06](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:37, 06:58](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:04, 03:55](1038 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:19, 09:54] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:43, 06:20](1938 MB) - -PASS -- COMPILE 'atmw_intel' [15:20, 13:59] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:18, 02:15](1893 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:47, 04:06](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:51, 04:18](2996 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:19, 04:34](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:44] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:59, 21:50](4535 MB) +PASS -- COMPILE 's2swa_32bit_intel' [49:21, 21:52] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 05:56](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:23, 24:30] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:21, 14:33](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:44, 16:01](1947 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:32, 08:06](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:33](1889 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:23, 23:59] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:22](1911 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:20, 12:21] ( 1530 warnings 1948 remarks ) + +PASS -- COMPILE 's2swa_intel' [49:30, 21:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:11, 08:17](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:38, 07:40](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:07](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 07:41](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 04:00](3188 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 06:32](3726 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 07:49](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 05:32](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:36, 07:53](3236 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:29, 11:52](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:53, 06:43](3626 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:46, 12:50](4522 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:01, 07:21](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 05:57](3210 MB) + +PASS -- COMPILE 's2sw_intel' [47:29, 20:30] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 04:54](1920 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 05:08](1992 MB) + +PASS -- COMPILE 's2swa_debug_intel' [39:26, 12:06] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:18, 08:22](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [38:28, 11:28] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:55](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [43:26, 16:06] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:50](1991 MB) + +PASS -- COMPILE 's2s_intel' [44:22, 16:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:51](2953 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:09, 02:32](2951 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:44](2370 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:15, 26:13] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 06:26](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:21, 22:29] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:37, 14:53](1943 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:42, 09:03](1118 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:02, 16:58](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:15] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:40, 23:47](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:14, 15:30] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:40, 03:29](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:37](1569 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:35](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:23, 02:30](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:26, 02:31](1574 MB) +PASS -- TEST 'control_c48_intel' [34:17, 06:09](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [33:36, 05:26](734 MB) +PASS -- TEST 'control_c192_intel' [12:11, 09:08](1695 MB) +PASS -- TEST 'control_c384_intel' [19:09, 09:07](2016 MB) +PASS -- TEST 'control_c384gdas_intel' [17:13, 07:34](1200 MB) +PASS -- TEST 'control_stochy_intel' [03:40, 01:29](626 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](439 MB) +PASS -- TEST 'control_lndp_intel' [03:42, 01:27](624 MB) +PASS -- TEST 'control_iovr4_intel' [03:51, 02:10](624 MB) +PASS -- TEST 'control_iovr5_intel' [03:45, 02:12](622 MB) +PASS -- TEST 'control_p8_intel' [05:37, 03:23](1873 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:15](1861 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:19](1866 MB) +PASS -- TEST 'control_restart_p8_intel' [05:24, 02:11](1017 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:12](1864 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 02:03](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:00, 03:22](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:02](1955 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:05](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:05](1925 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:22](1877 MB) +PASS -- TEST 'merra2_thompson_intel' [07:01, 03:41](1869 MB) +PASS -- TEST 'regional_control_intel' [08:17, 05:13](875 MB) +PASS -- TEST 'regional_restart_intel' [04:59, 03:15](872 MB) +PASS -- TEST 'regional_decomp_intel' [08:06, 05:35](876 MB) +PASS -- TEST 'regional_noquilt_intel' [07:03, 05:08](1197 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:03](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:06](873 MB) +PASS -- TEST 'regional_wofs_intel' [08:51, 05:57](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [15:19, 13:19] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:35, 06:47](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:12](1191 MB) +PASS -- TEST 'rap_decomp_intel' [09:35, 07:00](1005 MB) +PASS -- TEST 'rap_2threads_intel' [09:34, 06:20](1096 MB) +PASS -- TEST 'rap_restart_intel' [05:16, 03:15](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:50](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 07:05](1008 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:16, 04:54](879 MB) +PASS -- TEST 'hrrr_control_intel' [07:13, 03:41](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 03:28](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:42, 02:57](1084 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:48](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:43, 06:42](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:02](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:50](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [14:13, 11:30] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:08, 06:48](962 MB) +PASS -- TEST 'control_ras_intel' [08:41, 02:56](655 MB) + +PASS -- COMPILE 'wam_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [32:06, 11:11](1661 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:17] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:43, 03:05](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:59](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:20, 12:51] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:17, 02:40](1613 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:44, 02:33](1610 MB) +PASS -- TEST 'control_stochy_debug_intel' [09:35, 02:53](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [22:37, 02:45](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:57, 04:49](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [21:03, 02:48](818 MB) +PASS -- TEST 'control_diag_debug_intel' [22:46, 02:43](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [21:34, 03:25](1906 MB) +PASS -- TEST 'regional_debug_intel' [21:54, 16:56](929 MB) +PASS -- TEST 'rap_control_debug_intel' [23:13, 05:01](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:11, 05:03](1188 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [21:11, 04:38](1196 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [21:09, 04:41](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [20:00, 04:51](1192 MB) +PASS -- TEST 'rap_diag_debug_intel' [20:46, 05:05](1279 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:05, 04:48](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:02, 05:01](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [18:06, 04:58](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:06, 05:07](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [16:18, 04:36](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [16:01, 05:01](1192 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:04, 07:44](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:20, 04:46](1188 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:06, 05:37](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:11, 04:42](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:38, 08:02](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:13, 07:01] ( 844 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:13, 11:19] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:36, 03:32](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 06:09](880 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:30, 02:52](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 05:15](947 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:12, 03:16](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 02:59](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:59, 04:01](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:40](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:00, 15:24] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [13:13, 01:52](1085 MB) +PASS -- TEST 'conus13km_2threads_intel' [09:11, 01:03](1082 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:10](973 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [04:55, 11:23] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:53, 03:41](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:04, 07:18] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:29, 04:42](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:49, 04:52](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [38:37, 14:01](1172 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 13:40](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:20, 08:01](1151 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:21, 13:15](1220 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:02, 06:58] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:38, 04:49](1099 MB) + +PASS -- COMPILE 'hafsw_intel' [46:17, 18:38] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:44, 06:43](719 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:15, 05:45](1072 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:14](774 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [24:59, 12:19](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 13:32](811 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:13, 08:37](477 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:29, 10:30](493 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 04:14](390 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:30, 09:50](457 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:20, 04:07](513 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:46, 04:16](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:43, 05:35](583 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:22](430 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [35:05, 08:30] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:23, 12:58](632 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [51:07, 27:22] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 08:54](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:30, 09:43](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [42:14, 19:24] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:33, 07:03](677 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:05, 16:13] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [12:43, 09:56](754 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 09:08](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:51, 19:38](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [30:13, 08:44] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [30:48, 03:06](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:37](758 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:13, 02:56](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:50, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:53, 02:45](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:53, 02:47](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:55, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:50, 02:43](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:09, 06:05](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:13, 05:52](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [29:37, 02:43](768 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [31:40, 04:10](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [30:02, 04:28](2032 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [29:28, 06:10] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:01, 05:21](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [27:22, 08:46] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [29:54, 02:41](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [32:22, 02:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:13, 01:24](311 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:17](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:45, 01:03](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:27, 14:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:40, 05:02](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [41:23, 12:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:57, 06:02](1900 MB) + +PASS -- COMPILE 'atml_intel' [43:19, 16:01] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:53, 09:01](1890 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:50, 09:40](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 05:22](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [37:24, 10:05] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 07:08](1938 MB) + +PASS -- COMPILE 'atmw_intel' [41:26, 14:23] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 03:25](1891 MB) + +PASS -- COMPILE 'atmaero_intel' [32:25, 12:51] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:56, 06:39](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:26, 06:41](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:47](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [25:23, 08:28] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:46, 22:51](4516 MB) SYNOPSIS: -Starting Date/Time: 20240726 14:27:02 -Ending Date/Time: 20240726 17:11:21 -Total Time: 02h:45m:22s +Starting Date/Time: 20240731 08:43:44 +Ending Date/Time: 20240731 20:26:26 +Total Time: 11h:43m:35s Compiles Completed: 41/41 -Tests Completed: 183/183 +Tests Completed: 181/183 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF DERECHO REGRESSION TESTING LOG==== +====START OF DERECHO REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_30140 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: nral0032 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:23] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:52, 12:24](1698 MB) + +PASS -- COMPILE 'hafsw_intel' [18:14, 17:33] ( 6 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:19, 04:04](1712 MB) + +SYNOPSIS: +Starting Date/Time: 20240801 06:59:02 +Ending Date/Time: 20240801 07:26:00 +Total Time: 00h:27m:11s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index e3f3fd2bcd..67bdbf63d9 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,7 +1,7 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,287 +35,358 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_205288 +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_40274 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:17, 19:04] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:37, 07:27](3200 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:13, 23:12] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:45, 14:07](1924 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:40, 14:10](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:51, 06:50](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:49, 15:09](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:13, 22:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:06, 13:40](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:42, 24:57](1947 MB) - -PASS -- COMPILE 's2swa_intel' [18:13, 18:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:43, 08:37](3228 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:14, 08:20](3224 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:22, 05:05](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:43, 08:29](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:22, 05:31](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:38, 07:04](3464 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:26, 08:34](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:28, 07:50](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:48, 09:01](3225 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:10, 10:37](3450 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:38, 07:19](3609 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:09, 13:09](4208 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:58, 09:20](4359 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:35, 08:28](3208 MB) - -PASS -- COMPILE 's2sw_intel' [18:13, 17:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:17, 05:58](1930 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 06:26](1994 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:16, 13:08] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:10, 10:00](3278 MB) - -PASS -- COMPILE 's2sw_debug_intel' [16:13, 15:09] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:28](1958 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:17, 19:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:12, 05:24](1999 MB) - -PASS -- COMPILE 's2s_intel' [16:13, 16:03] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:46, 06:31](2926 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:44, 02:06](2931 MB) -PASS -- TEST 'cpld_restart_c48_intel' [06:40, 01:09](2325 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:19, 29:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:15, 08:00](3228 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [26:18, 25:16] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 15:26](1935 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:20, 07:56](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:53, 17:57](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [19:16, 17:38] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 27:21](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:15, 16:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:48, 03:54](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [08:06, 03:34](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:14, 03:16](1570 MB) -PASS -- TEST 'control_latlon_intel' [07:55, 03:24](1573 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:15, 03:33](1572 MB) -PASS -- TEST 'control_c48_intel' [11:00, 06:31](1596 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:24, 05:43](719 MB) -PASS -- TEST 'control_c192_intel' [15:11, 10:11](1682 MB) -PASS -- TEST 'control_c384_intel' [23:45, 18:14](1979 MB) -PASS -- TEST 'control_c384gdas_intel' [21:43, 14:42](1179 MB) -PASS -- TEST 'control_stochy_intel' [03:07, 01:55](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:20](426 MB) -PASS -- TEST 'control_lndp_intel' [02:56, 01:53](622 MB) -PASS -- TEST 'control_iovr4_intel' [04:20, 02:40](620 MB) -PASS -- TEST 'control_iovr5_intel' [04:20, 02:40](620 MB) -PASS -- TEST 'control_p8_intel' [09:38, 04:01](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:31, 04:04](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:47, 04:02](1867 MB) -PASS -- TEST 'control_restart_p8_intel' [05:22, 01:51](1014 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:43, 03:55](1858 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:59, 02:03](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:43, 03:57](1861 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:43, 03:11](1950 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:31, 05:38](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:43, 04:30](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:04, 03:37](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [06:03, 03:45](1866 MB) -PASS -- TEST 'regional_control_intel' [06:02, 04:54](866 MB) -PASS -- TEST 'regional_restart_intel' [05:16, 02:43](860 MB) -PASS -- TEST 'regional_decomp_intel' [07:31, 05:16](860 MB) -PASS -- TEST 'regional_2threads_intel' [06:00, 03:16](1005 MB) -PASS -- TEST 'regional_noquilt_intel' [08:10, 05:09](1181 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:25, 05:10](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:55](866 MB) -PASS -- TEST 'regional_wofs_intel' [07:14, 06:02](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [16:14, 15:25] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:19, 06:56](1007 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:57, 04:10](1181 MB) -PASS -- TEST 'rap_decomp_intel' [10:11, 07:22](1007 MB) -PASS -- TEST 'rap_2threads_intel' [09:49, 06:21](1094 MB) -PASS -- TEST 'rap_restart_intel' [06:51, 03:35](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:59, 06:52](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 07:11](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:39, 05:03](877 MB) -PASS -- TEST 'hrrr_control_intel' [08:02, 04:00](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:42, 03:59](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:42, 03:17](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:32, 01:57](834 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:47, 06:42](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:18](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:57, 07:58](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [15:14, 14:30] -PASS -- TEST 'control_csawmg_intel' [08:18, 06:48](966 MB) -PASS -- TEST 'control_ras_intel' [04:52, 03:24](659 MB) - -PASS -- COMPILE 'wam_intel' [15:16, 14:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:02, 12:02](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [23:16, 23:01] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:52, 03:44](1858 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 05:02](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:12, 13:14] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:11, 03:03](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:16, 02:58](1592 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:59, 03:23](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:41, 02:50](797 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:57, 04:36](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [03:54, 02:55](805 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:11](1656 MB) -PASS -- TEST 'control_debug_p8_intel' [05:33, 03:30](1892 MB) -PASS -- TEST 'regional_debug_intel' [18:37, 16:30](901 MB) -PASS -- TEST 'rap_control_debug_intel' [06:13, 05:03](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:10, 05:02](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:18, 05:05](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:06](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:14, 05:27](1183 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:38, 05:23](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:10](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:20, 05:16](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:58, 05:20](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:58, 05:10](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:00, 05:03](1180 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:10, 05:05](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:56, 08:03](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:08, 05:00](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:15, 06:10](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:21, 05:09](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:00, 08:30](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:14, 09:49] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:26, 13:36](1685 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:12, 15:31] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:45, 04:02](1050 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:39, 06:15](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:52, 03:25](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:28, 05:20](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:37, 02:40](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:17, 03:37](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:18, 04:23](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:50, 02:09](767 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [24:15, 23:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:12, 02:31](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:20, 01:20](1080 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:53, 01:51](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:13, 16:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:32, 04:41](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:11, 10:39] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:56, 05:01](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:49, 04:56](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:41, 14:08](1140 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:49, 14:42](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:31, 08:25](1129 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:39, 14:10](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [17:14, 16:53] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:42, 04:59](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [26:17, 25:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:35, 05:23](708 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:51, 04:34](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:48, 07:53](755 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:36, 11:41](785 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:47, 12:54](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:45, 05:25](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:35, 06:47](495 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:37, 02:54](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 08:03](435 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:17, 03:49](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:24, 03:40](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:25, 04:40](577 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:14, 01:43](402 MB) -PASS -- TEST 'gnv1_nested_intel' [09:23, 05:54](1716 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [17:17, 16:42] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:46, 13:06](601 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [33:16, 32:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:24, 07:44](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:24, 07:48](786 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [26:17, 25:57] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:19, 06:52](785 MB) - -PASS -- COMPILE 'hafs_all_intel' [25:16, 24:19] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:33](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:33, 06:19](725 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:34, 20:10](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:17, 15:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:31, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:35](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:30, 02:29](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:27](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:29, 02:36](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:31, 02:41](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:29, 02:39](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:29, 02:28](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:21, 06:15](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:28, 06:03](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:37](2028 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:36, 04:40](2029 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [12:20, 11:16] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:25](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [15:15, 14:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:38](752 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [07:18, 05:53] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:16, 02:20](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:13, 01:32](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:51, 01:14](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 16:46] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:12, 04:18](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:14, 16:10] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:02](1911 MB) - -PASS -- COMPILE 'atml_intel' [17:15, 16:58] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:05, 08:14](1893 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:05, 08:13](1893 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:14, 04:12](1046 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:12, 11:41] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:49, 06:43](1930 MB) - -PASS -- COMPILE 'atmw_intel' [16:13, 15:27] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:12, 03:03](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [16:16, 15:53] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:37, 06:40](3119 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:32, 07:16](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:25, 07:07](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [16:13, 14:51] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:44, 18:18](4486 MB) +PASS -- COMPILE 's2swa_32bit_intel' [19:11, 19:00] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 08:10](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:34] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:32, 13:56](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:35, 15:40](1952 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:27, 07:32](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:26, 15:03](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 22:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:47, 13:41](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:15] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 24:16](1936 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 18:18] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:18, 08:07](3229 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:24, 08:00](3229 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:32, 05:03](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [17:26, 08:50](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:42, 05:17](3182 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 06:58](3465 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 08:42](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:12, 08:18](3170 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:34, 08:23](3227 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:32, 10:28](3448 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 07:17](3614 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [26:01, 13:01](4213 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 09:01](4369 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 08:39](3221 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 18:11] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:17](1938 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:34, 05:49](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:46, 09:53](3276 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:40] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 16:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:33, 05:03](1989 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 16:07] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:29](2929 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 01:56](2938 MB) +PASS -- TEST 'cpld_restart_c48_intel' [08:21, 01:08](2351 MB) + +PASS -- COMPILE 's2swa_faster_intel' [29:15, 28:13] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:45, 08:39](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:57] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 15:04](1937 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 07:46](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:20, 17:29](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:20, 15:09] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:19, 26:49](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:41, 03:54](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 04:04](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:32](1567 MB) +PASS -- TEST 'control_latlon_intel' [05:21, 03:28](1570 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](1569 MB) +PASS -- TEST 'control_c48_intel' [08:38, 06:30](1601 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:10, 05:49](720 MB) +PASS -- TEST 'control_c192_intel' [12:51, 10:29](1683 MB) +PASS -- TEST 'control_c384_intel' [20:40, 18:44](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [17:42, 14:56](1178 MB) +PASS -- TEST 'control_stochy_intel' [02:40, 02:07](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:12](425 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:55](623 MB) +PASS -- TEST 'control_iovr4_intel' [03:46, 02:48](620 MB) +PASS -- TEST 'control_iovr5_intel' [03:46, 02:42](620 MB) +PASS -- TEST 'control_p8_intel' [05:51, 03:44](1868 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 04:15](1867 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 03:38](1868 MB) +PASS -- TEST 'control_restart_p8_intel' [03:05, 01:51](1013 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:42](1015 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:48, 04:12](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:58, 02:48](1947 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:31](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:08, 04:11](1921 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:10, 03:31](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [05:08, 03:44](1865 MB) +PASS -- TEST 'regional_control_intel' [05:41, 04:51](848 MB) +PASS -- TEST 'regional_restart_intel' [05:00, 02:52](860 MB) +PASS -- TEST 'regional_decomp_intel' [05:39, 05:01](867 MB) +PASS -- TEST 'regional_2threads_intel' [03:46, 03:00](998 MB) +PASS -- TEST 'regional_noquilt_intel' [05:45, 04:41](1182 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 05:06](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 04:51](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:44, 06:08](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 14:19] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:01, 06:56](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:04](1187 MB) +PASS -- TEST 'rap_decomp_intel' [07:55, 07:06](1007 MB) +PASS -- TEST 'rap_2threads_intel' [07:54, 06:16](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:58, 03:45](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:00](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 07:08](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 05:12](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:05, 04:06](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:51](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:23](1083 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:58](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:35](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:37, 08:22](1961 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:50](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [16:13, 15:48] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:47](966 MB) +PASS -- TEST 'control_ras_intel' [04:28, 03:25](659 MB) + +PASS -- COMPILE 'wam_intel' [14:13, 13:56] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:37, 11:29](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 20:32] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:35, 03:21](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 04:39](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 15:07] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:59](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:51](1598 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:09](801 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:53](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:18](1108 MB) +PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](805 MB) +PASS -- TEST 'control_diag_debug_intel' [04:44, 03:00](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:16](1894 MB) +PASS -- TEST 'regional_debug_intel' [17:43, 16:17](902 MB) +PASS -- TEST 'rap_control_debug_intel' [06:37, 05:09](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:58](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:10](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:14](1180 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:01](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:29](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:16](1183 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:14](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:09](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:19](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:24](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:12](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 08:15](1180 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:28](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 06:37](1187 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:31, 05:32](1182 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 08:50](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [11:14, 11:03] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 13:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 04:04](1049 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:49, 05:58](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:58, 03:39](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:59, 05:27](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 02:51](937 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:55, 03:53](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:09](782 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:43](766 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 19:02] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:25, 02:25](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:08](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 01:20](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:59, 04:24](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 09:44] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:30, 04:54](1060 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:01](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:24, 14:20](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:16, 14:37](817 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:16](1129 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:10, 14:17](1210 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 18:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:32, 05:18](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:34](1057 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:42](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:50](784 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:58, 13:09](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:27](481 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:34, 06:56](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:20, 02:56](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:00](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:54](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 04:07](511 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:11](572 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:39](403 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:35] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:04](598 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 08:20](616 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 08:26](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 06:30](782 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:14, 16:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:27](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:29](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:46, 20:05](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:27](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:29](638 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:29](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:06, 06:03](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 05:57](674 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:37](749 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:39](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:40](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:52] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:27](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:37] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:37](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:17] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:46](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:16](457 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:59](457 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 14:23] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:06](1922 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:37] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 04:03](1910 MB) + +PASS -- COMPILE 'atml_intel' [18:12, 16:24] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 08:13](1894 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 08:39](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 04:59](1042 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:14, 12:42] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 06:21](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:13, 14:34] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:48](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [14:13, 13:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:13, 06:34](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 07:08](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 07:22](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:31] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:14](4487 MB) SYNOPSIS: -Starting Date/Time: 20240726 14:39:28 -Ending Date/Time: 20240726 16:26:22 -Total Time: 01h:48m:17s +Starting Date/Time: 20240730 19:35:54 +Ending Date/Time: 20240730 21:08:49 +Total Time: 01h:33m:52s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_179250 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [10:11, 09:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 13:48](1687 MB) + +PASS -- COMPILE 'hafsw_intel' [17:15, 16:25] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [09:05, 05:40](1717 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 13:43:20 +Ending Date/Time: 20240731 14:11:13 +Total Time: 00h:28m:13s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index d7f6ca0801..f3c2f5166e 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -24,381 +24,383 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2625282 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:11, 13:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:24, 05:49](3301 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:15] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 19:03](1944 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:10, 19:56](2137 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:55, 09:07](1256 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:15, 20:07](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:45] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 17:18](1972 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:33] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:18, 23:01](1941 MB) - -PASS -- COMPILE 's2swa_intel' [14:12, 13:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:15, 07:19](3362 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:26, 07:21](3333 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:42, 03:43](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:15, 07:22](3374 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:41, 03:52](3292 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:12, 07:11](3619 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:13, 07:22](3319 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:46](3225 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:23, 07:37](3321 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [15:26, 11:43](3522 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:50, 10:50](3637 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [24:09, 11:26](4300 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:31, 07:45](4398 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:25, 05:32](3301 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 13:04] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:57, 04:53](1989 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:02, 04:27](2039 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 05:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:07, 08:30](3409 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:18] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:02, 06:19](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:27] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:02, 04:32](2055 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:21] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:45, 09:35](3107 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:43, 02:43](3091 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:43, 01:34](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:51] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:59, 07:39](3331 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:31] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:16, 18:45](2020 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:36, 09:31](1274 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:06, 21:02](1925 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 04:57] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:20, 25:18](1965 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 13:03] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:34, 03:24](706 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:07, 03:06](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:22, 03:12](1618 MB) -PASS -- TEST 'control_latlon_intel' [06:57, 03:02](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:02, 03:09](1583 MB) -PASS -- TEST 'control_c48_intel' [08:57, 07:36](1758 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 06:26](863 MB) -PASS -- TEST 'control_c192_intel' [13:37, 10:59](1746 MB) -PASS -- TEST 'control_c384_intel' [17:02, 12:15](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [14:05, 08:38](1402 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:40](653 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:58, 01:16](501 MB) -PASS -- TEST 'control_lndp_intel' [04:29, 01:36](662 MB) -PASS -- TEST 'control_iovr4_intel' [04:32, 02:33](658 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:31](657 MB) -PASS -- TEST 'control_p8_intel' [07:20, 03:17](1904 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:26, 03:13](1892 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:21, 03:09](1906 MB) -PASS -- TEST 'control_restart_p8_intel' [05:20, 03:00](1139 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:25, 03:16](1894 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:49, 03:37](1155 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:39](1894 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:04, 03:21](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:09, 06:02](1901 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 05:07](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:13, 03:46](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [06:15, 04:10](1901 MB) -PASS -- TEST 'regional_control_intel' [08:58, 07:10](1106 MB) -PASS -- TEST 'regional_restart_intel' [04:57, 03:34](1098 MB) -PASS -- TEST 'regional_decomp_intel' [08:51, 08:03](1109 MB) -PASS -- TEST 'regional_2threads_intel' [08:50, 07:17](1104 MB) -PASS -- TEST 'regional_noquilt_intel' [09:36, 07:46](1397 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:14, 08:29](1108 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 08:09](1104 MB) -PASS -- TEST 'regional_wofs_intel' [10:48, 09:28](1914 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 11:41] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:01, 08:43](1116 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:14, 05:56](1296 MB) -PASS -- TEST 'rap_decomp_intel' [10:57, 09:22](1037 MB) -PASS -- TEST 'rap_2threads_intel' [10:49, 09:07](1189 MB) -PASS -- TEST 'rap_restart_intel' [06:07, 04:29](1111 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:57, 09:27](1107 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:57, 09:48](1041 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 07:06](1136 MB) -PASS -- TEST 'hrrr_control_intel' [06:04, 05:01](1042 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:52, 05:16](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 05:28](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:54, 02:47](1009 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:56, 08:42](1102 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:35, 10:30](1982 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:34, 09:38](2073 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] -PASS -- TEST 'control_csawmg_intel' [09:02, 06:44](1018 MB) -PASS -- TEST 'control_ras_intel' [05:32, 03:59](745 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:14] -PASS -- TEST 'control_csawmg_gnu' [10:40, 09:36](750 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 10:43] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:07, 13:36](1676 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:12, 16:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:17, 03:47](1899 MB) -PASS -- TEST 'regional_control_faster_intel' [08:04, 06:37](1098 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:03] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:57, 03:12](1625 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:57, 03:18](1623 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:23](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 03:03](831 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:46, 04:47](1150 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 03:19](843 MB) -PASS -- TEST 'control_diag_debug_intel' [05:00, 03:15](1688 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:21](1915 MB) -PASS -- TEST 'regional_debug_intel' [19:43, 18:21](1111 MB) -PASS -- TEST 'rap_control_debug_intel' [06:27, 05:13](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:50](1214 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:59](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 04:56](1215 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:28, 04:58](1223 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:12, 05:29](1302 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:32, 05:11](1218 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:30, 05:11](1225 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:29, 05:02](1225 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:26, 05:02](1226 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:52](1213 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 06:09](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 09:00](1219 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:30](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 06:42](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:25, 05:19](1222 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 09:47](1217 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 06:03] -PASS -- TEST 'control_csawmg_debug_gnu' [05:48, 02:29](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:13, 05:17] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 14:12](1683 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 11:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:06, 04:59](1171 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:40, 07:30](1052 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 04:30](991 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 07:10](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 04:20](969 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:33, 04:45](924 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:39, 04:51](1042 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 01:54](933 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:15, 15:37] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:53, 03:15](1213 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 00:53](1123 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:15](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 11:11] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 05:19](984 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:05] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:25, 06:03](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:23, 06:08](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [17:48, 16:14](1241 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:45, 16:25](957 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:32](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:47, 14:47](1323 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:13, 04:33] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:03](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [15:16, 14:40] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:25, 05:02](744 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 05:53](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:28, 06:56](835 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:18, 13:32](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:37, 15:05](877 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:00, 05:28](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:40](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:45, 02:42](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:16, 07:37](477 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:40](533 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:51, 03:32](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:54, 04:05](599 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:14](406 MB) -PASS -- TEST 'gnv1_nested_intel' [06:30, 04:07](1759 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:13, 05:02] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:56, 13:13](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:18, 19:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:58, 08:51](645 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:04, 08:58](745 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:16, 15:34] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:02, 06:33](734 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 13:49] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:16, 06:26](847 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:16, 06:32](821 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:58, 16:13](1208 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:12] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:20, 02:55](1147 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:41](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:36](1024 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:40](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:38](1046 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:22, 02:41](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:18, 02:43](1172 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:20, 02:34](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:28, 06:40](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:17, 06:28](1056 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:41](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:53](2466 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2523 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:12, 04:11] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:21](1100 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:48] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 02:38](1142 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:13, 03:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 00:45](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:55](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:25, 00:33](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:21] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:00, 03:48](1990 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:12, 13:12] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 03:41](1942 MB) - -PASS -- COMPILE 'atml_intel' [14:12, 13:49] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:07, 04:25](1852 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:28](1869 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:53, 02:30](1104 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 07:05] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:00, 05:54](1892 MB) - -PASS -- COMPILE 'atmw_intel' [14:13, 13:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:58](1909 MB) - -PASS -- COMPILE 'atmaero_intel' [13:13, 12:38] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:03, 04:11](3214 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 05:00](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:43, 04:54](3116 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:41] ( 884 warnings 6 remarks ) +PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:23, 05:49](3317 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:30] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 17:19](1980 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 19:00](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:26](1265 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 19:24](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:46, 16:58](1975 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:17] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:42](1942 MB) + +PASS -- COMPILE 's2swa_intel' [14:13, 13:47] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:59](3331 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:37, 05:54](3358 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:33, 03:40](3268 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:56](3378 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:59](3272 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:36](3637 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:13, 06:00](3346 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:58](3223 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:31, 06:44](3327 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:31, 10:26](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:26](3633 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 09:37](4284 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:47, 06:21](4395 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:31](3311 MB) + +PASS -- COMPILE 's2sw_intel' [13:13, 13:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:00, 04:54](1987 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:07, 04:31](2039 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:23] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:38](3366 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:21] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:14, 06:00](2027 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:58] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:21](2048 MB) + +PASS -- COMPILE 's2s_intel' [12:13, 12:07] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:49, 08:56](3115 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:43](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:47, 01:35](2550 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:25, 05:32](3329 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 17:42](2028 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 08:19](1281 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 19:57](1901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:17] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 25:22](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:30, 03:20](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:55](1599 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:59](1612 MB) +PASS -- TEST 'control_latlon_intel' [03:48, 02:54](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 03:01](1611 MB) +PASS -- TEST 'control_c48_intel' [08:54, 07:28](1760 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:25](870 MB) +PASS -- TEST 'control_c192_intel' [12:11, 10:44](1748 MB) +PASS -- TEST 'control_c384_intel' [13:23, 10:31](2013 MB) +PASS -- TEST 'control_c384gdas_intel' [11:25, 08:04](1405 MB) +PASS -- TEST 'control_stochy_intel' [02:26, 01:40](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:00](506 MB) +PASS -- TEST 'control_lndp_intel' [02:26, 01:34](661 MB) +PASS -- TEST 'control_iovr4_intel' [03:29, 02:27](658 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:28](657 MB) +PASS -- TEST 'control_p8_intel' [04:58, 03:09](1903 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:07](1899 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:04](1900 MB) +PASS -- TEST 'control_restart_p8_intel' [02:49, 01:45](1139 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:05](1887 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:59, 01:44](1167 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:08](1896 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1984 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:21](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:26](1966 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:01, 03:10](1906 MB) +PASS -- TEST 'merra2_thompson_intel' [04:58, 03:24](1902 MB) +PASS -- TEST 'regional_control_intel' [06:45, 05:23](1104 MB) +PASS -- TEST 'regional_restart_intel' [03:43, 02:58](1101 MB) +PASS -- TEST 'regional_decomp_intel' [06:44, 05:41](1103 MB) +PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1094 MB) +PASS -- TEST 'regional_noquilt_intel' [06:43, 05:18](1402 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:15](1097 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:18](1108 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1911 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:12] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:43, 07:42](1108 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1306 MB) +PASS -- TEST 'rap_decomp_intel' [09:37, 08:08](1023 MB) +PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:47, 04:02](1115 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1111 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:10](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:49](1136 MB) +PASS -- TEST 'hrrr_control_intel' [04:45, 04:04](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:07](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:40](1114 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:10](1011 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:38](1096 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:38, 09:19](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:07](2058 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:35] +PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](1025 MB) +PASS -- TEST 'control_ras_intel' [04:25, 03:14](750 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:12, 04:24] +PASS -- TEST 'control_csawmg_gnu' [09:42, 08:23](758 MB) + +PASS -- COMPILE 'wam_intel' [11:13, 10:44] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:08, 10:50](1667 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:07, 02:47](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [05:43, 04:55](1107 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:59] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:38](1630 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1636 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:11](834 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](836 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1148 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:45](838 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:51](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:43, 03:02](1923 MB) +PASS -- TEST 'regional_debug_intel' [18:42, 18:08](1111 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:57](1221 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:55](1222 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1219 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:56](1222 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:00](1221 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:25](1305 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:06](1217 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:05](1226 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:27, 04:56](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:57](1217 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:51](1215 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:55](1225 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:08](1216 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:05](1219 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:54](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:17](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:36](1221 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 05:03] +PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](719 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:37] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:16, 03:52](1168 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:27](1045 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:25](992 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:08](1094 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 03:10](962 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](923 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:53](1037 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:53](935 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:04, 02:04](1207 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:51, 01:00](1127 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:20](1117 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:11](988 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:59](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:57](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [16:56, 15:29](1252 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:02](933 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:21](1171 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:45](1323 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:04] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:07](1140 MB) + +PASS -- COMPILE 'hafsw_intel' [13:13, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:02](740 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:06](1111 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:34, 07:00](843 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:27, 13:46](868 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:37, 15:26](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:38](504 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:48](526 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 02:43](379 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:24](486 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 03:44](532 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:01, 03:33](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:01, 04:06](596 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:13](408 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:13, 04:41] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:13](597 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:14, 16:32] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 08:46](672 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:15, 08:47](746 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 12:35] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 06:31](737 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:13, 11:30] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:32, 06:31](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:33](827 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:06](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:48] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:46](1163 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:43](1129 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:34](1036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:39](1036 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:39](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:40](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:44](1164 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:31](1030 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 06:47](1066 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 06:25](1047 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](1166 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:55](2507 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 03:57](2467 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:13, 03:20] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:19](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:38] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](1174 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:08] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 00:50](258 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:52](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:40](320 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:31] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 03:53](1992 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:14] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:50](1960 MB) + +PASS -- COMPILE 'atml_intel' [13:14, 12:45] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:20, 04:28](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:28](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 02:33](1105 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:20] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 05:50](1870 MB) + +PASS -- COMPILE 'atmw_intel' [12:14, 11:22] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:57, 01:49](1937 MB) + +PASS -- COMPILE 'atmaero_intel' [12:14, 11:21] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:08, 04:09](3197 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:54](3105 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:11](3106 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:09] ( 884 warnings 6 remarks ) PASS -- COMPILE 'atm_gnu' [05:12, 04:48] -PASS -- TEST 'control_c48_gnu' [15:40, 11:09](1537 MB) -PASS -- TEST 'control_stochy_gnu' [05:22, 03:24](505 MB) -PASS -- TEST 'control_ras_gnu' [06:23, 04:46](507 MB) -PASS -- TEST 'control_p8_gnu' [05:55, 04:49](1458 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:50, 04:44](1459 MB) -PASS -- TEST 'control_flake_gnu' [11:25, 10:30](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:26] -PASS -- TEST 'rap_control_gnu' [11:38, 10:52](852 MB) -PASS -- TEST 'rap_decomp_gnu' [11:38, 10:54](849 MB) -PASS -- TEST 'rap_2threads_gnu' [12:34, 09:52](929 MB) -PASS -- TEST 'rap_restart_gnu' [07:42, 05:26](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:44](818 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:37, 10:57](814 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 07:56](581 MB) -PASS -- TEST 'hrrr_control_gnu' [07:37, 05:38](811 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:29](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:40, 05:02](919 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:32, 05:36](847 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:31, 02:53](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:29, 02:50](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:42, 10:25](810 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:11, 08:40] -PASS -- TEST 'control_diag_debug_gnu' [03:49, 01:44](1276 MB) -PASS -- TEST 'regional_debug_gnu' [11:40, 10:11](734 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:25, 02:42](822 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:24, 02:37](821 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:27, 02:39](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:25, 02:42](827 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:52](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:11](822 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:24, 02:40](823 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:23, 02:40](822 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:22, 01:42](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:22, 01:49](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [04:40, 01:47](1438 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:26, 02:39](823 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:25, 02:54](824 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:38, 04:20](828 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 05:33] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:34, 09:19](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:36, 04:56](707 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:37, 08:28](756 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:32, 04:30](745 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:33, 05:10](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:38, 06:52](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [06:27, 02:29](541 MB) -PASS -- TEST 'conus13km_control_gnu' [06:59, 03:11](876 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:45, 05:51](880 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:44, 01:48](554 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [13:11, 11:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [09:39, 05:51](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [09:11, 08:41] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:25, 02:36](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:50, 06:59](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:46, 06:59](577 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:43, 07:46](892 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:43, 06:58](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:35] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:24, 02:40](739 MB) - -PASS -- COMPILE 's2swa_gnu' [18:12, 17:49] - -PASS -- COMPILE 's2s_gnu' [18:12, 17:10] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_nowave_noaero_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:21] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:13, 16:04] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:58, 21:09](1447 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:56, 12:44](1473 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:24] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:19, 02:54](690 MB) +PASS -- TEST 'control_c48_gnu' [12:47, 11:14](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:29, 03:24](502 MB) +PASS -- TEST 'control_ras_gnu' [06:26, 04:48](504 MB) +PASS -- TEST 'control_p8_gnu' [06:04, 04:50](1468 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:05, 04:46](1458 MB) +PASS -- TEST 'control_flake_gnu' [11:33, 10:21](544 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:28] +PASS -- TEST 'rap_control_gnu' [12:40, 10:47](815 MB) +PASS -- TEST 'rap_decomp_gnu' [12:38, 11:00](849 MB) +PASS -- TEST 'rap_2threads_gnu' [11:46, 09:55](930 MB) +PASS -- TEST 'rap_restart_gnu' [07:52, 05:33](577 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [12:47, 10:54](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:42, 11:10](816 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:51, 07:59](583 MB) +PASS -- TEST 'hrrr_control_gnu' [07:41, 05:33](814 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:34](798 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:42, 05:06](926 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:50](850 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:36, 02:55](560 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:36, 02:54](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:50, 10:51](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] +PASS -- TEST 'control_diag_debug_gnu' [04:09, 01:40](1273 MB) +PASS -- TEST 'regional_debug_gnu' [13:45, 11:45](716 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:37](825 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:37](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:41](820 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:25, 02:38](823 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:52, 02:53](903 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:08](855 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:43](826 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:42](816 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:27, 01:40](489 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:46](453 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:51](1440 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:28, 02:42](825 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:57](826 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:25](832 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:35] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:13] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:45, 09:23](710 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:44, 05:07](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:42](753 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:46](744 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:17](703 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:06](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](537 MB) +PASS -- TEST 'conus13km_control_gnu' [05:07, 03:09](875 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:56, 06:06](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:53, 01:52](548 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:13, 10:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:52](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:43] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:39](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:29, 02:34](713 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:01, 06:52](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](588 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:48, 07:40](895 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:47, 07:08](956 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:42] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:30, 02:45](731 MB) + +PASS -- COMPILE 's2swa_gnu' [18:14, 16:46] + +PASS -- COMPILE 's2s_gnu' [17:13, 15:57] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:20, 07:27](1521 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:15, 03:27] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:15, 16:07] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:07](1461 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:13, 03:13] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:59, 12:42](1458 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:13, 15:41] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:01](685 MB) SYNOPSIS: -Starting Date/Time: 20240726 18:33:36 -Ending Date/Time: 20240726 20:24:37 -Total Time: 01h:51m:18s +Starting Date/Time: 20240731 14:36:54 +Ending Date/Time: 20240731 16:12:18 +Total Time: 01h:37m:22s Compiles Completed: 57/57 -Tests Completed: 243/244 +Tests Completed: 242/244 Failed Tests: -* TEST cpld_control_nowave_noaero_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1436054/cpld_control_nowave_noaero_p8_gnu/err +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_gnv1_nested_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -411,7 +413,7 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -419,7 +421,7 @@ Submodule hashes used in testing: 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) @@ -434,23 +436,26 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3626519 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3087081 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 's2s_gnu' [17:12, 16:33] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:08, 07:18](1521 MB) +PASS -- COMPILE 'wam_debug_intel' [05:13, 04:08] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:57, 13:51](1679 MB) + +PASS -- COMPILE 'hafsw_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'gnv1_nested_intel' [06:47, 04:25](1734 MB) SYNOPSIS: -Starting Date/Time: 20240729 06:07:25 -Ending Date/Time: 20240729 06:35:11 -Total Time: 00h:27m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Starting Date/Time: 20240731 18:41:55 +Ending Date/Time: 20240731 19:05:36 +Total Time: 00h:24m:15s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index a3d52df0cc..b5ff9e7f1c 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,376 +35,376 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1943568 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3083262 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:19, 12:48] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:25, 09:11](2138 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:26] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:32, 14:02](2004 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:14, 14:31](2313 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:06, 07:20](1318 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:32, 14:57](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:56, 13:08](1994 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:13] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:21, 21:11](1984 MB) - -PASS -- COMPILE 's2swa_intel' [13:18, 12:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:10, 08:59](2188 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [13:36, 09:10](2179 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:37, 04:38](1970 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:54, 08:46](2223 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:17, 04:34](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:15, 10:18](2544 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:58, 09:00](2180 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:25, 07:27](2093 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:31, 08:44](2195 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:44, 16:24](2967 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:35, 07:37](2932 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [21:08, 10:30](3807 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:16](3648 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:30, 06:14](2162 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:05, 08:02](2018 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:17, 05:05](2086 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:28] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:39, 08:09](2218 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:56] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:54, 06:16](2066 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:11, 10:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 05:38](2088 MB) - -PASS -- COMPILE 's2s_intel' [10:11, 10:02] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:55, 07:41](3106 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [07:21, 02:56](3089 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:41](2512 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:58, 07:43](2183 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 15:55] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:11, 14:55](2037 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:34, 07:33](1405 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:29, 16:10](1973 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:12, 06:59] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:32, 22:42](2016 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:12, 10:19] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:50, 03:43](707 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:58, 02:30](1622 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:11, 02:57](1611 MB) -PASS -- TEST 'control_latlon_intel' [03:57, 02:42](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:07, 02:31](1608 MB) -PASS -- TEST 'control_c48_intel' [09:14, 07:00](1730 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:37, 05:55](859 MB) -PASS -- TEST 'control_c192_intel' [10:16, 09:05](1759 MB) -PASS -- TEST 'control_c384_intel' [12:20, 09:52](2036 MB) -PASS -- TEST 'control_c384gdas_intel' [14:21, 10:03](1521 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:55](668 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:34, 01:27](539 MB) -PASS -- TEST 'control_lndp_intel' [02:21, 01:34](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:34](661 MB) -PASS -- TEST 'control_iovr5_intel' [05:31, 02:54](665 MB) -PASS -- TEST 'control_p8_intel' [06:05, 03:30](1917 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:38, 04:01](1918 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:23](1915 MB) -PASS -- TEST 'control_restart_p8_intel' [03:57, 02:20](1149 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:40, 03:24](1897 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 02:05](1200 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:43, 03:34](1897 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:43, 03:02](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:27](1906 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:08, 04:20](1987 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:57, 03:43](1922 MB) -PASS -- TEST 'merra2_thompson_intel' [07:26, 03:53](1921 MB) -PASS -- TEST 'regional_control_intel' [06:57, 05:25](1202 MB) -PASS -- TEST 'regional_restart_intel' [04:46, 03:29](1177 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 05:34](1192 MB) -PASS -- TEST 'regional_2threads_intel' [03:41, 03:11](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [07:34, 06:11](1525 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:43, 04:46](1201 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 04:41](1209 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 07:47](2093 MB) - -PASS -- COMPILE 'rrfs_intel' [14:15, 09:53] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:05, 06:54](1215 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:06, 03:42](1419 MB) -PASS -- TEST 'rap_decomp_intel' [07:42, 07:02](1166 MB) -PASS -- TEST 'rap_2threads_intel' [07:40, 06:13](1359 MB) -PASS -- TEST 'rap_restart_intel' [06:07, 04:20](1144 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:50, 06:37](1192 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:47, 07:01](1149 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:05, 04:58](1200 MB) -PASS -- TEST 'hrrr_control_intel' [05:21, 03:55](1076 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:43](1045 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:41, 03:45](1116 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:23, 02:05](1039 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:19, 07:03](1207 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:37, 07:40](2014 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:28, 07:38](2189 MB) - -PASS -- COMPILE 'csawmg_intel' [10:22, 09:17] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:55](1053 MB) -PASS -- TEST 'control_ras_intel' [05:47, 03:06](846 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:14, 04:50] -PASS -- TEST 'control_csawmg_gnu' [10:30, 08:37](1070 MB) - -PASS -- COMPILE 'wam_intel' [07:16, 07:05] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:05, 10:28](1674 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:10, 13:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:20, 02:24](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [06:36, 05:34](1201 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:11, 05:55] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:20](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:13, 02:15](1643 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:57, 03:01](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:41, 02:23](844 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:27, 04:05](1157 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:23](853 MB) -PASS -- TEST 'control_diag_debug_intel' [04:35, 03:13](1712 MB) -PASS -- TEST 'control_debug_p8_intel' [03:39, 03:07](1931 MB) -PASS -- TEST 'regional_debug_intel' [17:28, 16:27](1162 MB) -PASS -- TEST 'rap_control_debug_intel' [04:23, 04:05](1236 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:13](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:38, 04:09](1231 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:21, 04:16](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:27, 04:13](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:51, 04:24](1319 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 04:15](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 04:15](1231 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:30, 04:20](1229 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:35, 04:17](1235 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:27, 04:31](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:24, 05:07](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:38, 06:47](1222 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:25, 04:13](1228 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:25, 05:33](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 04:24](1225 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:00, 07:35](1228 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 04:24] -PASS -- TEST 'control_csawmg_debug_gnu' [04:00, 03:03](1053 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 03:06] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:15, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:02, 03:44](1266 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:50, 07:16](1178 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:33](1058 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:21, 06:06](1291 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:26, 02:55](1044 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:40, 04:33](1003 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:00, 05:39](1149 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:25, 01:57](972 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:12, 12:26] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:10, 01:51](1316 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:06, 01:13](1217 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:43](1166 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:12, 07:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:41](1089 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:03] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:45, 04:10](1109 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:38, 03:58](1119 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 13:25](1349 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 13:36](1002 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 08:49](1254 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:44, 12:44](1417 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:12, 06:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:46, 04:44](1171 MB) - -PASS -- COMPILE 'hafsw_intel' [13:14, 12:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:25, 05:28](872 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:37, 05:14](1284 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:37, 06:34](957 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:17, 14:11](974 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:32, 15:31](988 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:23, 05:35](613 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:57, 08:00](628 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:21, 03:34](439 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:53, 07:38](546 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:59, 03:58](623 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 03:39](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:59, 04:50](684 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:41, 01:08](458 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 06:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [19:19, 13:51](655 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 15:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:09, 16:45](733 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:18, 16:24](812 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:18, 09:56] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:22, 09:35](828 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:14, 09:50] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [17:31, 05:48](949 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:12, 05:47](912 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:04, 16:30](1335 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [11:26, 02:23](1146 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:33](1118 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [11:19, 02:16](1020 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [12:20, 03:07](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [11:18, 03:04](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [11:20, 02:33](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [10:19, 02:21](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [10:18, 03:16](1025 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:45, 05:50](1167 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:41, 05:01](1154 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [09:14, 03:06](1129 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:27, 03:18](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:31, 04:21](2390 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:13, 04:06] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:17, 06:05](1083 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:04] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:21, 03:01](1148 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:11, 00:51] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:47, 01:01](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:28, 01:54](576 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:32](562 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:12, 08:05] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:31, 03:51](2028 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:12, 08:05] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:27, 04:09](1998 MB) - -PASS -- COMPILE 'atml_intel' [09:12, 08:56] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:50, 05:42](1913 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:23, 05:54](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:53, 03:22](1156 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:13] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:13, 05:57](1939 MB) - -PASS -- COMPILE 'atmw_intel' [10:25, 09:29] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:02, 01:41](1963 MB) - -PASS -- COMPILE 'atmaero_intel' [08:11, 07:44] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:06, 04:23](2020 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:00, 04:48](1811 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:03, 04:52](1831 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:59] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:08, 16:44](4556 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:45] -PASS -- TEST 'control_c48_gnu' [10:48, 09:21](1572 MB) -PASS -- TEST 'control_stochy_gnu' [04:39, 02:50](732 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 04:24](734 MB) -PASS -- TEST 'control_p8_gnu' [07:03, 05:38](1715 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 04:56](1730 MB) -PASS -- TEST 'control_flake_gnu' [06:45, 05:17](807 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:14, 04:42] -PASS -- TEST 'rap_control_gnu' [10:39, 09:12](1087 MB) -PASS -- TEST 'rap_decomp_gnu' [10:35, 09:02](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [10:00, 07:27](1153 MB) -PASS -- TEST 'rap_restart_gnu' [06:00, 04:34](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 08:11](1093 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:46, 08:22](1087 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:02, 06:00](883 MB) -PASS -- TEST 'hrrr_control_gnu' [06:22, 04:18](1073 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:01, 05:36](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 03:57](1041 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:41, 05:36](1069 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:29, 02:39](879 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:33, 02:06](936 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [10:29, 08:36](1083 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:21] -PASS -- TEST 'control_diag_debug_gnu' [03:03, 01:39](1629 MB) -PASS -- TEST 'regional_debug_gnu' [08:37, 07:45](1126 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:56](1105 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:27, 02:40](1097 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:25, 02:24](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:32, 02:05](1100 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:55](1278 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:39](1102 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:23, 02:38](1102 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:28, 02:45](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:56](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:22, 01:46](727 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:42, 02:29](1727 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:20, 03:11](1104 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:25, 03:16](1105 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:11, 04:12](1108 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 03:43] -PASS -- TEST 'control_wam_debug_gnu' [06:52, 05:14](1587 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:56] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:36, 08:06](963 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:49, 04:03](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:05, 06:54](997 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:07, 03:39](895 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:39, 04:09](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:42, 05:58](861 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:48, 02:07](856 MB) -PASS -- TEST 'conus13km_control_gnu' [05:04, 03:33](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:55, 01:48](1175 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:56, 01:39](925 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:16, 13:18] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:52, 04:54](990 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [11:16, 10:45] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:26, 02:26](981 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:34, 03:04](974 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:48, 07:20](1291 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:50, 07:37](964 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:34, 04:13](1203 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:32, 05:49](1355 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:23, 11:17] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:21](1006 MB) - -PASS -- COMPILE 's2swa_gnu' [20:12, 19:27] - -PASS -- COMPILE 's2s_gnu' [18:14, 17:30] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:50, 06:08](2739 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [11:13, 10:20] - -PASS -- COMPILE 's2sw_pdlib_gnu' [19:13, 18:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:13, 26:50](3038 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [10:12, 09:51] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:09, 12:48](3045 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [19:13, 18:13] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:20, 02:21](769 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:34, 08:19](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:35](2005 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:06](2304 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:33](1328 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:58, 15:33](1923 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:13] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:06](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:25] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:30, 20:32](1978 MB) + +PASS -- COMPILE 's2swa_intel' [13:11, 12:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:20, 08:20](2182 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 08:10](2193 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:23](1987 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 08:17](2202 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:29](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 09:29](2554 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 08:05](2184 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:29, 06:48](2096 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:33, 08:01](2185 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:10, 16:06](2984 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:26, 05:53](2939 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 09:52](3817 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 06:17](3653 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:53](2149 MB) + +PASS -- COMPILE 's2sw_intel' [13:11, 12:22] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:18, 07:10](2020 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:26](2082 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:46] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:26, 07:48](2219 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:37](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:50](2073 MB) + +PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:52, 07:06](3112 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:54, 02:05](3080 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:44](2549 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:42](2181 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:59, 13:45](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:47](1379 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:13](1965 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 22:49](2039 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 03:43](709 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:33, 02:25](1616 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1633 MB) +PASS -- TEST 'control_latlon_intel' [03:31, 02:26](1618 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:37](1623 MB) +PASS -- TEST 'control_c48_intel' [07:35, 06:53](1741 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:52](862 MB) +PASS -- TEST 'control_c192_intel' [09:48, 09:06](1751 MB) +PASS -- TEST 'control_c384_intel' [11:28, 09:17](2056 MB) +PASS -- TEST 'control_c384gdas_intel' [12:03, 09:41](1516 MB) +PASS -- TEST 'control_stochy_intel' [02:21, 01:43](670 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:03](558 MB) +PASS -- TEST 'control_lndp_intel' [02:19, 01:45](678 MB) +PASS -- TEST 'control_iovr4_intel' [03:22, 02:38](662 MB) +PASS -- TEST 'control_iovr5_intel' [03:22, 02:38](674 MB) +PASS -- TEST 'control_p8_intel' [03:52, 02:44](1906 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 02:45](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:59, 02:38](1909 MB) +PASS -- TEST 'control_restart_p8_intel' [02:50, 01:37](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:55, 02:42](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:34](1199 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:42, 02:48](1890 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:32](1989 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:46](1903 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:38](1975 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:47](1922 MB) +PASS -- TEST 'merra2_thompson_intel' [04:01, 02:59](1911 MB) +PASS -- TEST 'regional_control_intel' [06:32, 05:27](1199 MB) +PASS -- TEST 'regional_restart_intel' [03:34, 02:36](1175 MB) +PASS -- TEST 'regional_decomp_intel' [05:27, 04:56](1186 MB) +PASS -- TEST 'regional_2threads_intel' [03:30, 03:04](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [05:32, 04:58](1523 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:36, 04:41](1205 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:45](1203 MB) +PASS -- TEST 'regional_wofs_intel' [07:30, 07:01](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 07:48] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:42, 06:37](1211 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:27](1410 MB) +PASS -- TEST 'rap_decomp_intel' [07:42, 06:54](1150 MB) +PASS -- TEST 'rap_2threads_intel' [07:42, 06:13](1377 MB) +PASS -- TEST 'rap_restart_intel' [04:58, 03:28](1136 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:43](1208 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 06:57](1140 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:06](1204 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:29](1080 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:32](1042 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:08](1124 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:30, 01:54](1047 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:30](1204 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:41](2021 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:25](2181 MB) + +PASS -- COMPILE 'csawmg_intel' [08:11, 07:23] +PASS -- TEST 'control_csawmg_intel' [07:33, 06:50](1056 MB) +PASS -- TEST 'control_ras_intel' [03:21, 02:56](860 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] +PASS -- TEST 'control_csawmg_gnu' [07:41, 07:03](1070 MB) + +PASS -- COMPILE 'wam_intel' [08:11, 07:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:37, 10:33](1678 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 14:00] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:56, 02:44](1911 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 05:17](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:58] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:16](1641 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:12](1652 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:31](847 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:16](841 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:17](1163 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:21](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:37, 02:20](1706 MB) +PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1932 MB) +PASS -- TEST 'regional_debug_intel' [18:34, 17:00](1154 MB) +PASS -- TEST 'rap_control_debug_intel' [05:22, 04:09](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:24, 04:04](1229 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 04:03](1237 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 04:08](1234 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:10](1327 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:12](1231 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:09](1234 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:07](1223 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:19, 04:05](1232 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:20, 03:59](1236 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:03](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:54](1231 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:05](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 05:14](1242 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:06](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:02, 07:09](1235 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:52](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:15] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:55, 03:35](1268 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:56](1172 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:34](1057 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:47, 06:05](1296 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 03:05](1047 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:58](1010 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:47, 05:27](1130 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 02:08](983 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 11:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:43, 01:45](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:38, 00:45](1212 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:33, 01:03](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:22] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 03:44](1099 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:17] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:11](1105 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:58](1112 MB) +PASS -- TEST 'conus13km_debug_intel' [13:37, 12:40](1353 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:59](1012 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:31, 08:30](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:36, 12:46](1437 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:30](1178 MB) + +PASS -- COMPILE 'hafsw_intel' [10:10, 10:03] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:20](874 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 04:49](1281 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:18](964 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:57](997 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:22](610 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:52](625 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:35](441 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 07:23](553 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:33](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:49](685 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](452 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 14:19](648 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:20] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 16:00](751 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 15:37](854 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:41](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:10, 10:13] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:03, 05:26](943 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:59, 05:26](916 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:47, 16:32](1346 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:42] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:11](1134 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:20](1106 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:05](1017 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:07](1021 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:11](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:13](1151 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:18](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:06](1032 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1172 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:50](1165 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:12](1165 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2391 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:17, 03:02](2460 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:33] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 05:06](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:17] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1160 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](331 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:34](564 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:49] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:51, 03:38](2020 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 08:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:50, 03:07](1991 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 08:55] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 05:54](1896 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 05:50](1900 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 02:59](1163 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 04:10] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:56](1938 MB) + +PASS -- COMPILE 'atmw_intel' [10:11, 09:38] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:44](1951 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 07:29] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:55](2038 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:23](1810 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:35](1810 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:57] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 17:05](4579 MB) + +PASS -- COMPILE 'atm_gnu' [05:10, 04:09] +PASS -- TEST 'control_c48_gnu' [11:44, 09:26](1574 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:22](727 MB) +PASS -- TEST 'control_ras_gnu' [05:17, 03:47](738 MB) +PASS -- TEST 'control_p8_gnu' [05:49, 04:14](1735 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:47](1738 MB) +PASS -- TEST 'control_flake_gnu' [05:22, 04:36](814 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:10, 04:07] +PASS -- TEST 'rap_control_gnu' [09:44, 07:58](1094 MB) +PASS -- TEST 'rap_decomp_gnu' [09:36, 08:13](1083 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 07:16](1144 MB) +PASS -- TEST 'rap_restart_gnu' [04:51, 04:06](886 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:01](1095 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:44, 08:05](1082 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:01, 06:20](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:38, 04:13](1072 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:37, 04:07](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:45](1024 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:16](1070 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:14](880 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:23, 02:21](939 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 08:07](1084 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:11] +PASS -- TEST 'control_diag_debug_gnu' [02:34, 01:19](1639 MB) +PASS -- TEST 'regional_debug_gnu' [07:27, 06:43](1144 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:10](1106 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:05](1094 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:58](1099 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 01:57](1102 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:31, 02:10](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 03:17](1099 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:07](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:57](1096 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:12](731 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:22](729 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:28, 01:29](1728 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1102 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:20](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:26](1109 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:46] +PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:23](1576 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:12] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:58](973 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 04:09](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:51, 07:03](967 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:04, 03:40](871 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:42, 04:06](950 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:41, 06:07](871 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:18](858 MB) +PASS -- TEST 'conus13km_control_gnu' [03:39, 02:51](1269 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:38, 01:10](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:40, 01:35](922 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 04:34](993 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:51] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:16](980 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:01](973 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:53](1292 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 06:26](973 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:58](1197 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:52](1358 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:17] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:26](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [19:11, 18:14] + +PASS -- COMPILE 's2s_gnu' [17:11, 16:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:05, 05:24](2720 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:16] + +PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:59] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:08, 25:54](3034 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:45] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:54, 12:06](2924 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:28] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:23](765 MB) SYNOPSIS: -Starting Date/Time: 20240726 15:31:11 -Ending Date/Time: 20240726 17:19:53 -Total Time: 01h:52m:57s +Starting Date/Time: 20240731 09:21:00 +Ending Date/Time: 20240731 10:54:53 +Total Time: 01h:34m:43s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ce6f0fc6da..8a1843f928 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,7 +1,7 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -ba4c3ee47280b777133ba3f3e60f271d70738c34 +4062b88d6b40c90e783e00de145f1e2f0dd8a0e3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,334 +35,256 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3152011 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3686172 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:29] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [51:03, 49:32](2004 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [48:15, 47:50] ( 1 warnings 1427 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_control_gfsv17_iau_intel' [, ]( MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'cpld_restart_gfsv17_intel' [, ]( MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [27:00, 24:30](1853 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 49:38] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [09:28, 21:24](1881 MB) - -PASS -- COMPILE 's2swa_intel' [41:14, 40:50] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:23, 07:57](2060 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [50:34, 49:38](2050 MB) -PASS -- TEST 'cpld_restart_p8_intel' [51:29, 05:09](1720 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:19, 08:00](2080 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_restart_qr_p8_intel' [, ]( MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:23, 07:43](2322 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:16, 08:11](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [51:40, 51:05](1974 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [50:25, 48:31](2048 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:33, 07:49](2039 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:40] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:39, 06:45](1905 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:57, 50:41](1953 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:40, 11:04](2081 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 04:46] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [50:49, 50:01](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:13, 34:21] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:43, 06:20](1947 MB) - -PASS -- COMPILE 's2s_intel' [35:13, 34:51] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:10, 12:43](3062 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:09, 03:54](3053 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:03, 02:32](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [12:16, 12:08] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:04, 07:40](2050 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 48:28] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:42, 21:46](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:50, 11:24](1127 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:16, 24:56](1878 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:13] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:58](1938 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:13, 37:27] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:36, 04:30](646 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:02](1553 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 04:09](1552 MB) -PASS -- TEST 'control_latlon_intel' [05:11, 03:57](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:04](1558 MB) -PASS -- TEST 'control_c48_intel' [13:28, 11:47](1733 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:49, 10:17](857 MB) -PASS -- TEST 'control_c192_intel' [16:32, 14:25](1690 MB) -PASS -- TEST 'control_c384_intel' [20:30, 17:50](1821 MB) -PASS -- TEST 'control_c384gdas_intel' [45:04, 43:04](1024 MB) -PASS -- TEST 'control_stochy_intel' [03:33, 02:17](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:33, 01:20](435 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:13](605 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 03:25](603 MB) -PASS -- TEST 'control_iovr5_intel' [04:36, 03:25](601 MB) -PASS -- TEST 'control_p8_intel' [06:36, 04:43](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:48, 04:41](1828 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:54, 04:31](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [04:08, 02:49](1063 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:38, 04:31](1838 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [55:41, 55:04](1078 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:47](1830 MB) -PASS -- TEST 'control_2threads_p8_intel' [53:52, 53:09](1932 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:18, 07:46](1844 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:59, 05:49](1917 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:52, 04:41](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [53:32, 51:46](1855 MB) -PASS -- TEST 'regional_control_intel' [09:08, 07:54](1015 MB) -PASS -- TEST 'regional_restart_intel' [05:45, 04:22](1014 MB) -PASS -- TEST 'regional_decomp_intel' [10:08, 08:24](1018 MB) -PASS -- TEST 'regional_2threads_intel' [07:08, 06:08](1005 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [50:33, 50:24](1022 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:31, 49:36](1012 MB) - -PASS -- COMPILE 'rrfs_intel' [35:13, 35:09] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [12:06, 10:10](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:31, 05:46](1223 MB) -PASS -- TEST 'rap_decomp_intel' [12:04, 10:42](988 MB) -PASS -- TEST 'rap_2threads_intel' [11:33, 09:44](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:29, 05:18](991 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:34, 10:05](994 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:06, 10:47](985 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:25, 07:34](1002 MB) -PASS -- TEST 'hrrr_control_intel' [53:20, 52:08](993 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [53:14, 52:06](983 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [53:47, 52:45](1066 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:31, 02:49](915 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:40, 10:01](983 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [46:01, 45:28](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:37, 12:11](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [32:13, 32:09] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:49, 08:53](960 MB) -PASS -- TEST 'control_ras_intel' [05:30, 04:30](664 MB) - -PASS -- COMPILE 'wam_intel' [33:14, 32:27] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [16:01, 14:27](1623 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:54] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:36, 04:12](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:48, 07:21](1017 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:12, 07:17] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 03:24](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 03:20](1570 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:53](774 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:31, 03:29](774 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:50, 05:59](1094 MB) -PASS -- TEST 'control_ras_debug_intel' [04:30, 03:32](785 MB) -PASS -- TEST 'control_diag_debug_intel' [04:54, 03:28](1634 MB) -PASS -- TEST 'control_debug_p8_intel' [06:01, 04:09](1868 MB) -PASS -- TEST 'regional_debug_intel' [24:00, 22:52](1039 MB) -PASS -- TEST 'rap_control_debug_intel' [07:32, 06:15](1161 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:34, 06:09](1153 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:34, 06:09](1164 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:34, 06:12](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:32, 06:14](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:45, 06:42](1236 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:18](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 06:24](1167 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:24, 06:14](1166 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:13](1158 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:27, 06:04](1163 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:28, 06:11](1164 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:28, 10:08](1163 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:27, 06:11](1156 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:32, 07:31](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:11](1159 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:31, 10:42](1177 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:35] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:00, 16:53](1651 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [30:16, 30:08] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 05:17](1078 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:01, 08:23](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:04, 04:24](875 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:19, 07:58](937 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:39, 04:05](908 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:03, 04:42](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:21, 06:26](908 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:31, 02:27](850 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [39:15, 38:32] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:58](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:54, 01:24](1048 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:52, 01:38](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:12, 30:52] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:55, 05:31](907 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:32, 06:13](1042 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:32, 06:02](1047 MB) -PASS -- TEST 'conus13km_debug_intel' [20:03, 18:39](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:03, 18:55](866 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:55, 10:45](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:57, 18:40](1221 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:32, 06:16](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [39:14, 38:25] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:29, 07:08](711 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:12](1081 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:51, 09:38](769 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [18:33, 16:27](796 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:53, 18:21](801 MB) -PASS -- TEST 'gnv1_nested_intel' [10:48, 07:24](1680 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:14, 33:24] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:51](772 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:25, 08:52](763 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:33] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 03:40](1056 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 02:12](1044 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:36](938 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:25, 03:38](922 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:38](931 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:25, 03:38](1067 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:36](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:23, 08:11](883 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:25, 08:19](840 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1070 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:34, 05:59](2408 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:33, 05:11](2397 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:31] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:24, 08:01](1024 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:25] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 03:49](1060 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:52] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:35, 02:30](235 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:54](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:54](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:13, 33:52] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:26, 05:24](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [33:13, 33:09] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:45, 05:16](1899 MB) - -PASS -- COMPILE 'atml_intel' [42:17, 41:35] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:36](1861 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:50, 08:35](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 05:00](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 06:01] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:38, 08:06](1888 MB) - -PASS -- COMPILE 'atmw_intel' [34:14, 33:28] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:25, 02:54](1868 MB) - -PASS -- COMPILE 'atmaero_intel' [34:14, 33:27] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:30, 05:49](1944 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:26, 06:27](1722 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 06:31](1741 MB) +PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:36] ( 1 warnings 1383 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:47, 07:14](2015 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:32] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:32](1894 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:14](2017 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:42, 11:07](1134 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:35, 24:34](1857 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:17, 54:32] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:44, 21:09](1883 MB) + +PASS -- COMPILE 's2swa_intel' [42:14, 40:54] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:00](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 07:57](2065 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:53](1719 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:00](2080 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:58, 05:00](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [13:21, 07:55](2323 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 08:02](2060 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 06:58](2002 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 08:03](2058 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:33, 07:27](2045 MB) + +PASS -- COMPILE 's2sw_intel' [39:14, 38:19] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 06:37](1908 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:27](1971 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:10] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:44, 11:05](2091 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:12, 07:44](1944 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [35:15, 35:00] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:44, 06:16](1972 MB) + +PASS -- COMPILE 's2s_intel' [38:16, 35:21] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3078 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 03:58](3054 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:59, 02:29](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:27, 33:36] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:11, 07:38](2028 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [47:21, 47:08] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:37, 21:41](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:02](1136 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 25:13](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:46] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:53](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:00] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [05:41, 04:28](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:01](1552 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 04:05](1557 MB) +PASS -- TEST 'control_latlon_intel' [05:09, 03:55](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:00](1545 MB) +PASS -- TEST 'control_c48_intel' [15:28, 11:46](1739 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:53, 10:13](854 MB) +PASS -- TEST 'control_c192_intel' [17:42, 14:13](1691 MB) +PASS -- TEST 'control_c384_intel' [24:36, 17:54](1837 MB) +PASS -- TEST 'control_c384gdas_intel' [21:34, 13:17](1023 MB) +PASS -- TEST 'control_stochy_intel' [03:37, 02:15](605 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:21](438 MB) +PASS -- TEST 'control_lndp_intel' [03:37, 02:09](606 MB) +PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](602 MB) +PASS -- TEST 'control_iovr5_intel' [04:38, 03:23](605 MB) +PASS -- TEST 'control_p8_intel' [06:34, 04:43](1848 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [12:06, 04:48](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:27](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [04:06, 02:50](1060 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:27](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:47](1076 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:52](1833 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:37](1933 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:15, 07:47](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 05:58](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:54, 04:43](1858 MB) +PASS -- TEST 'merra2_thompson_intel' [07:03, 05:00](1847 MB) +PASS -- TEST 'regional_control_intel' [09:06, 07:57](1014 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 04:36](1010 MB) +PASS -- TEST 'regional_decomp_intel' [10:07, 08:15](1020 MB) +PASS -- TEST 'regional_2threads_intel' [07:08, 05:55](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [09:13, 07:52](1022 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:06, 07:58](1014 MB) + +PASS -- COMPILE 'rrfs_intel' [36:17, 35:44] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [15:09, 10:17](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 05:39](1222 MB) +PASS -- TEST 'rap_decomp_intel' [14:16, 10:41](988 MB) +PASS -- TEST 'rap_2threads_intel' [14:16, 09:44](1087 MB) +PASS -- TEST 'rap_restart_intel' [07:22, 05:19](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:32, 10:05](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:07, 10:40](989 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:12, 07:36](1004 MB) +PASS -- TEST 'hrrr_control_intel' [10:01, 05:17](984 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:03, 05:27](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:40, 04:48](1069 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:32, 02:49](922 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:44, 10:02](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:29](1946 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:12](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [33:19, 32:42] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [09:48, 08:46](960 MB) +PASS -- TEST 'control_ras_intel' [05:27, 04:30](663 MB) + +PASS -- COMPILE 'wam_intel' [33:18, 32:39] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [15:55, 14:18](1632 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:45] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:34, 04:14](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:46, 07:12](1011 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:59, 03:27](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:20](1580 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:49](778 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:28](770 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:57, 05:59](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:33, 03:28](788 MB) +PASS -- TEST 'control_diag_debug_intel' [05:03, 03:27](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [06:07, 04:25](1878 MB) +PASS -- TEST 'regional_debug_intel' [24:02, 22:44](1044 MB) +PASS -- TEST 'rap_control_debug_intel' [07:35, 06:10](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:37, 06:04](1157 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 06:08](1167 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:10](1164 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:11](1164 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 06:30](1243 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 06:22](1169 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:29, 06:17](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:12](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 06:17](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:30, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1165 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:13](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 06:09](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:33, 07:32](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:12](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:29, 10:45](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 04:42] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:05, 16:52](1652 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:42] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:21](1081 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:01, 08:25](904 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:29](868 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 08:00](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:20, 04:04](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 04:46](865 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 06:15](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 02:25](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:20, 48:43] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:13, 02:58](1108 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:23](1053 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:51, 01:36](1023 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:16, 31:03] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 05:34](915 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:08](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:01](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [20:05, 18:40](1153 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:54](900 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:57, 10:51](1099 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:58, 18:41](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:52] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:28, 06:12](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [39:17, 38:48] ( 1 warnings 1427 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [12:27, 06:59](721 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:41, 06:51](1095 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:46, 09:19](767 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:30, 16:30](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:55, 18:08](827 MB) +PASS -- TEST 'gnv1_nested_intel' [27:10, 07:31](1683 MB) + +PASS -- COMPILE 'hafs_all_intel' [34:17, 33:41] ( 1268 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:30, 08:46](773 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:31, 08:53](753 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:29] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1084 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:14](1027 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:25, 03:31](937 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 03:33](931 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:34](926 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1066 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:35](1049 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](932 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:57](888 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:22, 07:51](842 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1074 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:15](2407 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:05](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:38] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:25, 08:02](1026 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:37] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:36](1069 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 01:55] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:42, 02:00](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:36, 01:43](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:54](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 34:08] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:29, 05:35](1913 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:15, 33:24] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:39, 05:31](1875 MB) + +PASS -- COMPILE 'atml_intel' [38:16, 37:52] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:48, 08:59](1868 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:46, 09:11](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 04:52](1076 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 06:04] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:54, 08:16](1899 MB) + +PASS -- COMPILE 'atmw_intel' [36:16, 35:32] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:23, 02:51](1862 MB) + +PASS -- COMPILE 'atmaero_intel' [31:18, 27:13] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:32, 05:58](1945 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:29, 06:29](1723 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:20, 06:33](1734 MB) SYNOPSIS: -Starting Date/Time: 20240729 06:22:57 -Ending Date/Time: 20240729 15:24:17 -Total Time: 09h:01m:51s +Starting Date/Time: 20240731 21:01:26 +Ending Date/Time: 20240801 00:59:10 +Total Time: 03h:58m:22s Compiles Completed: 36/36 -Tests Completed: 160/164 -Failed Tests: -* TEST cpld_control_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_intel.log -* TEST cpld_control_gfsv17_iau_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_control_gfsv17_iau_intel.log -* TEST cpld_restart_gfsv17_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_gfsv17_intel.log -* TEST cpld_restart_qr_p8_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2355/ufs-weather-model/tests/logs/log_jet/run_cpld_restart_qr_p8_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -9fc184af0952396d9793dade5f7d4b699b781120 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2040239 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:06, 49:05] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [23:30, 21:46](1879 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:26, 22:34](2009 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 11:21](1090 MB) - -PASS -- COMPILE 's2swa_intel' [40:45, 40:44] ( 1381 remarks ) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:43, 08:16](2067 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:27, 05:53](1724 MB) - -SYNOPSIS: -Starting Date/Time: 20240729 15:56:33 -Ending Date/Time: 20240729 17:53:36 -Total Time: 01h:57m:17s -Compiles Completed: 2/2 -Tests Completed: 5/5 +Tests Completed: 164/164 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 770122e795..8b2f2fd0b3 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: -d5e8925d6a8098c4f89a39d864f8ca8b4f98d0a5 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,287 +35,358 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3184996 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_457009 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 16:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:29](2084 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:20] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:43, 18:03](1962 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:15, 19:01](2143 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:49](1217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:48, 20:24](1883 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:42] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:42](1958 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:24] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:35, 26:49](1940 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 16:01] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:44, 14:19](2148 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:19](2150 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:45](1817 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:44, 14:18](2161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:50](1714 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:38, 13:11](2440 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:38, 14:06](2137 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:40, 12:00](2044 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:45, 14:30](2139 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:34, 16:15](2714 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:33, 08:40](2731 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:06, 11:23](3655 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 06:57](3502 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:32, 05:50](2117 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:24, 13:37](1979 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:34, 04:45](2049 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:22] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:12, 08:34](2168 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:40] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 06:06](2011 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:42](2040 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:52] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:57, 10:02](3108 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:34](3082 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:04](2513 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:52] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:37, 14:51](2143 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:35] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 18:07](1997 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:21, 08:58](1259 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:15, 20:19](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 07:08] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:08, 29:01](1982 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:37](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:39, 03:03](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:50, 03:09](1588 MB) -PASS -- TEST 'control_latlon_intel' [03:40, 03:04](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:06](1587 MB) -PASS -- TEST 'control_c48_intel' [10:46, 09:11](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:54](860 MB) -PASS -- TEST 'control_c192_intel' [12:00, 11:06](1732 MB) -PASS -- TEST 'control_c384_intel' [13:47, 12:10](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:23, 09:20](1359 MB) -PASS -- TEST 'control_stochy_intel' [02:24, 01:47](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:57, 01:04](483 MB) -PASS -- TEST 'control_lndp_intel' [02:24, 01:41](652 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:39](644 MB) -PASS -- TEST 'control_iovr5_intel' [03:25, 02:39](642 MB) -PASS -- TEST 'control_p8_intel' [05:12, 03:25](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 03:24](1890 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:14](1888 MB) -PASS -- TEST 'control_restart_p8_intel' [03:08, 01:57](1100 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:19](1874 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:20, 01:55](1137 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:17, 03:26](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:16, 03:32](1966 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 05:46](1891 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:26, 04:45](1950 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:26, 03:23](1893 MB) -PASS -- TEST 'merra2_thompson_intel' [05:40, 03:44](1897 MB) -PASS -- TEST 'regional_control_intel' [07:36, 06:14](1088 MB) -PASS -- TEST 'regional_restart_intel' [06:38, 03:43](1084 MB) -PASS -- TEST 'regional_decomp_intel' [07:36, 06:35](1076 MB) -PASS -- TEST 'regional_2threads_intel' [05:31, 04:35](1093 MB) -PASS -- TEST 'regional_noquilt_intel' [07:40, 06:13](1380 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 06:09](1089 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:33, 06:15](1089 MB) -PASS -- TEST 'regional_wofs_intel' [09:02, 07:56](1908 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:17] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:25, 08:37](1063 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:57, 05:01](1306 MB) -PASS -- TEST 'rap_decomp_intel' [10:00, 08:44](1031 MB) -PASS -- TEST 'rap_2threads_intel' [09:52, 08:30](1170 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 04:17](1047 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:05, 08:13](1052 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:57, 08:33](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:28, 06:09](1070 MB) -PASS -- TEST 'hrrr_control_intel' [06:15, 04:15](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:19](1021 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:03](1096 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:33, 02:23](951 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:20, 08:13](1047 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:46](1992 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:29, 09:30](2025 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:38] -PASS -- TEST 'control_csawmg_intel' [08:38, 06:39](1023 MB) -PASS -- TEST 'control_ras_intel' [05:23, 03:35](721 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:35] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:11](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:11, 19:53] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:36, 03:24](1882 MB) -PASS -- TEST 'regional_control_faster_intel' [07:44, 06:11](1084 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:18] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:44](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:55, 02:37](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:26, 03:10](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](819 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:14](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:47](824 MB) -PASS -- TEST 'control_diag_debug_intel' [03:52, 02:47](1676 MB) -PASS -- TEST 'control_debug_p8_intel' [03:52, 03:06](1912 MB) -PASS -- TEST 'regional_debug_intel' [18:50, 17:25](1109 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:49](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:29, 04:46](1201 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:29, 04:47](1206 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:29, 04:51](1209 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:57](1213 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:34, 06:12](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:27, 05:30](1205 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:50](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:10](1212 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 05:33](1207 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:28, 05:18](1207 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:42, 05:32](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:42, 08:02](1200 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:30, 04:48](1195 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:58](1216 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:51](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:21, 08:24](1212 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:26] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:46, 13:31](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:20] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:41](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 06:56](996 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:41](934 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:58, 07:06](1079 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:35](957 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:28, 03:49](906 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [29:21, 05:13](982 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [07:55, 02:00](888 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:11, 18:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:52, 02:39](1177 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:51, 01:11](1135 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [07:42, 01:28](1087 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:28](982 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:15] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:49](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:21, 04:43](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [15:48, 14:10](1240 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:48, 14:27](945 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:27](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:45, 14:25](1306 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 05:07] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:57](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [14:12, 13:16] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:17, 06:00](764 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:36, 06:14](1141 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:26](841 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:11, 24:45](867 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [32:16, 28:36](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:04, 06:59](512 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:28, 08:19](525 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [08:54, 03:23](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 09:26](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:51, 04:39](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:51, 04:25](535 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:50, 05:37](602 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [13:33, 01:32](417 MB) -PASS -- TEST 'gnv1_nested_intel' [20:10, 04:16](1728 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 05:44] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [23:55, 13:08](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [23:13, 22:38] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:14, 13:01](761 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:59, 12:55](734 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 13:20] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:58, 08:45](728 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:16, 13:03] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [34:20, 07:16](841 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:12, 07:17](812 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [42:58, 16:25](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:10, 08:08] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [24:20, 02:56](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:23, 01:54](1118 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [28:19, 02:48](1026 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [28:21, 02:52](1018 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [28:19, 02:52](1027 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [27:21, 02:57](1155 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:22, 02:56](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [28:19, 02:48](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:10, 06:26](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [34:05, 06:24](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [28:18, 02:55](1134 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 04:19](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [29:20, 04:19](2388 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:39] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [31:20, 06:30](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [28:18, 02:56](1159 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [26:34, 01:02](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [25:26, 00:56](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:28, 00:36](318 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 12:22] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [27:10, 04:02](1980 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [26:09, 03:50](1965 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:42] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [27:31, 04:44](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [27:32, 04:45](1874 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:50, 02:37](1080 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:56] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [26:24, 05:52](1901 MB) - -PASS -- COMPILE 'atmw_intel' [13:12, 12:41] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:17, 02:03](1920 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 12:03] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [21:13, 04:29](1997 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [18:13, 05:14](1782 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [17:59, 05:18](1783 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:13] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:56, 20:52](4551 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:10, 16:24] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:41, 14:32](2094 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 18:05](1960 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 19:00](2129 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:23](1880 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:40](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:37] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:49, 26:53](1944 MB) + +PASS -- COMPILE 's2swa_intel' [16:10, 16:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:36, 14:16](2140 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:18](2135 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:55](1810 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:36, 14:32](2167 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:58](1716 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:34, 13:16](2434 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:34, 14:05](2132 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:17](2148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:40](2718 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:02, 08:26](2724 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:01, 11:29](3662 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:34, 07:08](3542 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:26, 05:58](2116 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:34] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:40](1981 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:28, 04:49](2044 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:14] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:50](2173 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:16] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 06:03](2018 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:10, 13:41] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:18, 04:39](2046 MB) + +PASS -- COMPILE 's2s_intel' [14:10, 14:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:47](3109 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:20](3091 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:01, 02:08](2546 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:11, 23:00] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:31](2154 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 20:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 18:07](1995 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:54](1248 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 20:20](1909 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:48] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 28:48](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:37](689 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1593 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:10](1593 MB) +PASS -- TEST 'control_latlon_intel' [03:43, 03:05](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 03:06](1594 MB) +PASS -- TEST 'control_c48_intel' [10:49, 09:16](1740 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:56](856 MB) +PASS -- TEST 'control_c192_intel' [12:49, 11:10](1741 MB) +PASS -- TEST 'control_c384_intel' [14:48, 12:21](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [12:28, 09:27](1360 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:48](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:08](475 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:42](643 MB) +PASS -- TEST 'control_iovr4_intel' [03:24, 02:38](639 MB) +PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:26](1882 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:25](1880 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:20, 03:15](1884 MB) +PASS -- TEST 'control_restart_p8_intel' [03:06, 02:01](1095 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:22](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 01:57](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:22](1872 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:40](1975 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:49](1881 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:52](1952 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [05:34, 03:40](1895 MB) +PASS -- TEST 'regional_control_intel' [07:35, 06:17](1091 MB) +PASS -- TEST 'regional_restart_intel' [04:36, 03:29](1081 MB) +PASS -- TEST 'regional_decomp_intel' [07:37, 06:39](1081 MB) +PASS -- TEST 'regional_2threads_intel' [05:35, 04:36](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:19](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 06:17](1088 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:21](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:35, 07:33](1908 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:16] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:20, 08:16](1059 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 05:01](1307 MB) +PASS -- TEST 'rap_decomp_intel' [10:02, 08:27](1020 MB) +PASS -- TEST 'rap_2threads_intel' [09:57, 08:14](1168 MB) +PASS -- TEST 'rap_restart_intel' [06:29, 04:16](1041 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:00, 08:11](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:28](1026 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1075 MB) +PASS -- TEST 'hrrr_control_intel' [05:58, 04:16](1029 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:20](1015 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 04:05](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:18](950 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:14, 08:03](1043 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:38](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:22](2026 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] +PASS -- TEST 'control_csawmg_intel' [07:37, 06:32](1024 MB) +PASS -- TEST 'control_ras_intel' [04:23, 03:25](718 MB) + +PASS -- COMPILE 'wam_intel' [12:11, 11:30] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:43, 12:01](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:39] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:19, 03:10](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [06:33, 05:58](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:02] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:44](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:39](1611 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:03](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:42](817 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:18](1143 MB) +PASS -- TEST 'control_ras_debug_intel' [03:24, 02:48](822 MB) +PASS -- TEST 'control_diag_debug_intel' [03:49, 02:44](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [03:49, 03:08](1919 MB) +PASS -- TEST 'regional_debug_intel' [18:47, 17:16](1098 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1210 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:44](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:52](1209 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:14](1210 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:31](1207 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:14](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 04:57](1208 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:00](1207 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:50](1211 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:00](1213 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:49](1208 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:01](1201 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:50](1205 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:01](1211 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:52](1213 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:19, 08:19](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:48](1167 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:58](1012 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:41](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 07:05](1082 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:33](956 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:51](907 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:13](981 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:46] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:36](1185 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:13](1131 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 01:30](1085 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:33] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:29](978 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:43](1090 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:45](1086 MB) +PASS -- TEST 'conus13km_debug_intel' [14:49, 14:07](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:29](950 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:31](1174 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:44](1316 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:54](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:26] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:54](761 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:10](1136 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:22](840 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:15](871 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:23, 29:02](886 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:59](515 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:17](521 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:22](382 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:13, 09:28](485 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:37](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:21](541 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:38](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:33](411 MB) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:47] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:56](603 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:10, 21:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:11, 12:47](676 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 12:49](735 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:17] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 08:45](726 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:10, 12:30] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:14](833 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 07:15](818 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1200 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:16] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:56](1158 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:54](1108 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:47](1021 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:50](1024 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1023 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:28](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:22](1007 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:55](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:16](2398 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2345 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:44] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:29](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:48] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:56](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:37](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:59] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:00](1984 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:54](1955 MB) + +PASS -- COMPILE 'atml_intel' [14:10, 13:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 04:47](1872 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:46](1870 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:47](1083 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 06:45] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 05:52](1906 MB) + +PASS -- COMPILE 'atmw_intel' [13:10, 12:32] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 02:04](1919 MB) + +PASS -- COMPILE 'atmaero_intel' [12:10, 12:06] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:33](1989 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 05:14](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:17](1800 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:56] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 20:46](4552 MB) SYNOPSIS: -Starting Date/Time: 20240729 07:28:02 -Ending Date/Time: 20240729 09:28:56 -Total Time: 02h:01m:46s +Starting Date/Time: 20240731 09:22:04 +Ending Date/Time: 20240731 10:52:07 +Total Time: 01h:30m:46s Compiles Completed: 41/41 -Tests Completed: 185/185 +Tests Completed: 183/185 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_control_wam_debug_intel.log +* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_gnv1_nested_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF ORION REGRESSION TESTING LOG==== +====START OF ORION REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1813348 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [06:10, 05:35] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:41, 14:00](1695 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 13:28] ( 1 warnings 9 remarks ) +PASS -- TEST 'gnv1_nested_intel' [07:06, 04:19](1730 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:42:20 +Ending Date/Time: 20240731 17:05:05 +Total Time: 00h:22m:56s +Compiles Completed: 2/2 +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 cb60b28f68..f62c9c31cf 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: -4124fe82547dcec17e208ff919f41db354b212e6 +619de9c8122177396890d13cd5c4ba97ccb5032b Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) @@ -11,7 +11,7 @@ Submodule hashes used in testing: f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - a576dd33414bc550cb7a7da5dba044f5394a7756 FV3 (remotes/origin/dump_cpl_fields) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -35,241 +35,307 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240724 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_18190 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135764 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:28, 11:23] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:39, 01:31](3102 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [27:46, 27:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:20, 01:59](1823 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [58:03, 02:28](1853 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [58:03, 01:59](981 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:21, 01:58](1793 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:42, 22:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:24, 01:08](1819 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:32, 16:07] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:36, 02:00](1843 MB) - -PASS -- COMPILE 's2swa_intel' [11:30, 11:12] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [32:36, 01:36](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [32:36, 01:56](3133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [24:15, 01:09](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [32:36, 01:36](3151 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [24:15, 01:42](3084 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [32:36, 01:05](3372 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [32:36, 01:33](3126 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [32:37, 01:34](3076 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [32:36, 01:57](3134 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [32:45, 04:36](4127 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:25, 05:43](4268 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [32:36, 01:58](3115 MB) - -PASS -- COMPILE 's2sw_intel' [11:28, 11:07] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [32:38, 00:54](1835 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:38, 01:04](1891 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:28, 10:35] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [32:38, 01:07](1893 MB) - -PASS -- COMPILE 's2s_intel' [11:28, 10:26] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [32:37, 01:06](2928 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [32:37, 01:30](2918 MB) -PASS -- TEST 'cpld_restart_c48_intel' [28:28, 01:04](2326 MB) - -PASS -- COMPILE 's2swa_faster_intel' [40:59, 40:29] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [03:01, 02:24](3130 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:42, 22:39] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:43, 01:05](1834 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [01:13, 01:24](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [01:14, 01:39](1808 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:31, 15:37] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:07, 01:30](1865 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [21:13, 00:20](572 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [21:12, 00:29](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:12, 00:27](1478 MB) -PASS -- TEST 'control_latlon_intel' [21:13, 00:19](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:13, 00:31](1472 MB) -PASS -- TEST 'control_c48_intel' [21:11, 01:06](1593 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [21:11, 00:53](715 MB) -PASS -- TEST 'control_c192_intel' [21:12, 00:27](1588 MB) -PASS -- TEST 'control_c384_intel' [21:16, 01:22](1910 MB) -PASS -- TEST 'control_c384gdas_intel' [21:17, 02:02](1088 MB) -PASS -- TEST 'control_stochy_intel' [21:12, 00:24](530 MB) -PASS -- TEST 'control_stochy_restart_intel' [18:43, 01:03](332 MB) -PASS -- TEST 'control_lndp_intel' [21:13, 00:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [21:12, 00:44](524 MB) -PASS -- TEST 'control_iovr5_intel' [21:12, 00:42](525 MB) -PASS -- TEST 'control_p8_intel' [21:12, 01:40](1765 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [21:13, 01:50](1772 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [21:12, 01:51](1775 MB) -PASS -- TEST 'control_restart_p8_intel' [15:55, 01:09](915 MB) -PASS -- TEST 'control_noqr_p8_intel' [21:12, 01:41](1761 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [15:55, 01:10](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [21:13, 01:34](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [21:13, 01:06](1858 MB) -PASS -- TEST 'control_p8_lndp_intel' [21:13, 01:08](1770 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [21:13, 02:01](1823 MB) -PASS -- TEST 'control_p8_mynn_intel' [21:13, 01:42](1776 MB) -PASS -- TEST 'merra2_thompson_intel' [21:13, 01:39](1772 MB) -PASS -- TEST 'regional_control_intel' [21:12, 00:15](851 MB) -PASS -- TEST 'regional_restart_intel' [15:20, 00:33](837 MB) -PASS -- TEST 'regional_decomp_intel' [18:26, 00:51](847 MB) -PASS -- TEST 'regional_2threads_intel' [17:48, 00:50](903 MB) -PASS -- TEST 'regional_noquilt_intel' [17:39, 00:19](1169 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [17:39, 01:18](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [17:23, 01:08](853 MB) -PASS -- TEST 'regional_wofs_intel' [17:19, 00:48](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [24:45, 24:18] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:52, 02:03](912 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:53, 01:03](1092 MB) -PASS -- TEST 'rap_decomp_intel' [06:30, 02:01](912 MB) -PASS -- TEST 'rap_2threads_intel' [06:12, 01:44](996 MB) -PASS -- TEST 'rap_restart_intel' [58:30, 01:28](784 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:44, 02:19](914 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:44, 02:02](910 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [56:07, 01:39](782 MB) -PASS -- TEST 'hrrr_control_intel' [05:29, 01:27](907 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:07, 01:02](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:53, 01:14](986 MB) -PASS -- TEST 'hrrr_control_restart_intel' [00:00, 01:18](735 MB) -PASS -- TEST 'rrfs_v1beta_intel' [04:13, 01:29](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [04:13, 01:16](1871 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [04:07, 01:31](1860 MB) - -PASS -- COMPILE 'csawmg_intel' [13:27, 13:11] -PASS -- TEST 'control_csawmg_intel' [17:17, 00:25](872 MB) -PASS -- TEST 'control_ras_intel' [17:13, 00:51](566 MB) - -PASS -- COMPILE 'wam_intel' [38:05, 37:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [53:33, 00:55](1568 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:36, 18:47] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:58, 02:03](1773 MB) -PASS -- TEST 'regional_control_faster_intel' [07:57, 00:21](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 06:02] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [15:04, 01:16](1504 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [15:04, 01:22](1498 MB) -PASS -- TEST 'control_stochy_debug_intel' [15:04, 00:51](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [15:04, 01:09](700 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:04, 00:22](1015 MB) -PASS -- TEST 'control_ras_debug_intel' [14:35, 00:59](710 MB) -PASS -- TEST 'control_diag_debug_intel' [14:24, 01:16](1565 MB) -PASS -- TEST 'control_debug_p8_intel' [14:14, 00:51](1805 MB) -PASS -- TEST 'regional_debug_intel' [13:07, 00:12](893 MB) -PASS -- TEST 'rap_control_debug_intel' [13:05, 00:45](1088 MB) -PASS -- TEST 'hrrr_control_debug_intel' [12:44, 00:49](1079 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:25, 00:49](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:25, 00:45](1087 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:58, 00:39](1087 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:47, 00:35](1167 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:28, 00:37](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:50, 00:35](1092 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:47, 00:38](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:22, 00:42](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:22, 00:46](1084 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:10, 00:39](1086 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:08, 00:28](1084 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:04, 00:47](1080 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:02, 00:36](1092 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:35, 00:41](1092 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:33, 01:54](1093 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:21, 06:25] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [09:33, 00:26](1592 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:34, 13:52] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:51, 01:16](955 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:48, 02:18](791 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:41, 02:09](786 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:31, 02:02](853 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [02:27, 02:23](843 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [02:20, 01:51](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [55:19, 01:26](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [58:02, 00:28](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:41, 19:36] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [58:26, 01:25](1006 MB) -PASS -- TEST 'conus13km_2threads_intel' [54:07, 00:52](1008 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [54:06, 00:41](886 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:49, 21:12] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [54:29, 01:16](814 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [23:54, 22:50] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:11, 00:55](961 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:11, 01:05](960 MB) -PASS -- TEST 'conus13km_debug_intel' [52:11, 01:05](1055 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [52:11, 00:53](726 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [52:12, 00:18](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [52:11, 01:00](1121 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [26:56, 25:58] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [48:07, 00:47](994 MB) - -PASS -- COMPILE 'hafsw_intel' [25:45, 25:03] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [48:08, 01:59](613 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [48:08, 01:12](969 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [48:06, 01:49](662 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:06, 01:27](697 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:07, 01:23](713 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:06, 00:59](391 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [48:07, 02:16](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [48:07, 01:43](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [48:10, 02:20](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [48:06, 01:33](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [48:06, 00:49](418 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [48:08, 00:50](491 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [48:07, 00:25](313 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:27, 09:57] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [57:33, 01:17](525 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [20:45, 19:47] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [47:09, 00:48](531 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [47:09, 01:39](710 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:48, 22:36] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [42:04, 00:48](712 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:34, 13:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [48:34, 02:11](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:34, 02:10](650 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:32, 00:25](881 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:44] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [46:46, 00:46](1827 MB) - -PASS -- COMPILE 'atml_intel' [16:32, 15:52] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [10:25, 09:56] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:31, 17:01] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [36:02, 01:21](3024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [36:02, 01:49](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:02, 01:47](2923 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:29, 06:25] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [44:43, 01:14](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [31:50, 30:42] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:57, 01:57](3100 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 01:55](1824 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 01:37](1849 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [34:19, 02:12](982 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 01:29](1792 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 42:13] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [27:53, 01:11](1821 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:31, 15:08] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [55:20, 01:46](1843 MB) + +PASS -- COMPILE 's2swa_intel' [30:47, 30:03] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:02, 01:36](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:02, 01:48](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:42, 01:04](3065 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 01:34](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [31:42, 00:59](3087 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:02, 01:01](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 01:45](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:03, 01:35](3078 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:02, 01:49](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 04:01](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:42, 04:25](4273 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:02, 01:50](3114 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 11:14] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [58:23, 00:49](1840 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:23, 00:58](1904 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:28, 13:20] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:22, 01:06](1899 MB) + +PASS -- COMPILE 's2s_intel' [22:38, 21:55] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [48:11, 01:00](2923 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [48:11, 01:27](2925 MB) +PASS -- TEST 'cpld_restart_c48_intel' [44:08, 01:11](2349 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:48, 30:01] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:02, 01:55](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:34, 18:11] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 00:47](1843 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:04, 01:26](1008 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 01:41](1802 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:50, 28:29] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 00:42](1863 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [34:52, 34:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:50, 00:22](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:50, 00:35](1463 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:50, 00:24](1475 MB) +PASS -- TEST 'control_latlon_intel' [19:20, 00:20](1478 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:56, 00:32](1471 MB) +PASS -- TEST 'control_c48_intel' [18:45, 01:11](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:45, 00:50](715 MB) +PASS -- TEST 'control_c192_intel' [18:45, 00:40](1593 MB) +PASS -- TEST 'control_c384_intel' [18:36, 01:37](1903 MB) +PASS -- TEST 'control_c384gdas_intel' [18:32, 02:04](1089 MB) +PASS -- TEST 'control_stochy_intel' [18:26, 00:27](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [16:01, 01:01](333 MB) +PASS -- TEST 'control_lndp_intel' [18:21, 00:30](528 MB) +PASS -- TEST 'control_iovr4_intel' [17:52, 00:44](527 MB) +PASS -- TEST 'control_iovr5_intel' [17:52, 00:43](521 MB) +PASS -- TEST 'control_p8_intel' [17:32, 01:38](1770 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:44, 01:49](1765 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [16:44, 01:57](1772 MB) +PASS -- TEST 'control_restart_p8_intel' [12:25, 01:00](917 MB) +PASS -- TEST 'control_noqr_p8_intel' [16:44, 01:31](1759 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [11:43, 00:41](925 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:44, 01:25](1761 MB) +PASS -- TEST 'control_2threads_p8_intel' [16:43, 01:02](1855 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:42, 01:04](1777 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 02:04](1830 MB) +PASS -- TEST 'control_p8_mynn_intel' [16:39, 01:43](1778 MB) +PASS -- TEST 'merra2_thompson_intel' [16:37, 01:42](1778 MB) +PASS -- TEST 'regional_control_intel' [15:56, 00:12](849 MB) +PASS -- TEST 'regional_restart_intel' [10:14, 00:28](852 MB) +PASS -- TEST 'regional_decomp_intel' [15:56, 00:55](852 MB) +PASS -- TEST 'regional_2threads_intel' [15:43, 00:56](904 MB) +PASS -- TEST 'regional_noquilt_intel' [15:33, 00:19](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:20, 00:23](849 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:04, 00:15](855 MB) +PASS -- TEST 'regional_wofs_intel' [15:03, 00:52](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [21:41, 20:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [33:37, 01:42](914 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:38, 01:03](1087 MB) +PASS -- TEST 'rap_decomp_intel' [33:37, 01:26](913 MB) +PASS -- TEST 'rap_2threads_intel' [33:37, 01:45](997 MB) +PASS -- TEST 'rap_restart_intel' [24:34, 01:33](785 MB) +PASS -- TEST 'rap_sfcdiff_intel' [33:37, 02:10](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:37, 01:55](911 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [24:03, 01:43](782 MB) +PASS -- TEST 'hrrr_control_intel' [33:37, 01:02](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [33:37, 00:56](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [33:38, 01:24](991 MB) +PASS -- TEST 'hrrr_control_restart_intel' [28:32, 01:05](737 MB) +PASS -- TEST 'rrfs_v1beta_intel' [33:37, 02:08](907 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [33:37, 01:00](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:37, 01:17](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [11:25, 11:05] +PASS -- TEST 'control_csawmg_intel' [40:52, 00:29](872 MB) +PASS -- TEST 'control_ras_intel' [40:52, 00:52](565 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 08:31] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [42:52, 00:55](1572 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 13:52] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [33:09, 02:03](1774 MB) +PASS -- TEST 'regional_control_faster_intel' [32:39, 00:21](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:35, 18:23] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:16, 01:14](1499 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:17](1501 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:16, 00:44](701 MB) +PASS -- TEST 'control_lndp_debug_intel' [23:16, 01:00](703 MB) +PASS -- TEST 'control_csawmg_debug_intel' [23:16, 00:26](1012 MB) +PASS -- TEST 'control_ras_debug_intel' [23:16, 01:01](711 MB) +PASS -- TEST 'control_diag_debug_intel' [23:16, 01:12](1559 MB) +PASS -- TEST 'control_debug_p8_intel' [23:16, 00:54](1796 MB) +PASS -- TEST 'regional_debug_intel' [23:15, 00:11](903 MB) +PASS -- TEST 'rap_control_debug_intel' [23:16, 00:44](1084 MB) +PASS -- TEST 'hrrr_control_debug_intel' [23:16, 00:49](1078 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [23:16, 00:45](1087 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [23:16, 00:42](1083 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:16, 00:43](1082 MB) +PASS -- TEST 'rap_diag_debug_intel' [23:16, 00:34](1164 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:16, 00:37](1086 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:13, 00:36](1090 MB) +PASS -- TEST 'rap_lndp_debug_intel' [14:24, 00:47](1086 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:24, 00:51](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [14:24, 00:54](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [13:28, 00:42](1082 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 00:25](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [12:05, 00:47](1078 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:45, 00:33](1090 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:22, 00:41](1090 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 01:51](1091 MB) + +PASS -- COMPILE 'wam_debug_intel' [22:43, 22:00] ( 825 warnings 1 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:32] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:29, 01:16](954 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:28, 01:20](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:28, 02:00](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:28, 01:49](856 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:29, 02:17](844 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:28, 01:51](786 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:09, 01:34](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:05, 00:17](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:42, 22:30] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [10:46, 01:05](1003 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:00](1009 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:47, 00:47](887 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:44, 17:47] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 01:21](812 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:59, 31:28] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:37, 00:55](964 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:37, 01:04](960 MB) +PASS -- TEST 'conus13km_debug_intel' [01:37, 01:05](1056 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [01:37, 00:57](725 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [01:38, 00:23](1057 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:37, 01:00](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 10:24] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:11, 00:56](991 MB) + +PASS -- COMPILE 'hafsw_intel' [22:37, 22:21] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:18, 02:04](615 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 01:09](972 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:16, 01:37](664 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [05:16, 01:30](698 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:17, 01:56](711 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:16, 01:03](389 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:17, 02:01](405 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:17, 01:35](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 02:14](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 00:37](413 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 00:52](416 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:18, 00:56](494 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:17, 00:28](325 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:41, 19:23] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:49, 01:16](527 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [25:43, 25:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:36, 01:33](530 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [57:36, 01:32](712 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:36, 14:05] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:56, 00:56](708 MB) + +PASS -- COMPILE 'hafs_all_intel' [21:39, 20:53] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [56:30, 01:49](662 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:30, 01:44](648 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:28, 00:21](880 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 11:09] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 00:46](1824 MB) + +PASS -- COMPILE 'atml_intel' [26:48, 25:34] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:30, 14:15] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [16:30, 15:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [50:22, 01:02](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [50:22, 01:34](2904 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:22, 01:21](2920 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:46] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [57:05, 01:30](4437 MB) SYNOPSIS: -Starting Date/Time: 20240729 13:15:36 -Ending Date/Time: 20240729 14:41:50 -Total Time: 01h:26m:50s +Starting Date/Time: 20240731 13:48:54 +Ending Date/Time: 20240731 15:30:17 +Total Time: 01h:42m:25s Compiles Completed: 33/33 -Tests Completed: 156/156 +Tests Completed: 155/156 +Failed Tests: +* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_control_wam_debug_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF WCOSS2 REGRESSION TESTING LOG==== +====START OF WCOSS2 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +619de9c8122177396890d13cd5c4ba97ccb5032b + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_238998 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: GFS-DEV +* (-n) - RUN SINGLE TEST: control_wam_debug +* (-e) - USE ECFLOW + +PASS -- COMPILE 'wam_debug_intel' [04:17, 03:54] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [40:01, 01:01](1599 MB) + +SYNOPSIS: +Starting Date/Time: 20240731 16:15:42 +Ending Date/Time: 20240731 16:37:16 +Total Time: 00h:21m:56s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/diag_table/diag_table_cpld.IN b/tests/parm/diag_table/diag_table_cpld.IN index 2a602d9d93..002b47673e 100644 --- a/tests/parm/diag_table/diag_table_cpld.IN +++ b/tests/parm/diag_table/diag_table_cpld.IN @@ -76,6 +76,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_template b/tests/parm/diag_table/diag_table_template index 37f7765f67..75ee3bd7a3 100644 --- a/tests/parm/diag_table/diag_table_template +++ b/tests/parm/diag_table/diag_table_template @@ -75,6 +75,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_thompson b/tests/parm/diag_table/diag_table_thompson index 588b58b98f..8e2b41b279 100644 --- a/tests/parm/diag_table/diag_table_thompson +++ b/tests/parm/diag_table/diag_table_thompson @@ -102,6 +102,7 @@ "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_wam b/tests/parm/diag_table/diag_table_wam index a86571b34e..273fc78ee1 100644 --- a/tests/parm/diag_table/diag_table_wam +++ b/tests/parm/diag_table/diag_table_wam @@ -21,11 +21,12 @@ "gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "spo3", "o3mr", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "spo2", "spfo2", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "spo", "spfo", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo2", "spfo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "spo", "spfo", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index a2d45053bf..ecdc0c5d0b 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -49,6 +49,7 @@ hydrostatic = @[HYDROSTATIC] phys_hydrostatic = .false. use_hydro_pressure = .false. + pass_full_omega_to_physics_in_non_hydrostatic_mode = @[UPDATE_FULL_OMEGA] beta = 0. a_imp = 1. p_fac = 0.1 diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..c413127f2a 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,77 @@ +cpld_control_p8_mixedmode intel +cpld_control_gfsv17 intel +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17 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_bmark_p8 intel +cpld_restart_bmark_p8 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_c48 intel +cpld_warmstart_c48 intel +cpld_restart_c48 intel +cpld_control_p8_faster intel +cpld_control_pdlib_p8 intel +cpld_restart_pdlib_p8 intel +cpld_mpi_pdlib_p8 intel +cpld_debug_pdlib_p8 intel +control_CubedSphereGrid intel +control_CubedSphereGrid_parallel intel +control_latlon intel +control_wrtGauss_netcdf_parallel intel +control_c48 intel +control_c192 intel +control_c384 intel +control_p8 intel +control_p8.v2.sfc intel +control_p8_ugwpv1 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 +control_wam intel +control_p8_faster intel +control_CubedSphereGrid_debug intel +control_wrtGauss_netcdf_parallel_debug intel +control_diag_debug intel +control_debug_p8 intel +atm_ds2s_docn_pcice intel +atm_ds2s_docn_dice intel +control_p8_atmlnd_sbs 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 +control_c48 gnu +control_p8 gnu +control_p8_ugwpv1 gnu +control_diag_debug gnu +control_debug_p8 gnu +control_wam_debug gnu +cpld_control_nowave_noaero_p8 gnu +cpld_control_pdlib_p8 gnu +cpld_debug_pdlib_p8 gnu + diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 index 01426380af..eb1b30790d 100644 --- a/tests/tests/cpld_control_gfsv17 +++ b/tests/tests/cpld_control_gfsv17 @@ -123,7 +123,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 3e59cabc9c..dbf82fe08c 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -126,7 +126,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 #IAU export CHOUR=12 diff --git a/tests/tests/cpld_control_sfs b/tests/tests/cpld_control_sfs index 428f1a1a65..362e5a112d 100644 --- a/tests/tests/cpld_control_sfs +++ b/tests/tests/cpld_control_sfs @@ -82,7 +82,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 7152ceb68c..37220564ac 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -102,7 +102,7 @@ export KNOB_UGWP_NDX4LH=4 #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 export WW3_DOMAIN=global_270k export MESH_WAV=mesh.${WW3_DOMAIN}.nc diff --git a/tests/tests/cpld_mpi_gfsv17 b/tests/tests/cpld_mpi_gfsv17 index 1f204a4aaa..6fc53f2686 100644 --- a/tests/tests/cpld_mpi_gfsv17 +++ b/tests/tests/cpld_mpi_gfsv17 @@ -130,7 +130,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. diff --git a/tests/tests/cpld_restart_gfsv17 b/tests/tests/cpld_restart_gfsv17 index ad4a7be818..924c60a9b7 100644 --- a/tests/tests/cpld_restart_gfsv17 +++ b/tests/tests/cpld_restart_gfsv17 @@ -132,7 +132,7 @@ export UFS_CONFIGURE=ufs.configure.s2sw.IN #GFSv17 settings export PROGSIGMA=.true. -export IOPT_DIAG=1 +export IOPT_DIAG=2 # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. diff --git a/tests/tests/gnv1_nested b/tests/tests/gnv1_nested index a35fffedf5..28047bdac4 100644 --- a/tests/tests/gnv1_nested +++ b/tests/tests/gnv1_nested @@ -192,7 +192,7 @@ export LHEATSTRG=.false. export LSEASPRAY=.false. export IMFDEEPCNV=5 export IMFDEEPCNV_NEST02=5 -export IOPT_DIAG=1 +export IOPT_DIAG=2 export NSTF_NAME=2,0,0,0,0 export EFFR_IN=.true. export RES_LATLON_DYNAMICS='""' From 74abf0f163214d0b78b6f06d7a60f89db3b86d58 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Tue, 6 Aug 2024 10:40:14 -0400 Subject: [PATCH 7/8] initialize scalar field when created for non-CSG (cube-sphere grid) components (#2370) * UFSWM - * CICE - initialize scalar field when created * MOM6 - initialize scalar field when created * WW3 - initialize scalar field when created --- CICE-interface/CICE | 2 +- MOM6-interface/MOM6 | 2 +- WW3 | 2 +- tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_acorn.log | 593 ++++++-------- tests/logs/RegressionTests_derecho.log | 580 +++++++------ tests/logs/RegressionTests_gaea.log | 621 +++++++------- tests/logs/RegressionTests_hera.log | 765 +++++++++--------- tests/logs/RegressionTests_hercules.log | 730 ++++++++--------- tests/logs/RegressionTests_jet.log | 559 +++++++------ tests/logs/RegressionTests_orion.log | 619 +++++++------- tests/logs/RegressionTests_wcoss2.log | 530 ++++++------ tests/rt.conf | 2 +- 15 files changed, 2459 insertions(+), 2676 deletions(-) diff --git a/CICE-interface/CICE b/CICE-interface/CICE index 9452de8c3c..2ffee5cd48 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit 9452de8c3cb43fb2628f0722e6a51f79429d2160 +Subproject commit 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index b32aea7bf3..4b8777eb08 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit b32aea7bf3f9e2a774afa23d3386c88156cd1182 +Subproject commit 4b8777eb08b065d8a95e5317b6270a7a67ccf93e diff --git a/WW3 b/WW3 index d9b3172f41..7f548c795a 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit d9b3172f4197c65d471662c6952a668152d71230 +Subproject commit 7f548c795a348bbb0fe4967dd25692c79036dc73 diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index b52438f989..24f6aeb1e1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 16:54:12 UTC 2024 +Mon Aug 5 13:20:26 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 279.178521 - 0: The maximum resident set size (KB) = 1452196 + 0: The total amount of wall time = 275.232912 + 0: The maximum resident set size (KB) = 1454960 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 980.789299 - 0: The maximum resident set size (KB) = 1438832 + 0: The total amount of wall time = 990.929727 + 0: The maximum resident set size (KB) = 1452048 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 250.532991 - 0: The maximum resident set size (KB) = 1435764 + 0: The total amount of wall time = 249.842884 + 0: The maximum resident set size (KB) = 1447064 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 252.858828 - 0: The maximum resident set size (KB) = 1423936 + 0: The total amount of wall time = 251.717479 + 0: The maximum resident set size (KB) = 1430488 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.469720 - 0: The maximum resident set size (KB) = 1435444 + 0: The total amount of wall time = 250.675414 + 0: The maximum resident set size (KB) = 1431300 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 251.094450 - 0: The maximum resident set size (KB) = 1435512 + 0: The total amount of wall time = 248.017536 + 0: The maximum resident set size (KB) = 1436404 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3750971/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/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 = 250.907119 - 0: The maximum resident set size (KB) = 1424508 + 0: The total amount of wall time = 249.324976 + 0: The maximum resident set size (KB) = 1431388 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 18:06:20 UTC 2024 -Elapsed time: 01h:12m:08s. Have a nice day! +Mon Aug 5 14:26:37 UTC 2024 +Elapsed time: 01h:06m:13s. 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 b2c3bea61e..057d916e36 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 15:34:20 UTC 2024 +Mon Aug 5 20:25:41 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 1598.613826 - 0: The maximum resident set size (KB) = 1535936 + 0: The total amount of wall time = 1456.394419 + 0: The maximum resident set size (KB) = 1531368 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 726.442492 - 0: The maximum resident set size (KB) = 1538112 + 0: The total amount of wall time = 434.948106 + 0: The maximum resident set size (KB) = 1537108 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3296517/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/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 = 465.781642 - 0: The maximum resident set size (KB) = 1538556 + 0: The total amount of wall time = 436.362270 + 0: The maximum resident set size (KB) = 1517024 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 16:54:12 UTC 2024 -Elapsed time: 01h:19m:53s. Have a nice day! +Mon Aug 5 22:04:47 UTC 2024 +Elapsed time: 01h:39m:08s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 3e72d37929..03e41e3bb2 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Jul 31 13:03:37 UTC 2024 +Mon Aug 5 17:40:12 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 1465.693547 - 0: The maximum resident set size (KB) = 757880 + 0: The total amount of wall time = 1408.629188 + 0: The maximum resident set size (KB) = 768992 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2169.422270 - 0: The maximum resident set size (KB) = 729460 + 0: The total amount of wall time = 2173.644662 + 0: The maximum resident set size (KB) = 708900 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2264.677203 - 0: The maximum resident set size (KB) = 730040 + 0: The total amount of wall time = 2162.607714 + 0: The maximum resident set size (KB) = 716328 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_500215/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/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 = 2181.123987 - 0: The maximum resident set size (KB) = 735016 + 0: The total amount of wall time = 2154.653116 + 0: The maximum resident set size (KB) = 707252 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Jul 31 15:34:18 UTC 2024 -Elapsed time: 02h:30m:42s. Have a nice day! +Mon Aug 5 20:20:41 UTC 2024 +Elapsed time: 02h:40m:29s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index fb5048da8d..cf536a8d6c 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,13 +1,13 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +1d72e10c471068cdf993bc535757009c7d8230d0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,344 +36,273 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1128655 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3669415 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [56:47, 02:34](3214 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:27] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:41, 03:03](1922 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:40, 02:47](1967 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [23:57, 03:15](1091 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [50:42, 03:29](1898 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [51:41, 01:24](1918 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:53] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [02:53, 02:50](1962 MB) - -PASS -- COMPILE 's2swa_intel' [11:26, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [56:45, 01:31](3244 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [56:45, 01:32](3241 MB) -PASS -- TEST 'cpld_restart_p8_intel' [40:39, 01:11](3176 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [56:45, 01:57](3265 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [42:56, 01:51](3191 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [56:45, 01:15](3475 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [56:45, 01:11](3235 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [56:46, 01:41](3185 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [56:45, 01:41](3243 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [56:45, 01:54](3223 MB) - -PASS -- COMPILE 's2sw_intel' [11:25, 10:34] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [56:46, 01:55](1933 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [56:46, 02:13](2004 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:47, 01:28](1994 MB) - -PASS -- COMPILE 's2s_intel' [10:24, 09:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [57:46, 00:57](2948 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [57:46, 01:28](2945 MB) -PASS -- TEST 'cpld_restart_c48_intel' [53:21, 01:41](2360 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:02] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [52:42, 01:51](3237 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 15:51] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [51:40, 01:27](1938 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [27:55, 01:08](1102 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:29, 01:00](1910 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:31] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:35, 00:59](1981 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 10:16] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [44:37, 00:29](670 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [43:01, 01:07](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [43:00, 00:38](1579 MB) -PASS -- TEST 'control_latlon_intel' [42:34, 01:02](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [41:19, 01:12](1575 MB) -PASS -- TEST 'control_c48_intel' [40:18, 00:41](1612 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [39:22, 00:55](733 MB) -PASS -- TEST 'control_c192_intel' [39:18, 01:05](1692 MB) -PASS -- TEST 'control_c384_intel' [38:11, 02:17](2001 MB) -PASS -- TEST 'control_c384gdas_intel' [37:53, 02:46](1190 MB) -PASS -- TEST 'control_stochy_intel' [37:37, 00:34](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [21:54, 00:38](434 MB) -PASS -- TEST 'control_lndp_intel' [35:34, 01:13](630 MB) -PASS -- TEST 'control_iovr4_intel' [33:25, 00:42](624 MB) -PASS -- TEST 'control_iovr5_intel' [31:50, 00:46](624 MB) -PASS -- TEST 'control_p8_intel' [30:45, 02:16](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [30:32, 02:37](1869 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [29:52, 02:16](1871 MB) -PASS -- TEST 'control_restart_p8_intel' [16:48, 02:08](1020 MB) -PASS -- TEST 'control_noqr_p8_intel' [29:43, 01:46](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [16:48, 02:13](1024 MB) -PASS -- TEST 'control_decomp_p8_intel' [29:42, 01:38](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [28:49, 01:59](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [28:42, 00:23](1873 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [28:12, 02:36](1923 MB) -PASS -- TEST 'control_p8_mynn_intel' [26:49, 02:05](1882 MB) -PASS -- TEST 'merra2_thompson_intel' [26:29, 02:19](1871 MB) -PASS -- TEST 'regional_control_intel' [25:51, 00:13](871 MB) -PASS -- TEST 'regional_restart_intel' [20:02, 00:42](880 MB) -PASS -- TEST 'regional_decomp_intel' [24:52, 00:49](881 MB) -PASS -- TEST 'regional_2threads_intel' [24:41, 01:09](1004 MB) -PASS -- TEST 'regional_noquilt_intel' [23:29, 01:07](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [23:06, 00:38](872 MB) -PASS -- TEST 'regional_wofs_intel' [22:29, 00:39](1603 MB) - -PASS -- COMPILE 'ifi_intel' [09:21, 08:36] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [48:11, 01:09](873 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [48:11, 00:14](873 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [48:12, 00:40](1001 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:40] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [46:23, 02:12](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:24, 01:23](1193 MB) -PASS -- TEST 'rap_decomp_intel' [46:23, 02:24](1010 MB) -PASS -- TEST 'rap_2threads_intel' [46:23, 01:50](1095 MB) -PASS -- TEST 'rap_restart_intel' [21:43, 02:44](890 MB) -PASS -- TEST 'rap_sfcdiff_intel' [46:23, 03:09](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:23, 01:59](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [20:55, 02:48](892 MB) -PASS -- TEST 'hrrr_control_intel' [46:23, 02:43](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:23, 02:10](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [46:24, 02:51](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [20:26, 00:39](838 MB) -PASS -- TEST 'rrfs_v1beta_intel' [19:29, 02:54](1003 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [19:10, 01:21](1969 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:39, 00:48](1959 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:59] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [47:25, 00:54](969 MB) -PASS -- TEST 'control_ras_intel' [47:25, 00:26](658 MB) +PASS -- COMPILE 's2swa_32bit_intel' [11:23, 11:02] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:52, 02:10](3214 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:29, 16:07] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [35:47, 02:46](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [09:50, 02:31](1965 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:49, 03:11](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [35:48, 02:38](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:29, 16:15] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [35:47, 00:52](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:17, 04:50] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:59, 02:37](1965 MB) + +PASS -- COMPILE 's2swa_intel' [11:23, 10:52] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:52, 01:34](3243 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:52, 02:25](3238 MB) +PASS -- TEST 'cpld_restart_p8_intel' [25:50, 02:07](3175 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:52, 01:10](3266 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [28:01, 02:07](3194 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:52, 01:55](3479 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:52, 01:51](3235 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:53, 01:17](3185 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:52, 02:22](3244 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:52, 02:03](3223 MB) + +PASS -- COMPILE 's2sw_intel' [11:24, 10:35] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [40:51, 01:54](1932 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [40:51, 02:14](2004 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [10:23, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:52, 02:19](1993 MB) + +PASS -- COMPILE 's2s_intel' [10:23, 09:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [41:51, 00:56](2944 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [41:51, 01:28](2952 MB) +PASS -- TEST 'cpld_restart_c48_intel' [37:24, 01:27](2363 MB) + +PASS -- COMPILE 's2swa_faster_intel' [16:30, 15:39] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [35:45, 02:28](3240 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:30, 15:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:45, 01:34](1939 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:47, 01:50](1122 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [08:30, 01:35](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:17, 04:30] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:41, 01:34](1983 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:24, 10:14] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [28:55, 00:52](669 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [25:37, 01:04](1572 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [25:37, 00:30](1579 MB) +PASS -- TEST 'control_latlon_intel' [25:32, 00:44](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [25:22, 01:10](1575 MB) +PASS -- TEST 'control_c48_intel' [24:57, 01:02](1617 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [23:59, 01:05](734 MB) +PASS -- TEST 'control_c192_intel' [22:34, 00:51](1692 MB) +PASS -- TEST 'control_c384_intel' [22:34, 01:56](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [21:56, 03:08](1198 MB) +PASS -- TEST 'control_stochy_intel' [19:36, 01:07](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:57, 00:44](433 MB) +PASS -- TEST 'control_lndp_intel' [18:32, 01:03](630 MB) +PASS -- TEST 'control_iovr4_intel' [15:37, 00:38](624 MB) +PASS -- TEST 'control_iovr5_intel' [15:43, 00:59](623 MB) +PASS -- TEST 'control_p8_intel' [15:39, 02:32](1869 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [15:36, 02:25](1871 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:52, 02:00](1870 MB) +PASS -- TEST 'control_restart_p8_intel' [03:09, 02:20](1021 MB) +PASS -- TEST 'control_noqr_p8_intel' [13:33, 02:03](1860 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:50, 02:04](1002 MB) +PASS -- TEST 'control_decomp_p8_intel' [13:32, 02:24](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [13:28, 01:59](1957 MB) +PASS -- TEST 'control_p8_lndp_intel' [12:41, 00:27](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:24, 02:20](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:29, 02:36](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [10:27, 03:01](1871 MB) +PASS -- TEST 'regional_control_intel' [10:10, 00:16](870 MB) +PASS -- TEST 'regional_restart_intel' [02:17, 00:35](861 MB) +PASS -- TEST 'regional_decomp_intel' [08:26, 00:53](872 MB) +PASS -- TEST 'regional_2threads_intel' [07:56, 00:50](1005 MB) +PASS -- TEST 'regional_noquilt_intel' [07:12, 01:11](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:05, 00:33](872 MB) +PASS -- TEST 'regional_wofs_intel' [07:04, 01:03](1599 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 08:32] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [32:29, 00:20](872 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [32:29, 00:12](875 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [32:30, 00:38](1011 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 09:36] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [31:17, 01:14](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [31:18, 01:11](1189 MB) +PASS -- TEST 'rap_decomp_intel' [31:17, 01:47](1010 MB) +PASS -- TEST 'rap_2threads_intel' [31:17, 02:37](1094 MB) +PASS -- TEST 'rap_restart_intel' [06:59, 02:34](888 MB) +PASS -- TEST 'rap_sfcdiff_intel' [31:17, 02:42](1009 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [31:17, 01:25](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:21, 02:16](889 MB) +PASS -- TEST 'hrrr_control_intel' [31:17, 02:24](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [31:17, 02:38](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [31:18, 02:47](1086 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:03, 00:25](841 MB) +PASS -- TEST 'rrfs_v1beta_intel' [31:17, 02:43](1004 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [03:37, 00:37](1969 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [03:28, 00:31](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:56] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [31:29, 00:52](967 MB) +PASS -- TEST 'control_ras_intel' [31:29, 00:53](659 MB) PASS -- COMPILE 'wam_intel' [09:22, 08:57] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [47:24, 00:40](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [18:06, 02:05](1868 MB) -PASS -- TEST 'regional_control_faster_intel' [16:47, 01:09](868 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [32:49, 05:44] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [16:20, 00:49](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [16:20, 00:57](1617 MB) -PASS -- TEST 'control_stochy_debug_intel' [16:02, 00:39](818 MB) -PASS -- TEST 'control_lndp_debug_intel' [16:06, 00:20](813 MB) -PASS -- TEST 'control_csawmg_debug_intel' [15:53, 01:02](1126 MB) -PASS -- TEST 'control_ras_debug_intel' [15:50, 01:05](820 MB) -PASS -- TEST 'control_diag_debug_intel' [14:42, 00:51](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [14:19, 00:40](1906 MB) -PASS -- TEST 'regional_debug_intel' [13:49, 00:37](948 MB) -PASS -- TEST 'rap_control_debug_intel' [13:44, 00:58](1199 MB) -PASS -- TEST 'hrrr_control_debug_intel' [13:30, 01:08](1194 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [13:07, 00:45](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [12:36, 01:10](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:37, 00:49](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:16, 01:30](1277 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:35, 00:37](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 00:57](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:34, 01:04](1198 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:34, 01:08](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:04, 00:26](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [09:48, 00:36](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:29, 00:51](1196 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:51, 00:50](1191 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:25, 01:05](1197 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:23, 00:35](1203 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:13, 02:44](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [55:12, 03:53] ( 840 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [59:19, 08:56] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [52:22, 00:57](1054 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [52:21, 01:55](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [52:21, 03:27](886 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [52:21, 02:38](953 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [52:22, 01:56](939 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [52:21, 03:16](881 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [16:09, 02:30](797 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [17:24, 01:14](769 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [02:18, 11:59] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [48:20, 01:17](1094 MB) -PASS -- TEST 'conus13km_2threads_intel' [16:43, 00:47](1081 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [16:42, 00:37](976 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [57:12, 09:04] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [51:00, 00:46](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [51:08, 04:03] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [56:16, 00:56](1075 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [56:16, 00:50](1071 MB) -PASS -- TEST 'conus13km_debug_intel' [56:16, 00:29](1163 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [56:16, 00:47](855 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [56:17, 01:15](1147 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [56:16, 00:43](1251 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [51:08, 03:44] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [56:16, 00:48](1096 MB) - -PASS -- COMPILE 'hafsw_intel' [57:12, 10:33] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:13, 01:55](706 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:13, 00:58](1055 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:11, 01:21](760 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [49:11, 01:54](791 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [49:12, 01:35](813 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [49:11, 00:52](480 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [49:12, 01:31](502 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [49:12, 01:05](388 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [49:15, 02:34](448 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [49:11, 01:37](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [49:11, 01:21](514 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [49:13, 01:39](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [49:12, 00:51](417 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [50:05, 04:10] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [56:18, 01:11](689 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [57:13, 13:46] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [44:06, 01:22](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [43:36, 01:08](802 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [29:44, 10:18] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [50:09, 01:07](795 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:23, 09:34] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:16, 01:40](755 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [39:47, 01:37](740 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:43, 00:15](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:24, 09:36] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [35:22, 00:34](771 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [13:40, 00:21](744 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [35:24, 00:13](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [33:52, 01:10](649 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [33:47, 00:17](650 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [32:13, 00:32](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [31:43, 00:41](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [30:16, 01:12](651 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [29:42, 01:20](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [28:37, 01:19](670 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [27:37, 00:37](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [27:02, 00:37](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [24:34, 00:39](2036 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:04, 00:54](771 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:14, 01:05] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [54:01, 00:42](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [54:01, 00:14](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [50:29, 00:41](450 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:42, 09:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [23:43, 01:39](1925 MB) - -PASS -- COMPILE 'atml_intel' [49:03, 10:49] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [03:18, 02:11](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [03:18, 02:06](1896 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [54:53, 00:53](1044 MB) - -PASS -- COMPILE 'atml_debug_intel' [41:57, 04:37] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:03, 02:01](1938 MB) - -PASS -- COMPILE 'atmw_intel' [46:00, 09:26] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:05, 02:33](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [44:59, 09:18] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:10, 01:49](3132 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [04:10, 02:11](3016 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [04:10, 02:09](3025 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [38:54, 03:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [09:29, 01:54](4564 MB) +PASS -- TEST 'control_wam_intel' [31:30, 00:19](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:27, 12:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:22, 02:11](1866 MB) +PASS -- TEST 'regional_control_faster_intel' [03:08, 00:49](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [33:47, 05:42] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [01:59, 00:34](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [01:37, 01:24](1618 MB) +PASS -- TEST 'control_stochy_debug_intel' [01:28, 01:02](815 MB) +PASS -- TEST 'control_lndp_debug_intel' [01:28, 00:18](812 MB) +PASS -- TEST 'control_csawmg_debug_intel' [01:06, 00:30](1124 MB) +PASS -- TEST 'control_ras_debug_intel' [00:43, 01:14](828 MB) +PASS -- TEST 'control_diag_debug_intel' [00:26, 01:02](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [00:13, 01:00](1910 MB) +PASS -- TEST 'regional_debug_intel' [00:03, 00:50](933 MB) +PASS -- TEST 'rap_control_debug_intel' [59:57, 00:34](1197 MB) +PASS -- TEST 'hrrr_control_debug_intel' [59:34, 00:43](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [57:50, 01:00](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [57:58, 01:07](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [57:21, 00:17](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [57:06, 01:09](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [57:00, 00:54](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [56:59, 01:09](1201 MB) +PASS -- TEST 'rap_lndp_debug_intel' [55:58, 01:10](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [55:53, 00:22](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [55:35, 00:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [55:17, 00:37](1193 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [55:12, 00:23](1195 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [54:20, 01:00](1190 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [54:29, 00:50](1199 MB) +PASS -- TEST 'rap_flake_debug_intel' [54:14, 00:53](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [53:59, 03:04](1199 MB) + +PASS -- COMPILE 'wam_debug_intel' [50:05, 03:49] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [45:41, 00:55](1706 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [56:14, 09:00] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 00:53](1055 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [39:31, 02:06](888 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:31, 04:15](888 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [39:31, 02:15](951 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:32, 02:44](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [39:31, 03:44](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [19:41, 02:41](796 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:22, 00:15](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [58:16, 11:55] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [37:29, 00:40](1094 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:40, 00:39](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:39, 01:14](978 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 09:04] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:19, 01:29](909 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [47:01, 03:53] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:28, 00:46](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:28, 00:55](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [44:28, 00:25](1168 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [44:28, 01:01](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [44:29, 00:57](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:28, 00:39](1251 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [47:03, 03:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [44:26, 00:39](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [54:10, 10:23] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [37:10, 01:30](706 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [37:10, 00:27](1055 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [37:08, 01:24](763 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [37:08, 01:48](798 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:09, 01:53](955 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [37:08, 00:56](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [37:09, 01:41](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [37:09, 01:19](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [37:12, 03:01](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [37:08, 01:14](514 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [37:08, 01:27](515 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [37:09, 00:48](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [37:08, 01:20](415 MB) +PASS -- TEST 'gnv1_nested_intel' [37:07, 03:37](1712 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [47:05, 04:15] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [43:25, 00:44](685 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [53:11, 13:45] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:19, 01:34](625 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:19, 01:47](798 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [25:40, 10:13] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:20, 01:40](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:23, 09:49] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [30:46, 01:53](758 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:15, 01:57](743 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [29:09, 00:44](896 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:23, 09:17] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [27:02, 00:50](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [19:35, 00:34](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [25:18, 00:45](652 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [24:52, 00:55](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [24:02, 00:52](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:15, 00:42](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [22:07, 01:02](756 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [22:02, 00:50](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:33, 01:52](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [18:53, 01:13](680 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [18:07, 00:28](767 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [17:30, 00:25](2037 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [17:25, 00:58](2034 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:24, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [16:46, 00:47](768 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:22, 01:05] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [16:39, 01:14](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:52, 00:38](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [11:19, 01:10](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:29, 09:43] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:43, 01:02](1930 MB) + +PASS -- COMPILE 'atml_intel' [16:30, 10:38] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [14:44, 02:25](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:34, 02:16](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:05, 01:14](1047 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:23, 04:33] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [13:39, 02:08](1934 MB) + +PASS -- COMPILE 'atmw_intel' [15:29, 09:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [13:07, 02:40](1905 MB) + +PASS -- COMPILE 'atmaero_intel' [39:55, 09:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [56:22, 01:51](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [56:22, 02:01](3015 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [56:22, 02:10](3025 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [33:47, 03:52] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [01:30, 01:45](4543 MB) SYNOPSIS: -Starting Date/Time: 20240731 13:51:30 -Ending Date/Time: 20240731 16:18:19 -Total Time: 02h:27m:14s +Starting Date/Time: 20240805 16:07:25 +Ending Date/Time: 20240805 18:26:20 +Total Time: 02h:19m:22s Compiles Completed: 38/38 -Tests Completed: 177/179 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_acorn/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ACORN REGRESSION TESTING LOG==== -====START OF ACORN REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1769361 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [04:16, 03:51] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [03:14, 00:46](1702 MB) - -PASS -- COMPILE 'hafsw_intel' [11:24, 10:36] ( 2 warnings 8 remarks ) -PASS -- TEST 'gnv1_nested_intel' [56:06, 03:33](1710 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:52:30 -Ending Date/Time: 20240731 17:15:35 -Total Time: 00h:23m:11s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 179/179 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index e49fb23fde..338b1c2749 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,13 +1,13 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,289 +36,288 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_118977 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117686 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [49:21, 21:52] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:32, 05:56](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [52:23, 24:30] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:21, 14:33](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:44, 16:01](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:32, 08:06](1081 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:03, 16:33](1889 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [51:23, 23:59] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:17, 14:22](1911 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [39:20, 12:21] ( 1530 warnings 1948 remarks ) - -PASS -- COMPILE 's2swa_intel' [49:30, 21:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:11, 08:17](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:38, 07:40](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:23, 04:07](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:51, 07:41](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:54, 04:00](3188 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:23, 06:32](3726 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:11, 07:49](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:13, 05:32](3536 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:36, 07:53](3236 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:29, 11:52](3812 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:53, 06:43](3626 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [33:46, 12:50](4522 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [38:01, 07:21](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:10, 05:57](3210 MB) - -PASS -- COMPILE 's2sw_intel' [47:29, 20:30] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:44, 04:54](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:54, 05:08](1992 MB) - -PASS -- COMPILE 's2swa_debug_intel' [39:26, 12:06] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:18, 08:22](3300 MB) - -PASS -- COMPILE 's2sw_debug_intel' [38:28, 11:28] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:55](1964 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [43:26, 16:06] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:03, 04:50](1991 MB) - -PASS -- COMPILE 's2s_intel' [44:22, 16:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:11, 06:51](2953 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:09, 02:32](2951 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:07, 01:44](2370 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:15, 26:13] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:19, 06:26](3231 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:21, 22:29] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:37, 14:53](1943 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [22:42, 09:03](1118 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:02, 16:58](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:13, 11:15] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:40, 23:47](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:14, 15:30] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:40, 03:29](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:23, 02:37](1569 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:37, 02:35](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:23, 02:30](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:26, 02:31](1574 MB) -PASS -- TEST 'control_c48_intel' [34:17, 06:09](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [33:36, 05:26](734 MB) -PASS -- TEST 'control_c192_intel' [12:11, 09:08](1695 MB) -PASS -- TEST 'control_c384_intel' [19:09, 09:07](2016 MB) -PASS -- TEST 'control_c384gdas_intel' [17:13, 07:34](1200 MB) -PASS -- TEST 'control_stochy_intel' [03:40, 01:29](626 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 01:06](439 MB) -PASS -- TEST 'control_lndp_intel' [03:42, 01:27](624 MB) -PASS -- TEST 'control_iovr4_intel' [03:51, 02:10](624 MB) -PASS -- TEST 'control_iovr5_intel' [03:45, 02:12](622 MB) -PASS -- TEST 'control_p8_intel' [05:37, 03:23](1873 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:36, 03:15](1861 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:19](1866 MB) -PASS -- TEST 'control_restart_p8_intel' [05:24, 02:11](1017 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:00, 03:12](1864 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:41, 02:03](1019 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:00, 03:22](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:02](1955 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:56, 05:05](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:11, 04:05](1925 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:24, 03:22](1877 MB) -PASS -- TEST 'merra2_thompson_intel' [07:01, 03:41](1869 MB) -PASS -- TEST 'regional_control_intel' [08:17, 05:13](875 MB) -PASS -- TEST 'regional_restart_intel' [04:59, 03:15](872 MB) -PASS -- TEST 'regional_decomp_intel' [08:06, 05:35](876 MB) -PASS -- TEST 'regional_noquilt_intel' [07:03, 05:08](1197 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 05:03](880 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:06](873 MB) -PASS -- TEST 'regional_wofs_intel' [08:51, 05:57](1607 MB) - -PASS -- COMPILE 'rrfs_intel' [15:19, 13:19] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:35, 06:47](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:08, 04:12](1191 MB) -PASS -- TEST 'rap_decomp_intel' [09:35, 07:00](1005 MB) -PASS -- TEST 'rap_2threads_intel' [09:34, 06:20](1096 MB) -PASS -- TEST 'rap_restart_intel' [05:16, 03:15](879 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:36, 06:50](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:36, 07:05](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:16, 04:54](879 MB) -PASS -- TEST 'hrrr_control_intel' [07:13, 03:41](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:13, 03:28](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:42, 02:57](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:48, 01:48](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:43, 06:42](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:15, 08:02](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:14, 07:50](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [14:13, 11:30] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:08, 06:48](962 MB) -PASS -- TEST 'control_ras_intel' [08:41, 02:56](655 MB) - -PASS -- COMPILE 'wam_intel' [12:19, 11:01] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [32:06, 11:11](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:21, 17:17] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:43, 03:05](1872 MB) -PASS -- TEST 'regional_control_faster_intel' [07:02, 04:59](879 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:20, 12:51] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [08:17, 02:40](1613 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [21:44, 02:33](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [09:35, 02:53](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [22:37, 02:45](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:57, 04:49](1124 MB) -PASS -- TEST 'control_ras_debug_intel' [21:03, 02:48](818 MB) -PASS -- TEST 'control_diag_debug_intel' [22:46, 02:43](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [21:34, 03:25](1906 MB) -PASS -- TEST 'regional_debug_intel' [21:54, 16:56](929 MB) -PASS -- TEST 'rap_control_debug_intel' [23:13, 05:01](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [23:11, 05:03](1188 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [21:11, 04:38](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [21:09, 04:41](1192 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [20:00, 04:51](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [20:46, 05:05](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [19:05, 04:48](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:02, 05:01](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [18:06, 04:58](1189 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [18:06, 05:07](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [16:18, 04:36](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [16:01, 05:01](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [19:04, 07:44](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [16:20, 04:46](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [16:06, 05:37](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [14:11, 04:42](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:38, 08:02](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:13, 07:01] ( 844 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:13, 11:19] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [28:36, 03:32](1055 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:25, 06:09](880 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:30, 02:52](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:07, 05:15](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:12, 03:16](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:24, 02:59](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:59, 04:01](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:40](771 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:00, 15:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [13:13, 01:52](1085 MB) -PASS -- TEST 'conus13km_2threads_intel' [09:11, 01:03](1082 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [47:10, 01:10](973 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [04:55, 11:23] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [15:53, 03:41](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [34:04, 07:18] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:29, 04:42](1068 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:49, 04:52](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [38:37, 14:01](1172 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:41, 13:40](840 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:20, 08:01](1151 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [37:21, 13:15](1220 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [35:02, 06:58] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [28:38, 04:49](1099 MB) - -PASS -- COMPILE 'hafsw_intel' [46:17, 18:38] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:44, 06:43](719 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:15, 05:45](1072 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [21:41, 09:14](774 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [24:59, 12:19](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:23, 13:32](811 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [14:13, 08:37](477 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:29, 10:30](493 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:30, 04:14](390 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [17:30, 09:50](457 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:20, 04:07](513 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:46, 04:16](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:43, 05:35](583 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:22](430 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [35:05, 08:30] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:23, 12:58](632 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:07, 27:22] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [12:33, 08:54](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:30, 09:43](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [42:14, 19:24] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:33, 07:03](677 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:05, 16:13] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:43, 09:56](754 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:56, 09:08](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [28:51, 19:38](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [30:13, 08:44] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [30:48, 03:06](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:30, 01:37](758 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [31:13, 02:56](648 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [29:50, 02:32](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [29:53, 02:45](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:53, 02:47](766 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [29:55, 02:39](766 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [29:50, 02:43](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [30:09, 06:05](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [31:13, 05:52](683 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [29:37, 02:43](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [31:40, 04:10](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [30:02, 04:28](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [29:28, 06:10] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [33:01, 05:21](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [27:22, 08:46] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [29:54, 02:41](755 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [32:22, 02:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:13, 01:24](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:47, 01:17](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:45, 01:03](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [43:27, 14:29] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:40, 05:02](1922 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [41:23, 12:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:57, 06:02](1900 MB) - -PASS -- COMPILE 'atml_intel' [43:19, 16:01] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:53, 09:01](1890 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:50, 09:40](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:20, 05:22](1039 MB) - -PASS -- COMPILE 'atml_debug_intel' [37:24, 10:05] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:51, 07:08](1938 MB) - -PASS -- COMPILE 'atmw_intel' [41:26, 14:23] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:28, 03:25](1891 MB) - -PASS -- COMPILE 'atmaero_intel' [32:25, 12:51] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:56, 06:39](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:26, 06:41](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:17, 06:47](3007 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [25:23, 08:28] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [26:46, 22:51](4516 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:01] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:22, 07:10](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:18, 23:41] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:53, 15:05](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:56](1948 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:33, 07:51](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:40, 16:54](1890 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:18, 23:07] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:07, 14:25](1916 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:15, 11:12] ( 1530 warnings 1948 remarks ) +FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) + +PASS -- COMPILE 's2swa_intel' [22:16, 20:59] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:24, 08:22](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:37, 08:14](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:34, 04:05](3158 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:24, 07:52](3254 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:48](3188 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 08:05](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:08, 07:10](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:48](3540 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:41, 07:53](3234 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:54, 11:38](3811 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:30, 06:16](3628 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:20, 12:01](4525 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:36, 07:32](4671 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 07:54](3209 MB) + +PASS -- COMPILE 's2sw_intel' [20:15, 19:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:01](1924 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:04](1991 MB) + +PASS -- COMPILE 's2swa_debug_intel' [12:13, 11:09] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:54, 08:12](3295 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:15, 10:31] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 06:28](1960 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:16, 15:18] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:28](1991 MB) + +PASS -- COMPILE 's2s_intel' [16:14, 15:27] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:36](2949 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 02:21](2948 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:47](2365 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:40] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:22, 06:25](3233 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:21, 21:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 15:38](1946 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 08:07](1109 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:10](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:38] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 24:03](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:19, 15:37] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:39, 03:37](673 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:35](1573 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:26](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:04, 02:24](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 02:25](1568 MB) +PASS -- TEST 'control_c48_intel' [08:18, 06:02](1620 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 05:16](735 MB) +PASS -- TEST 'control_c192_intel' [11:45, 09:08](1688 MB) +PASS -- TEST 'control_c384_intel' [15:37, 09:08](2011 MB) +PASS -- TEST 'control_c384gdas_intel' [15:56, 07:36](1195 MB) +PASS -- TEST 'control_stochy_intel' [02:39, 01:24](628 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:51](436 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:19](627 MB) +PASS -- TEST 'control_iovr4_intel' [03:49, 02:04](625 MB) +PASS -- TEST 'control_iovr5_intel' [03:47, 02:07](619 MB) +PASS -- TEST 'control_p8_intel' [06:29, 03:51](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:32](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:37](1864 MB) +PASS -- TEST 'control_restart_p8_intel' [04:15, 02:05](1015 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:37, 03:29](1861 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:11](1012 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:43](1864 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:36, 03:36](1951 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:26, 05:09](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:16](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:24](1876 MB) +PASS -- TEST 'merra2_thompson_intel' [06:23, 03:44](1868 MB) +PASS -- TEST 'regional_control_intel' [06:53, 05:17](872 MB) +PASS -- TEST 'regional_restart_intel' [04:58, 03:01](872 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 05:24](871 MB) +PASS -- TEST 'regional_noquilt_intel' [06:55, 05:09](1192 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:03](872 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 05:08](881 MB) +PASS -- TEST 'regional_wofs_intel' [06:53, 05:40](1607 MB) + +PASS -- COMPILE 'rrfs_intel' [14:19, 12:52] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:32, 06:16](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:48, 03:53](1197 MB) +PASS -- TEST 'rap_decomp_intel' [08:32, 06:34](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:32, 05:49](1099 MB) +PASS -- TEST 'rap_restart_intel' [05:08, 03:13](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:33, 06:17](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:35](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:09, 04:37](882 MB) +PASS -- TEST 'hrrr_control_intel' [05:15, 03:23](998 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:15, 03:17](1004 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 03:02](1088 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:47, 01:46](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:11](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:31](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 07:04](1949 MB) + +PASS -- COMPILE 'csawmg_intel' [12:19, 11:07] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [08:03, 06:36](965 MB) +PASS -- TEST 'control_ras_intel' [04:39, 03:05](659 MB) + +PASS -- COMPILE 'wam_intel' [11:18, 10:36] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:38, 11:36](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:19, 17:02] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:44, 03:17](1870 MB) +PASS -- TEST 'regional_control_faster_intel' [06:56, 04:46](879 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:12] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:07, 02:32](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:03, 02:31](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:37, 02:50](812 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:38](808 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:56, 04:45](1123 MB) +PASS -- TEST 'control_ras_debug_intel' [04:31, 02:36](817 MB) +PASS -- TEST 'control_diag_debug_intel' [05:06, 02:33](1671 MB) +PASS -- TEST 'control_debug_p8_intel' [06:05, 03:51](1903 MB) +PASS -- TEST 'regional_debug_intel' [18:57, 17:18](927 MB) +PASS -- TEST 'rap_control_debug_intel' [06:31, 04:40](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:42](1189 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:38](1196 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:06](1194 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:18, 05:03](1273 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:54](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:50](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:49](1193 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 04:42](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:38](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 04:54](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 07:56](1189 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:33](1189 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:26](1193 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:01](1192 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:02](1198 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:12, 06:43] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:22, 12:15](1699 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:51] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 04:03](1057 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:17](879 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:43](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 05:21](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:00](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 03:02](880 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:16](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:34, 01:32](774 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:19, 14:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 02:03](1084 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:56](1083 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:06](972 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 10:52] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:01, 03:53](910 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:42] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 04:27](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:25](1067 MB) +PASS -- TEST 'conus13km_debug_intel' [15:59, 13:47](1150 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:25](834 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 07:53](1150 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:35, 13:35](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:17, 06:28] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:38](1094 MB) + +PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:31](715 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:04](1069 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:25](777 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:20](799 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:00, 12:27](807 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:38](476 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 05:42](492 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:03, 02:15](391 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:51, 06:09](461 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:58, 03:17](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:25, 03:48](589 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](429 MB) +PASS -- TEST 'gnv1_nested_intel' [07:35, 04:02](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:17, 07:44] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:05](636 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:23, 26:15] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:27, 07:22](632 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:34](686 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 19:19] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:40](682 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:19, 15:25] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:02](750 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 06:02](741 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:52](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:32](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:19](649 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 02:23](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:27](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:42](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:35, 02:43](768 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:31](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:21, 05:46](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:44](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:34, 03:52](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:52](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 05:56] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:28](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:03](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:44](453 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:01] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 03:54](1916 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:40] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:32, 04:13](1899 MB) + +PASS -- COMPILE 'atml_intel' [15:21, 14:46] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:36, 06:45](1887 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 06:20](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:24, 03:38](1018 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:19, 09:25] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:13, 06:09](1936 MB) + +PASS -- COMPILE 'atmw_intel' [14:21, 13:42] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:07](1890 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:11] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:32](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:25](2993 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:17, 07:29] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:32, 21:59](4530 MB) SYNOPSIS: -Starting Date/Time: 20240731 08:43:44 -Ending Date/Time: 20240731 20:26:26 -Total Time: 11h:43m:35s +Starting Date/Time: 20240805 06:52:14 +Ending Date/Time: 20240805 08:28:48 +Total Time: 01h:37m:26s Compiles Completed: 41/41 -Tests Completed: 181/183 +Tests Completed: 183/184 Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2373/tests/logs/log_derecho/run_gnv1_nested_intel.log +* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON +-- LOG: /glade/work/zshrader/rt-2370/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -331,13 +330,13 @@ Result: FAILURE ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -351,11 +350,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -366,25 +365,22 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_30140 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6646 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:23] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:52, 12:24](1698 MB) - -PASS -- COMPILE 'hafsw_intel' [18:14, 17:33] ( 6 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [07:19, 04:04](1712 MB) +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [55:26, 11:41] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 22:28](1944 MB) SYNOPSIS: -Starting Date/Time: 20240801 06:59:02 -Ending Date/Time: 20240801 07:26:00 -Total Time: 00h:27m:11s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240805 12:17:56 +Ending Date/Time: 20240805 13:42:51 +Total Time: 01h:25m:29s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index 67bdbf63d9..d1fb44cf8b 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,13 +1,13 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,357 +36,286 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_40274 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_84360 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 19:00] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:27, 08:10](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:12, 25:34] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:32, 13:56](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:35, 15:40](1952 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:27, 07:32](1077 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:26, 15:03](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:12, 22:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:47, 13:41](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:15, 13:15] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 24:16](1936 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 18:18] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:18, 08:07](3229 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:24, 08:00](3229 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:32, 05:03](3159 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:26, 08:50](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:42, 05:17](3182 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:24, 06:58](3465 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 08:42](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:12, 08:18](3170 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:34, 08:23](3227 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [20:32, 10:28](3448 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:28, 07:17](3614 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [26:01, 13:01](4213 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:02, 09:01](4369 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:14, 08:39](3221 MB) - -PASS -- COMPILE 's2sw_intel' [19:11, 18:11] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:24, 05:17](1938 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:34, 05:49](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [13:11, 12:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:46, 09:53](3276 MB) - -PASS -- COMPILE 's2sw_debug_intel' [13:11, 12:40] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:47, 05:58](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 16:04] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:33, 05:03](1989 MB) - -PASS -- COMPILE 's2s_intel' [17:11, 16:07] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:23, 06:29](2929 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:32, 01:56](2938 MB) -PASS -- TEST 'cpld_restart_c48_intel' [08:21, 01:08](2351 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:15, 28:13] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:45, 08:39](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:15, 23:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:57, 15:04](1937 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 07:46](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:20, 17:29](1912 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [15:20, 15:09] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:19, 26:49](1957 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:38] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:41, 03:54](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:45, 04:04](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:26, 03:32](1567 MB) -PASS -- TEST 'control_latlon_intel' [05:21, 03:28](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:35, 03:28](1569 MB) -PASS -- TEST 'control_c48_intel' [08:38, 06:30](1601 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:10, 05:49](720 MB) -PASS -- TEST 'control_c192_intel' [12:51, 10:29](1683 MB) -PASS -- TEST 'control_c384_intel' [20:40, 18:44](1985 MB) -PASS -- TEST 'control_c384gdas_intel' [17:42, 14:56](1178 MB) -PASS -- TEST 'control_stochy_intel' [02:40, 02:07](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:12](425 MB) -PASS -- TEST 'control_lndp_intel' [02:40, 01:55](623 MB) -PASS -- TEST 'control_iovr4_intel' [03:46, 02:48](620 MB) -PASS -- TEST 'control_iovr5_intel' [03:46, 02:42](620 MB) -PASS -- TEST 'control_p8_intel' [05:51, 03:44](1868 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:09, 04:15](1867 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:46, 03:38](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [03:05, 01:51](1013 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:51, 03:44](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:05, 01:42](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:48, 04:12](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:58, 02:48](1947 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:46, 05:31](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:08, 04:11](1921 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:10, 03:31](1866 MB) -PASS -- TEST 'merra2_thompson_intel' [05:08, 03:44](1865 MB) -PASS -- TEST 'regional_control_intel' [05:41, 04:51](848 MB) -PASS -- TEST 'regional_restart_intel' [05:00, 02:52](860 MB) -PASS -- TEST 'regional_decomp_intel' [05:39, 05:01](867 MB) -PASS -- TEST 'regional_2threads_intel' [03:46, 03:00](998 MB) -PASS -- TEST 'regional_noquilt_intel' [05:45, 04:41](1182 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:16, 05:06](857 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 04:51](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:44, 06:08](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [15:11, 14:19] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:01, 06:56](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:58, 04:04](1187 MB) -PASS -- TEST 'rap_decomp_intel' [07:55, 07:06](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:54, 06:16](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:58, 03:45](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:58, 07:00](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:58, 07:08](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:07, 05:12](878 MB) -PASS -- TEST 'hrrr_control_intel' [05:05, 04:06](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:51, 03:51](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:51, 03:23](1083 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:34, 01:58](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:00, 06:35](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:37, 08:22](1961 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:40, 07:50](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [16:13, 15:48] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:47](966 MB) -PASS -- TEST 'control_ras_intel' [04:28, 03:25](659 MB) - -PASS -- COMPILE 'wam_intel' [14:13, 13:56] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:37, 11:29](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:13, 20:32] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:35, 03:21](1867 MB) -PASS -- TEST 'regional_control_faster_intel' [05:57, 04:39](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:12, 15:07] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:53, 02:59](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:54, 02:51](1598 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:30, 03:09](801 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:53](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:18](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [03:33, 02:55](805 MB) -PASS -- TEST 'control_diag_debug_intel' [04:44, 03:00](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 03:16](1894 MB) -PASS -- TEST 'regional_debug_intel' [17:43, 16:17](902 MB) -PASS -- TEST 'rap_control_debug_intel' [06:37, 05:09](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:10, 04:58](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:31, 05:10](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:31, 05:14](1180 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:01](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:38, 05:29](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:16](1183 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:14](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:32, 05:09](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:29, 05:19](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:24](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:37, 05:12](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:44, 08:15](1180 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:44, 05:28](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [10:32, 06:37](1187 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:31, 05:32](1182 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:58, 08:50](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [11:14, 11:03] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 13:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:06, 04:04](1049 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:49, 05:58](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:58, 03:39](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:59, 05:27](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:24, 02:51](937 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:55, 03:53](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:53, 04:09](782 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:43](766 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [19:14, 19:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:25, 02:25](1096 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:02, 01:08](1079 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:27, 01:20](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:59, 04:24](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:15, 09:44] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:30, 04:54](1060 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:25, 05:01](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:24, 14:20](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:16, 14:37](817 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:09, 08:16](1129 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:10, 14:17](1210 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:14, 08:13] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:27, 04:58](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [18:11, 18:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:32, 05:18](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:41, 04:34](1057 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:32, 07:42](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:18, 11:50](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:58, 13:09](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:14, 05:27](481 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:34, 06:56](499 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:20, 02:56](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:48, 08:00](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:52, 03:54](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 04:07](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:03, 05:11](572 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:43, 02:39](403 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:11, 10:35] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:01, 13:04](598 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 08:20](616 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:28, 08:26](785 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:14, 17:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:18, 06:30](782 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:14, 16:17] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:27](733 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:29](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:46, 20:05](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:11, 14:29] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:29, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:27, 01:34](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:26, 02:27](638 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:32, 02:28](638 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:31, 02:29](638 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:30, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:23, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:27, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:06, 06:03](692 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:57, 05:57](674 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:25, 02:37](749 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:39](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:26, 04:40](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 08:52] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:33, 05:27](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:17, 12:37] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:25, 02:37](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:17] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:57, 01:46](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:51, 01:16](457 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:59](457 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:15, 14:23] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 04:06](1922 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:37] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 04:03](1910 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 16:24] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:32, 08:13](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:30, 08:39](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:45, 04:59](1042 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:14, 12:42] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:29, 06:21](1929 MB) - -PASS -- COMPILE 'atmw_intel' [15:13, 14:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:46, 02:48](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [14:13, 13:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:13, 06:34](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:16, 07:08](3006 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:06, 07:22](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:12, 09:31] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:38, 18:14](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:13, 16:56] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:36, 07:11](3201 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [46:50, 14:11](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 15:26](1952 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:30, 07:33](1079 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:34, 15:02](1896 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 23:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [50:01, 13:27](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 11:34] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:34, 24:13](1937 MB) + +PASS -- COMPILE 's2swa_intel' [18:13, 17:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:26, 07:57](3230 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:26, 07:50](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [31:53, 05:32](3159 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:23, 07:56](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:29, 05:21](3181 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:00, 06:30](3461 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [38:13, 07:45](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [38:13, 07:01](3171 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:32, 07:59](3229 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [43:21, 10:16](3447 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:25, 07:44](3609 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [47:39, 12:43](4213 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 09:49](4366 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [36:10, 07:42](3222 MB) + +PASS -- COMPILE 's2sw_intel' [16:13, 15:49] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 05:11](1937 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:49, 05:12](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:12, 11:07] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:54](3277 MB) + +PASS -- COMPILE 's2sw_debug_intel' [11:12, 10:51] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:58](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:13, 14:29] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:39, 05:19](1989 MB) + +PASS -- COMPILE 's2s_intel' [15:13, 14:10] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:16, 06:32](2929 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:14, 01:59](2938 MB) +PASS -- TEST 'cpld_restart_c48_intel' [38:37, 01:08](2349 MB) + +PASS -- COMPILE 's2swa_faster_intel' [26:13, 25:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [40:45, 07:49](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:04, 15:31](1936 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:48](1096 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:52](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 13:09] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:30, 26:57](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 14:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [40:37, 03:46](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:57, 03:00](1567 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:32, 03:16](1576 MB) +PASS -- TEST 'control_latlon_intel' [20:43, 03:12](1569 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:21, 03:23](1569 MB) +PASS -- TEST 'control_c48_intel' [23:00, 06:34](1600 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [20:54, 05:40](719 MB) +PASS -- TEST 'control_c192_intel' [19:47, 10:03](1682 MB) +PASS -- TEST 'control_c384_intel' [26:18, 18:21](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [22:10, 14:22](1179 MB) +PASS -- TEST 'control_stochy_intel' [08:31, 01:55](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:03](426 MB) +PASS -- TEST 'control_lndp_intel' [08:31, 01:42](622 MB) +PASS -- TEST 'control_iovr4_intel' [08:28, 02:37](620 MB) +PASS -- TEST 'control_iovr5_intel' [08:31, 02:39](620 MB) +PASS -- TEST 'control_p8_intel' [09:08, 03:17](1867 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:09, 03:21](1868 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 03:16](1869 MB) +PASS -- TEST 'control_restart_p8_intel' [04:17, 02:10](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:04, 03:15](1862 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:41](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:19](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:21, 02:49](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:20, 05:12](1867 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:13](1920 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:22](1865 MB) +PASS -- TEST 'merra2_thompson_intel' [06:37, 03:36](1866 MB) +PASS -- TEST 'regional_control_intel' [06:47, 04:50](858 MB) +PASS -- TEST 'regional_restart_intel' [04:42, 03:00](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:46, 05:00](860 MB) +PASS -- TEST 'regional_2threads_intel' [03:43, 03:02](999 MB) +PASS -- TEST 'regional_noquilt_intel' [05:43, 04:35](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:43](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 04:46](858 MB) +PASS -- TEST 'regional_wofs_intel' [07:38, 06:11](1588 MB) + +PASS -- COMPILE 'rrfs_intel' [14:12, 13:22] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [47:55, 06:59](1009 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [43:20, 04:05](1179 MB) +PASS -- TEST 'rap_decomp_intel' [47:54, 07:11](1007 MB) +PASS -- TEST 'rap_2threads_intel' [47:54, 06:02](1100 MB) +PASS -- TEST 'rap_restart_intel' [05:51, 03:26](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [47:53, 06:49](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [47:54, 07:13](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:05](877 MB) +PASS -- TEST 'hrrr_control_intel' [44:22, 03:56](1000 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [43:29, 03:51](1003 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [43:29, 03:07](1082 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:10, 02:10](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [47:58, 06:45](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [48:02, 08:20](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 08:01](1950 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:58] +PASS -- TEST 'control_csawmg_intel' [07:43, 06:39](966 MB) +PASS -- TEST 'control_ras_intel' [04:30, 03:35](659 MB) + +PASS -- COMPILE 'wam_intel' [13:13, 12:48] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:26, 12:36](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 19:29] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:16, 03:33](1867 MB) +PASS -- TEST 'regional_control_faster_intel' [07:50, 05:14](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:45] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:06, 04:04](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:51](1593 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:45](799 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:36](796 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 05:07](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 03:25](805 MB) +PASS -- TEST 'control_diag_debug_intel' [05:43, 03:55](1663 MB) +PASS -- TEST 'control_debug_p8_intel' [05:42, 03:59](1894 MB) +PASS -- TEST 'regional_debug_intel' [18:55, 16:38](893 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 05:23](1182 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:55, 04:59](1176 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:44, 05:16](1180 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:04](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 05:20](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:16](1264 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:10](1184 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:16](1185 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:30, 05:06](1184 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:17](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:31, 05:04](1179 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 05:13](1181 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:18](1179 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:05](1175 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:57](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:19](1184 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:26](1184 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:12, 08:04] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:29, 13:49](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:55](1052 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:45](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:20](883 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:14, 05:09](945 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 02:49](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:40](883 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 04:27](784 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:13](766 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 16:16] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:13, 02:32](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:16, 01:15](1078 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:20, 01:45](979 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:33](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 08:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:29](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:22](1059 MB) +PASS -- TEST 'conus13km_debug_intel' [16:21, 14:40](1139 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 15:19](819 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:13, 09:14](1127 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:59](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:28] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 05:39](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [17:12, 15:21] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:49, 06:05](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:20](1056 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:46](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 11:56](786 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:49, 12:52](802 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:31, 05:31](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:04, 06:58](494 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:57](376 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:19](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:56](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:48](512 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:42, 04:50](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:45, 01:43](403 MB) +PASS -- TEST 'gnv1_nested_intel' [09:18, 06:15](1717 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [12:11, 10:12] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:13](600 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:15, 07:49](612 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:27, 07:56](783 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:28] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:41, 06:11](781 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:12, 14:51] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:16](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:19](727 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:06](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:39](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:35](740 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 02:32](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:41](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:41](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:43](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:42](643 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 06:32](691 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:37, 02:34](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:41](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:29] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:26](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:54] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:34](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:23] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:59, 01:48](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:58, 01:24](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:59](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:56] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:14](1923 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:08](1912 MB) + +PASS -- COMPILE 'atml_intel' [15:12, 14:46] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:09](1895 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:43, 08:28](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 03:50](1043 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:12, 09:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:05, 06:19](1929 MB) + +PASS -- COMPILE 'atmw_intel' [15:15, 13:04] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:38](1898 MB) + +PASS -- COMPILE 'atmaero_intel' [13:14, 12:36] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:49, 06:16](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:25, 06:59](3005 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:14, 08:59] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:47, 18:12](4484 MB) SYNOPSIS: -Starting Date/Time: 20240730 19:35:54 -Ending Date/Time: 20240730 21:08:49 -Total Time: 01h:33m:52s +Starting Date/Time: 20240804 20:14:23 +Ending Date/Time: 20240804 22:26:43 +Total Time: 02h:13m:20s Compiles Completed: 41/41 -Tests Completed: 183/185 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2373/ufs-weather-model/tests/logs/log_gaea/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_179250 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [10:11, 09:39] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:17, 13:48](1687 MB) - -PASS -- COMPILE 'hafsw_intel' [17:15, 16:25] ( 1 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [09:05, 05:40](1717 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 13:43:20 -Ending Date/Time: 20240731 14:11:13 -Total Time: 00h:28m:13s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 185/185 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index f3c2f5166e..ea1be17918 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -25,382 +25,380 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2625282 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:14, 13:47] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:23, 05:49](3317 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:15, 16:30] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 17:19](1980 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:30, 19:00](2136 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:15, 08:26](1265 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:07, 19:24](1871 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:46, 16:58](1975 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 05:17] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:21, 22:42](1942 MB) - -PASS -- COMPILE 's2swa_intel' [14:13, 13:47] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:17, 05:59](3331 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:37, 05:54](3358 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:33, 03:40](3268 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:17, 05:56](3378 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:33, 03:59](3272 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:12, 05:36](3637 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:13, 06:00](3346 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:20, 04:58](3223 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:31, 06:44](3327 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:31, 10:26](3534 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:11, 06:26](3633 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:28, 09:37](4284 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:47, 06:21](4395 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:19, 05:31](3311 MB) - -PASS -- COMPILE 's2sw_intel' [13:13, 13:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:00, 04:54](1987 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:07, 04:31](2039 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 05:23] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:26, 08:38](3366 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:21] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:14, 06:00](2027 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:13, 11:58] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 04:21](2048 MB) - -PASS -- COMPILE 's2s_intel' [12:13, 12:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:49, 08:56](3115 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 02:43](3087 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:47, 01:35](2550 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:40] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:25, 05:32](3329 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 15:59] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:12, 17:42](2028 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:18, 08:19](1281 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 19:57](1901 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:17] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:03, 25:22](1956 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:12, 11:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:30, 03:20](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:55](1599 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:00, 02:59](1612 MB) -PASS -- TEST 'control_latlon_intel' [03:48, 02:54](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:58, 03:01](1611 MB) -PASS -- TEST 'control_c48_intel' [08:54, 07:28](1760 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:25](870 MB) -PASS -- TEST 'control_c192_intel' [12:11, 10:44](1748 MB) -PASS -- TEST 'control_c384_intel' [13:23, 10:31](2013 MB) -PASS -- TEST 'control_c384gdas_intel' [11:25, 08:04](1405 MB) -PASS -- TEST 'control_stochy_intel' [02:26, 01:40](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:32, 01:00](506 MB) -PASS -- TEST 'control_lndp_intel' [02:26, 01:34](661 MB) -PASS -- TEST 'control_iovr4_intel' [03:29, 02:27](658 MB) -PASS -- TEST 'control_iovr5_intel' [03:29, 02:28](657 MB) -PASS -- TEST 'control_p8_intel' [04:58, 03:09](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:02, 03:07](1899 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:04](1900 MB) -PASS -- TEST 'control_restart_p8_intel' [02:49, 01:45](1139 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:58, 03:05](1887 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:59, 01:44](1167 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:52, 03:08](1896 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:53, 02:55](1984 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:21](1892 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:04, 04:26](1966 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:01, 03:10](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [04:58, 03:24](1902 MB) -PASS -- TEST 'regional_control_intel' [06:45, 05:23](1104 MB) -PASS -- TEST 'regional_restart_intel' [03:43, 02:58](1101 MB) -PASS -- TEST 'regional_decomp_intel' [06:44, 05:41](1103 MB) -PASS -- TEST 'regional_2threads_intel' [04:41, 03:31](1094 MB) -PASS -- TEST 'regional_noquilt_intel' [06:43, 05:18](1402 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:44, 05:15](1097 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:41, 05:18](1108 MB) -PASS -- TEST 'regional_wofs_intel' [07:37, 06:51](1911 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:12] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:43, 07:42](1108 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1306 MB) -PASS -- TEST 'rap_decomp_intel' [09:37, 08:08](1023 MB) -PASS -- TEST 'rap_2threads_intel' [08:35, 07:17](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:47, 04:02](1115 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:45, 07:42](1111 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 08:10](1045 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:57, 05:49](1136 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 04:04](1047 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:39, 04:07](1034 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:42, 03:40](1114 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:34, 02:10](1011 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:48, 07:38](1096 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:38, 09:19](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:29, 09:07](2058 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:35] -PASS -- TEST 'control_csawmg_intel' [06:38, 06:07](1025 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:14](750 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:12, 04:24] -PASS -- TEST 'control_csawmg_gnu' [09:42, 08:23](758 MB) - -PASS -- COMPILE 'wam_intel' [11:13, 10:44] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:08, 10:50](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:07, 02:47](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [05:43, 04:55](1107 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:12, 06:59] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:38](1630 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:38](1636 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:27, 03:11](834 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:44](836 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:40, 04:22](1148 MB) -PASS -- TEST 'control_ras_debug_intel' [03:25, 02:45](838 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:51](1696 MB) -PASS -- TEST 'control_debug_p8_intel' [03:43, 03:02](1923 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 18:08](1111 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:57](1221 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:55](1222 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:25, 04:52](1219 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 04:56](1222 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:23, 05:00](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:25](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:06](1217 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:25, 05:05](1226 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:27, 04:56](1226 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 04:57](1217 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:51](1215 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:26, 04:55](1225 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:08](1216 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 05:05](1219 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:29, 05:54](1229 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:26, 05:17](1217 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:45, 08:36](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 05:03] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:23](719 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:37] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:13, 10:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:16, 03:52](1168 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:41, 06:27](1045 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:45, 03:25](992 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 06:08](1094 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 03:10](962 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:36, 03:37](923 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:49, 04:53](1037 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 01:53](935 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:13, 13:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:04, 02:04](1207 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:51, 01:00](1127 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:53, 01:20](1117 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:13, 10:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:49, 04:11](988 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:29, 04:59](1099 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:57](1098 MB) -PASS -- TEST 'conus13km_debug_intel' [16:56, 15:29](1252 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:02](933 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:21](1171 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:46, 14:45](1323 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:12, 04:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:28, 05:07](1140 MB) - -PASS -- COMPILE 'hafsw_intel' [13:13, 12:38] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:23, 05:02](740 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:33, 06:06](1111 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:34, 07:00](843 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:27, 13:46](868 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:37, 15:26](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:38](504 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:48, 06:48](526 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:52, 02:43](379 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:59, 07:24](486 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:56, 03:44](532 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:01, 03:33](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:01, 04:06](596 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:32, 01:13](408 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:13, 04:41] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:13](597 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:14, 16:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:07, 08:46](672 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:15, 08:47](746 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:13, 12:35] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 06:31](737 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:13, 11:30] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:32, 06:31](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:23, 06:33](827 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:03, 16:06](1209 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:48] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:46](1163 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:24, 01:43](1129 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:34](1036 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:22, 02:39](1036 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:25, 02:39](1028 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:21, 02:40](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:21, 02:44](1164 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:21, 02:31](1030 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:04, 06:47](1066 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:50, 06:25](1047 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:48](1166 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:26, 03:55](2507 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:23, 03:57](2467 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:13, 03:20] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:25, 06:19](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:38] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:36](1174 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:36, 00:50](258 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 00:52](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:40](320 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:13, 11:31] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 03:53](1992 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:12, 11:14] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:26, 03:50](1960 MB) - -PASS -- COMPILE 'atml_intel' [13:14, 12:45] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:20, 04:28](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:18, 04:28](1855 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:00, 02:33](1105 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:12, 05:20] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:02, 05:50](1870 MB) - -PASS -- COMPILE 'atmw_intel' [12:14, 11:22] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:57, 01:49](1937 MB) - -PASS -- COMPILE 'atmaero_intel' [12:14, 11:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:08, 04:09](3197 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:05, 04:54](3105 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:51, 05:11](3106 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:12, 04:09] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:48] -PASS -- TEST 'control_c48_gnu' [12:47, 11:14](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:29, 03:24](502 MB) -PASS -- TEST 'control_ras_gnu' [06:26, 04:48](504 MB) -PASS -- TEST 'control_p8_gnu' [06:04, 04:50](1468 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:05, 04:46](1458 MB) -PASS -- TEST 'control_flake_gnu' [11:33, 10:21](544 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:12, 04:28] -PASS -- TEST 'rap_control_gnu' [12:40, 10:47](815 MB) -PASS -- TEST 'rap_decomp_gnu' [12:38, 11:00](849 MB) -PASS -- TEST 'rap_2threads_gnu' [11:46, 09:55](930 MB) -PASS -- TEST 'rap_restart_gnu' [07:52, 05:33](577 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [12:47, 10:54](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [12:42, 11:10](816 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:51, 07:59](583 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:33](814 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:44, 05:34](798 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:42, 05:06](926 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:50](850 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:36, 02:55](560 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:36, 02:54](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:50, 10:51](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:12, 07:46] -PASS -- TEST 'control_diag_debug_gnu' [04:09, 01:40](1273 MB) -PASS -- TEST 'regional_debug_gnu' [13:45, 11:45](716 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:37](825 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:27, 02:37](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:41](820 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:25, 02:38](823 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:52, 02:53](903 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:25, 04:08](855 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:26, 02:43](826 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:25, 02:42](816 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:27, 01:40](489 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:25, 01:46](453 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:51](1440 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:28, 02:42](825 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:57](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:46, 04:25](832 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:35] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [06:12, 04:13] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:45, 09:23](710 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:44, 05:07](708 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:37, 08:42](753 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:34, 04:46](744 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:34, 05:17](703 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:47, 07:06](551 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:29, 02:34](537 MB) -PASS -- TEST 'conus13km_control_gnu' [05:07, 03:09](875 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:56, 06:06](888 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:53, 01:52](548 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:13, 10:58] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:43, 05:52](726 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:43] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:39](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:29, 02:34](713 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:01, 06:52](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:54, 07:01](588 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:48, 07:40](895 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:47, 07:08](956 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:12, 07:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:30, 02:45](731 MB) - -PASS -- COMPILE 's2swa_gnu' [18:14, 16:46] - -PASS -- COMPILE 's2s_gnu' [17:13, 15:57] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:20, 07:27](1521 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:15, 03:27] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:15, 16:07] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:16, 20:07](1461 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:13, 03:13] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:59, 12:42](1458 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:13, 15:41] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:22, 03:01](685 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:13, 14:05] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:05, 05:41](3320 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 17:37](1979 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:20, 18:18](2163 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:15](1259 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:02, 19:30](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 17:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:13] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:00, 22:50](1936 MB) + +PASS -- COMPILE 's2swa_intel' [15:13, 14:17] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:09, 05:55](3344 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 05:52](3356 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:38](3255 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 05:58](3351 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:33](3289 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:05, 05:34](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:05, 05:56](3326 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:50](3228 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:16, 05:55](3336 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:17, 10:13](3534 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 06:21](3642 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:39, 10:16](4336 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:23](4389 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:09, 06:18](3337 MB) + +PASS -- COMPILE 's2sw_intel' [14:13, 13:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 04:52](1955 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:35](2058 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:14] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:32](3392 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:36] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 05:52](2034 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:44] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:22](2031 MB) + +PASS -- COMPILE 's2s_intel' [13:13, 12:42] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:17](3099 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:51](3074 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2548 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 18:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:16, 05:50](3343 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:20] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:40](2016 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:31](1286 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 20:03](1920 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:34] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 24:57](1972 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:28, 03:19](705 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:58](1604 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:53, 02:57](1610 MB) +PASS -- TEST 'control_latlon_intel' [03:44, 03:00](1597 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:55](1609 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:30](1765 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:26](871 MB) +PASS -- TEST 'control_c192_intel' [12:03, 10:29](1754 MB) +PASS -- TEST 'control_c384_intel' [13:05, 10:30](2024 MB) +PASS -- TEST 'control_c384gdas_intel' [11:00, 08:00](1376 MB) +PASS -- TEST 'control_stochy_intel' [02:27, 01:40](659 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:58](506 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:38](666 MB) +PASS -- TEST 'control_iovr4_intel' [03:27, 02:29](659 MB) +PASS -- TEST 'control_iovr5_intel' [03:28, 02:28](658 MB) +PASS -- TEST 'control_p8_intel' [03:59, 03:05](1899 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:07](1900 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 03:14](1901 MB) +PASS -- TEST 'control_restart_p8_intel' [02:48, 01:45](1143 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:01](1904 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1164 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:17](1884 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 03:09](1987 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:19](1896 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:46](1924 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:10](1911 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 03:22](1907 MB) +PASS -- TEST 'regional_control_intel' [06:37, 05:38](1094 MB) +PASS -- TEST 'regional_restart_intel' [03:39, 02:55](1099 MB) +PASS -- TEST 'regional_decomp_intel' [06:36, 05:35](1090 MB) +PASS -- TEST 'regional_2threads_intel' [04:35, 03:24](1096 MB) +PASS -- TEST 'regional_noquilt_intel' [06:45, 05:15](1402 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:16](1100 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:20](1092 MB) +PASS -- TEST 'regional_wofs_intel' [07:37, 06:53](1916 MB) + +PASS -- COMPILE 'rrfs_intel' [12:12, 11:10] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:55, 07:57](1112 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1305 MB) +PASS -- TEST 'rap_decomp_intel' [09:41, 08:07](1036 MB) +PASS -- TEST 'rap_2threads_intel' [08:37, 07:15](1180 MB) +PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1096 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:42](1102 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:04](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:45, 05:50](1137 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 03:58](1048 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 04:05](1039 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:38](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:09](1004 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:35](1097 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:27](1994 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 09:18](2063 MB) + +PASS -- COMPILE 'csawmg_intel' [11:12, 10:42] +PASS -- TEST 'control_csawmg_intel' [06:40, 06:06](1030 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:14](741 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:20] +PASS -- TEST 'control_csawmg_gnu' [09:42, 08:18](761 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 11:00] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:51, 10:58](1673 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 15:05] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:52, 02:45](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [05:35, 04:51](1100 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:22] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:48](1632 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 02:44](1629 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:31, 03:00](839 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:44](834 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:49, 04:29](1151 MB) +PASS -- TEST 'control_ras_debug_intel' [03:30, 02:49](844 MB) +PASS -- TEST 'control_diag_debug_intel' [04:00, 02:56](1680 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 03:09](1926 MB) +PASS -- TEST 'regional_debug_intel' [18:50, 17:58](1113 MB) +PASS -- TEST 'rap_control_debug_intel' [05:32, 04:55](1219 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:50](1216 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:36, 04:59](1227 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:36, 04:59](1225 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:32, 05:01](1224 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:47, 05:15](1306 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:10](1224 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:06](1220 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:31, 04:59](1221 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:58](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:54](1219 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:58](1224 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:12](1221 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:00](1218 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:53](1227 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1224 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:43](1223 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:46] +PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:20](735 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 04:15] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:48, 13:37](1702 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:56](1163 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:25](1056 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](995 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1093 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:09](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:37](936 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 04:51](1031 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:51](932 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 13:41] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:00, 02:06](1206 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:50, 00:53](1130 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1115 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 11:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:11](987 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:53](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [15:53, 14:39](1244 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:38](951 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1182 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:53](1313 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:56](1142 MB) + +PASS -- COMPILE 'hafsw_intel' [13:12, 12:32] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:20, 04:59](741 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 05:52](1118 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:51](845 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:32](872 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 15:13](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:29](508 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:43](519 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:41](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:11](492 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:43](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:34](537 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:53, 04:05](593 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:10](409 MB) +PASS -- TEST 'gnv1_nested_intel' [06:38, 04:10](1753 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:21] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:04](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:47](681 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 08:58](750 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 12:08] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:05, 06:24](739 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 11:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:20](836 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:26](827 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:17](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:43] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:10](1154 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:44](1103 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:38](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:39](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:45](1018 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:42](1168 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:42](1150 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:39, 06:26](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 06:18](1046 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:59](1145 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2519 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2468 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:36](1073 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:44] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:49](1163 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:31] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:33, 00:51](264 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:55](322 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:48] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:44](1982 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:39](1977 MB) + +PASS -- COMPILE 'atml_intel' [13:12, 12:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1866 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:23](1875 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:28](1095 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:13, 04:57] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:49](1897 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:56](1931 MB) + +PASS -- COMPILE 'atmaero_intel' [12:13, 11:16] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:21](3200 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:55](3113 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:52, 05:01](3121 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:12, 04:50] +PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1541 MB) +PASS -- TEST 'control_stochy_gnu' [04:25, 03:28](503 MB) +PASS -- TEST 'control_ras_gnu' [05:24, 04:51](502 MB) +PASS -- TEST 'control_p8_gnu' [06:01, 04:49](1460 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:44](1462 MB) +PASS -- TEST 'control_flake_gnu' [11:27, 10:23](545 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:44] +PASS -- TEST 'rap_control_gnu' [11:35, 11:06](855 MB) +PASS -- TEST 'rap_decomp_gnu' [11:33, 10:54](853 MB) +PASS -- TEST 'rap_2threads_gnu' [10:41, 09:49](931 MB) +PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](816 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:36, 11:00](812 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:47, 08:05](577 MB) +PASS -- TEST 'hrrr_control_gnu' [06:36, 05:36](811 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 05:35](801 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 05:05](917 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:41](843 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 03:00](565 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:34, 02:58](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:29](811 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:35] +PASS -- TEST 'control_diag_debug_gnu' [02:54, 01:43](1274 MB) +PASS -- TEST 'regional_debug_gnu' [12:45, 11:38](714 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:45](824 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:25, 02:36](820 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:39](828 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:38](827 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:50](906 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:54](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:51](819 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:45](491 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:27, 01:49](449 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:47, 01:47](1438 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:38](827 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:57](828 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:27](831 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:10] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:34, 09:16](708 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 05:00](709 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:45, 08:33](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:35, 04:31](747 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:05](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:57](548 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:32, 02:35](540 MB) +PASS -- TEST 'conus13km_control_gnu' [04:57, 03:18](877 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:51, 06:08](879 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:52, 01:54](556 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](732 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:46] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:38](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:37](712 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:53, 07:01](894 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 07:03](579 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:54](901 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 06:59](960 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:47] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:28, 02:43](737 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:31] + +PASS -- COMPILE 's2s_gnu' [17:12, 16:14] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:12, 07:20](1533 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:19] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:01, 19:44](1463 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] +FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:39] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:28](680 MB) SYNOPSIS: -Starting Date/Time: 20240731 14:36:54 -Ending Date/Time: 20240731 16:12:18 -Total Time: 01h:37m:22s +Starting Date/Time: 20240805 00:00:47 +Ending Date/Time: 20240805 02:04:13 +Total Time: 02h:04m:44s Compiles Completed: 57/57 -Tests Completed: 242/244 +Tests Completed: 243/244 Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /scratch2/NAGAPE/epic/Fernando.Andrade-maldonado/regression-tests/wm/2373/ufs-weather-model/tests/logs/log_hera/run_gnv1_nested_intel.log +* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT +-- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009/cpld_debug_pdlib_p8_gnu/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -413,20 +411,20 @@ Result: FAILURE ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -437,25 +435,22 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3087081 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1313382 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-b) - NEW BASELINES FROM FILE: test_changes.list * (-e) - USE ECFLOW -PASS -- COMPILE 'wam_debug_intel' [05:13, 04:08] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:57, 13:51](1679 MB) - -PASS -- COMPILE 'hafsw_intel' [14:14, 12:52] ( 1 warnings 8 remarks ) -PASS -- TEST 'gnv1_nested_intel' [06:47, 04:25](1734 MB) +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:26] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:58, 13:15](1456 MB) SYNOPSIS: -Starting Date/Time: 20240731 18:41:55 -Ending Date/Time: 20240731 19:05:36 -Total Time: 00h:24m:15s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240805 17:54:52 +Ending Date/Time: 20240805 18:15:21 +Total Time: 00h:20m:39s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index b5ff9e7f1c..2e81377b87 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,13 +1,13 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,375 +36,375 @@ 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-20240730 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3083262 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1562821 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:11, 12:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:34, 08:19](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:16, 14:35](2005 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [15:27, 14:06](2304 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:16, 06:33](1328 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [17:58, 15:33](1923 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [13:33, 13:06](1999 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:11, 08:25] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:30, 20:32](1978 MB) - -PASS -- COMPILE 's2swa_intel' [13:11, 12:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:20, 08:20](2182 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:31, 08:10](2193 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:23](1987 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:22, 08:17](2202 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:29](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:28, 09:29](2554 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:20, 08:05](2184 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:29, 06:48](2096 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:33, 08:01](2185 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:10, 16:06](2984 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:26, 05:53](2939 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:10, 09:52](3817 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:17, 06:17](3653 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:29, 05:53](2149 MB) - -PASS -- COMPILE 's2sw_intel' [13:11, 12:22] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:18, 07:10](2020 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:26](2082 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:11, 07:46] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:26, 07:48](2219 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:16] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:02, 05:37](2049 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:11, 11:40] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:17, 04:50](2073 MB) - -PASS -- COMPILE 's2s_intel' [12:11, 11:32] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:52, 07:06](3112 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:54, 02:05](3080 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:45, 01:44](2549 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:37] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:11, 07:42](2181 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:59, 13:45](2039 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:05, 06:47](1379 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:01, 15:13](1965 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:44] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:05, 22:49](2039 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 08:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:21, 03:43](709 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:33, 02:25](1616 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:35, 02:31](1633 MB) -PASS -- TEST 'control_latlon_intel' [03:31, 02:26](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:36, 02:37](1623 MB) -PASS -- TEST 'control_c48_intel' [07:35, 06:53](1741 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:26, 05:52](862 MB) -PASS -- TEST 'control_c192_intel' [09:48, 09:06](1751 MB) -PASS -- TEST 'control_c384_intel' [11:28, 09:17](2056 MB) -PASS -- TEST 'control_c384gdas_intel' [12:03, 09:41](1516 MB) -PASS -- TEST 'control_stochy_intel' [02:21, 01:43](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:29, 01:03](558 MB) -PASS -- TEST 'control_lndp_intel' [02:19, 01:45](678 MB) -PASS -- TEST 'control_iovr4_intel' [03:22, 02:38](662 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 02:38](674 MB) -PASS -- TEST 'control_p8_intel' [03:52, 02:44](1906 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:57, 02:45](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:59, 02:38](1909 MB) -PASS -- TEST 'control_restart_p8_intel' [02:50, 01:37](1162 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:55, 02:42](1892 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:34](1199 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:42, 02:48](1890 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:48, 02:32](1989 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 04:46](1903 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [04:56, 03:38](1975 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:57, 02:47](1922 MB) -PASS -- TEST 'merra2_thompson_intel' [04:01, 02:59](1911 MB) -PASS -- TEST 'regional_control_intel' [06:32, 05:27](1199 MB) -PASS -- TEST 'regional_restart_intel' [03:34, 02:36](1175 MB) -PASS -- TEST 'regional_decomp_intel' [05:27, 04:56](1186 MB) -PASS -- TEST 'regional_2threads_intel' [03:30, 03:04](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [05:32, 04:58](1523 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:36, 04:41](1205 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 04:45](1203 MB) -PASS -- TEST 'regional_wofs_intel' [07:30, 07:01](2078 MB) - -PASS -- COMPILE 'rrfs_intel' [08:11, 07:48] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [07:42, 06:37](1211 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:27](1410 MB) -PASS -- TEST 'rap_decomp_intel' [07:42, 06:54](1150 MB) -PASS -- TEST 'rap_2threads_intel' [07:42, 06:13](1377 MB) -PASS -- TEST 'rap_restart_intel' [04:58, 03:28](1136 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:42, 06:43](1208 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 06:57](1140 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:59, 05:06](1204 MB) -PASS -- TEST 'hrrr_control_intel' [04:44, 03:29](1080 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:44, 03:32](1042 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:44, 03:08](1124 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:30, 01:54](1047 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:57, 06:30](1204 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:22, 07:41](2021 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:22, 07:25](2181 MB) - -PASS -- COMPILE 'csawmg_intel' [08:11, 07:23] -PASS -- TEST 'control_csawmg_intel' [07:33, 06:50](1056 MB) -PASS -- TEST 'control_ras_intel' [03:21, 02:56](860 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:12] -PASS -- TEST 'control_csawmg_gnu' [07:41, 07:03](1070 MB) - -PASS -- COMPILE 'wam_intel' [08:11, 07:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:37, 10:33](1678 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [17:11, 14:00] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:56, 02:44](1911 MB) -PASS -- TEST 'regional_control_faster_intel' [06:30, 05:17](1192 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 04:58] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:33, 02:16](1641 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:12](1652 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 02:31](847 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:20, 02:16](841 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:17](1163 MB) -PASS -- TEST 'control_ras_debug_intel' [03:20, 02:21](848 MB) -PASS -- TEST 'control_diag_debug_intel' [03:37, 02:20](1706 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 03:04](1932 MB) -PASS -- TEST 'regional_debug_intel' [18:34, 17:00](1154 MB) -PASS -- TEST 'rap_control_debug_intel' [05:22, 04:09](1227 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:24, 04:04](1229 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:20, 04:03](1237 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 04:12](1231 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:19, 04:08](1234 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:28, 04:10](1327 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:19, 04:12](1231 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 04:09](1234 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:07](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:19, 04:05](1232 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:20, 03:59](1236 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:21, 04:03](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:20, 06:54](1231 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [04:20, 04:05](1226 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 05:14](1242 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:23, 04:06](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:02, 07:09](1235 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:42] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:52](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 03:15] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:11, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:55, 03:35](1268 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:38, 06:56](1172 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:34](1057 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:47, 06:05](1296 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 03:05](1047 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:58](1010 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:47, 05:27](1130 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:20, 02:08](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:10, 11:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:43, 01:45](1313 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:38, 00:45](1212 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:33, 01:03](1167 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:10, 07:22] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 03:44](1099 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 03:17] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:11](1105 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:19, 03:58](1112 MB) -PASS -- TEST 'conus13km_debug_intel' [13:37, 12:40](1353 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [13:36, 12:59](1012 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:31, 08:30](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [13:36, 12:46](1437 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:10, 02:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:30](1178 MB) - -PASS -- COMPILE 'hafsw_intel' [10:10, 10:03] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:04, 05:20](874 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:24, 04:49](1281 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:09, 06:18](964 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:03, 13:57](997 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:21, 15:04](1016 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:47, 05:22](610 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:10, 06:52](625 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:39, 02:35](441 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:02, 07:23](553 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:38, 03:43](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:38, 03:33](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:42, 04:49](685 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:25, 01:08](452 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:29] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:38, 14:19](648 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:20] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:50, 16:00](751 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:55, 15:37](854 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:10, 10:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:51, 09:41](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:10, 10:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:03, 05:26](943 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:59, 05:26](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:47, 16:32](1346 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:10, 05:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:17, 02:11](1134 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:16, 01:20](1106 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:05](1017 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:07](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:11](1020 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:13](1151 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 02:18](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:15, 02:06](1032 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:57, 04:56](1172 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:53, 04:50](1165 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:12](1165 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:17, 03:03](2391 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [03:17, 03:02](2460 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:33] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 05:06](1080 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:10, 06:17] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:16, 02:12](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [01:10, 00:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 00:51](331 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:21, 00:47](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:21, 00:34](564 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:10, 07:49] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:51, 03:38](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:11, 08:01] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:50, 03:07](1991 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 08:55] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:58, 05:54](1896 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:57, 05:50](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 02:59](1163 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 04:10] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:50, 04:56](1938 MB) - -PASS -- COMPILE 'atmw_intel' [10:11, 09:38] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:48, 01:44](1951 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 07:29] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:48, 03:55](2038 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 04:23](1810 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:35](1810 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [03:10, 02:57] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:33, 17:05](4579 MB) - -PASS -- COMPILE 'atm_gnu' [05:10, 04:09] -PASS -- TEST 'control_c48_gnu' [11:44, 09:26](1574 MB) -PASS -- TEST 'control_stochy_gnu' [04:19, 02:22](727 MB) -PASS -- TEST 'control_ras_gnu' [05:17, 03:47](738 MB) -PASS -- TEST 'control_p8_gnu' [05:49, 04:14](1735 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [04:39, 03:47](1738 MB) -PASS -- TEST 'control_flake_gnu' [05:22, 04:36](814 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:10, 04:07] -PASS -- TEST 'rap_control_gnu' [09:44, 07:58](1094 MB) -PASS -- TEST 'rap_decomp_gnu' [09:36, 08:13](1083 MB) -PASS -- TEST 'rap_2threads_gnu' [08:45, 07:16](1144 MB) -PASS -- TEST 'rap_restart_gnu' [04:51, 04:06](886 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:52, 08:01](1095 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:44, 08:05](1082 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:01, 06:20](883 MB) -PASS -- TEST 'hrrr_control_gnu' [05:38, 04:13](1072 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:37, 04:07](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:33, 03:45](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:36, 04:16](1070 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:23, 02:14](880 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:23, 02:21](939 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:54, 08:07](1084 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 07:11] -PASS -- TEST 'control_diag_debug_gnu' [02:34, 01:19](1639 MB) -PASS -- TEST 'regional_debug_gnu' [07:27, 06:43](1144 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 02:10](1106 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:18, 02:05](1094 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:20, 01:58](1099 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:20, 01:57](1102 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:31, 02:10](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:21, 03:17](1099 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:20, 02:07](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:21, 01:57](1096 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:12](731 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:22](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:28, 01:29](1728 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:18, 02:02](1102 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:17, 02:20](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:49, 03:26](1109 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:46] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 05:23](1576 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 04:12] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:33, 07:58](973 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:41, 04:09](951 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:51, 07:03](967 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:04, 03:40](871 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:42, 04:06](950 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:41, 06:07](871 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:23, 02:18](858 MB) -PASS -- TEST 'conus13km_control_gnu' [03:39, 02:51](1269 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:38, 01:10](1176 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:40, 01:35](922 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:43] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:39, 04:34](993 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:51] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 02:16](980 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 02:01](973 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:42, 05:53](1292 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:34, 06:26](973 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:36, 03:58](1197 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:33, 05:52](1358 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 08:17] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 02:26](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [19:11, 18:14] - -PASS -- COMPILE 's2s_gnu' [17:11, 16:48] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:05, 05:24](2720 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:10, 05:16] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:59] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:08, 25:54](3034 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:45] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:54, 12:06](2924 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:28] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:23](765 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:02, 08:22](2123 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 14:45](2014 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:52, 14:22](2300 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:51](1319 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:50, 15:33](1909 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 20:06] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:26, 13:32](1999 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:18] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:54](1983 MB) + +PASS -- COMPILE 's2swa_intel' [12:11, 11:40] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:53, 08:23](2180 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:00, 08:42](2185 MB) +PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:18](1989 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 08:30](2199 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 04:24](1742 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:59, 09:59](2550 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 08:33](2178 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 06:58](2096 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 08:41](2183 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 15:48](2986 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 05:51](2931 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [16:54, 10:19](3813 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:52, 06:34](3646 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:57, 06:05](2147 MB) + +PASS -- COMPILE 's2sw_intel' [10:11, 10:02] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:43, 10:29](2025 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:25](2085 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:43](2216 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:51, 05:35](2054 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 04:48](2078 MB) + +PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:41, 07:03](3114 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:39, 02:11](3098 MB) +PASS -- TEST 'cpld_restart_c48_intel' [07:42, 02:10](2538 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:26] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:05, 07:26](2179 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:48, 13:55](2043 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 07:03](1405 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:57, 15:36](1960 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:50] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:50, 23:01](2037 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:34] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:22, 03:32](710 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 02:27](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:36](1617 MB) +PASS -- TEST 'control_latlon_intel' [03:30, 02:32](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:28](1616 MB) +PASS -- TEST 'control_c48_intel' [07:33, 06:51](1735 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:51](865 MB) +PASS -- TEST 'control_c192_intel' [10:42, 09:16](1772 MB) +PASS -- TEST 'control_c384_intel' [11:35, 09:27](2053 MB) +PASS -- TEST 'control_c384gdas_intel' [11:49, 09:43](1519 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:44](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](541 MB) +PASS -- TEST 'control_lndp_intel' [02:21, 01:40](667 MB) +PASS -- TEST 'control_iovr4_intel' [03:20, 02:37](667 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](664 MB) +PASS -- TEST 'control_p8_intel' [03:47, 02:43](1913 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 02:43](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 03:05](1906 MB) +PASS -- TEST 'control_restart_p8_intel' [02:46, 01:33](1165 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:46, 02:35](1907 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:47, 01:35](1182 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:36, 02:43](1903 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:24](1995 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:23](1909 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:17](1988 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:39](1916 MB) +PASS -- TEST 'merra2_thompson_intel' [06:55, 04:48](1910 MB) +PASS -- TEST 'regional_control_intel' [07:27, 05:39](1197 MB) +PASS -- TEST 'regional_restart_intel' [03:30, 02:42](1181 MB) +PASS -- TEST 'regional_decomp_intel' [07:23, 05:52](1198 MB) +PASS -- TEST 'regional_2threads_intel' [04:24, 03:04](1155 MB) +PASS -- TEST 'regional_noquilt_intel' [06:24, 05:20](1530 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:44](1195 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:22, 04:51](1198 MB) +PASS -- TEST 'regional_wofs_intel' [08:26, 07:24](2094 MB) + +PASS -- COMPILE 'rrfs_intel' [08:10, 07:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [13:40, 06:42](1205 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:45, 03:42](1408 MB) +PASS -- TEST 'rap_decomp_intel' [14:37, 07:01](1157 MB) +PASS -- TEST 'rap_2threads_intel' [13:40, 06:16](1384 MB) +PASS -- TEST 'rap_restart_intel' [04:59, 03:40](1134 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:43, 06:53](1209 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:43, 07:05](1151 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:12](1219 MB) +PASS -- TEST 'hrrr_control_intel' [10:39, 03:33](1069 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:39, 03:36](1040 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:39, 03:12](1125 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:54](1022 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:01, 06:47](1194 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:25, 07:40](2013 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:37](2208 MB) + +PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] +PASS -- TEST 'control_csawmg_intel' [14:29, 07:00](1074 MB) +PASS -- TEST 'control_ras_intel' [07:21, 02:57](843 MB) + +PASS -- COMPILE 'csawmg_gnu' [09:10, 04:11] +PASS -- TEST 'control_csawmg_gnu' [07:36, 06:59](1073 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 07:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:32, 10:25](1673 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 13:35] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:48, 02:21](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [06:25, 05:23](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 05:35] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 02:23](1638 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:31, 02:16](1646 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:32](842 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:18, 02:19](837 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:25, 04:17](1164 MB) +PASS -- TEST 'control_ras_debug_intel' [03:21, 02:42](848 MB) +PASS -- TEST 'control_diag_debug_intel' [03:33, 02:25](1703 MB) +PASS -- TEST 'control_debug_p8_intel' [03:30, 02:44](1936 MB) +PASS -- TEST 'regional_debug_intel' [16:26, 16:00](1165 MB) +PASS -- TEST 'rap_control_debug_intel' [04:18, 04:06](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:00](1221 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:03](1236 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:06](1235 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:05](1234 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:26, 04:16](1318 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:22](1234 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:26](1239 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:05](1240 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:04](1241 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:23](1226 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 07:05](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:45](1229 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:24](1232 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:06](1232 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:54, 07:13](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:10, 05:01] +PASS -- TEST 'control_csawmg_debug_gnu' [02:31, 01:58](1058 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:10, 03:29] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 07:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:44](1267 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 07:20](1180 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:28](1051 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:03](1285 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:12](1044 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:47](1019 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 05:19](1133 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:01](977 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 12:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [07:36, 01:52](1313 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:45](1214 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:27, 01:02](1178 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 07:51] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:45](1099 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:18, 04:01](1111 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:22, 03:55](1112 MB) +PASS -- TEST 'conus13km_debug_intel' [18:33, 12:50](1360 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 12:58](1011 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:26, 08:52](1256 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 12:58](1436 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:31] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 04:30](1172 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 09:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:29](871 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 05:02](1275 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](935 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](994 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:23](1007 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:35](614 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 07:07](623 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:44](443 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:52, 08:00](556 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 04:08](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:40](622 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:52](679 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:09](454 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:27] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:39, 16:32](650 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:43, 15:27](750 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:53, 16:27](849 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:29] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:08](830 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:11, 10:02] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:05, 05:51](953 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:40](938 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:35](1348 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:10, 07:02] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:11](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:16, 01:21](1113 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:06](1016 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:12](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:09](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:11](1136 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:55, 04:54](1166 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:49, 04:55](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:09](1138 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:06](2458 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:05](2407 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:12] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:11](1086 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:07] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:11](1129 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:45] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:56](335 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:50](560 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:42](572 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 08:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:01](2028 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 08:00] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 03:54](1995 MB) + +PASS -- COMPILE 'atml_intel' [09:11, 09:08] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:20](1900 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 07:37](1905 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:40](1144 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:10, 04:13] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:27](1938 MB) + +PASS -- COMPILE 'atmw_intel' [10:10, 09:44] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:48](1957 MB) + +PASS -- COMPILE 'atmaero_intel' [08:10, 07:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:46, 04:27](2024 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:29](1801 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:38](1822 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:14] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:28, 17:00](4584 MB) + +PASS -- COMPILE 'atm_gnu' [06:10, 05:43] +PASS -- TEST 'control_c48_gnu' [10:41, 09:20](1562 MB) +PASS -- TEST 'control_stochy_gnu' [03:24, 02:20](734 MB) +PASS -- TEST 'control_ras_gnu' [05:21, 03:52](731 MB) +PASS -- TEST 'control_p8_gnu' [05:44, 04:42](1729 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:26](1718 MB) +PASS -- TEST 'control_flake_gnu' [06:21, 04:37](810 MB) + +PASS -- COMPILE 'rrfs_gnu' [06:10, 05:42] +PASS -- TEST 'rap_control_gnu' [08:48, 08:03](1085 MB) +PASS -- TEST 'rap_decomp_gnu' [09:47, 07:55](1084 MB) +PASS -- TEST 'rap_2threads_gnu' [08:45, 07:13](1150 MB) +PASS -- TEST 'rap_restart_gnu' [05:56, 03:59](885 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:43, 08:06](1084 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 08:04](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:49, 06:03](882 MB) +PASS -- TEST 'hrrr_control_gnu' [05:33, 04:09](1074 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:17](1134 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:38](1027 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 04:13](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:09](878 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:12](935 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 08:17](1082 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:17] +PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:18](1631 MB) +PASS -- TEST 'regional_debug_gnu' [07:30, 06:38](1126 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1104 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:04](1097 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1098 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:06](1101 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1275 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:11](1103 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:05](1103 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:00](1098 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](729 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:17](729 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:25](1709 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](1103 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:16](1106 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:20](1114 MB) + +PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:34] +PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:28](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:43] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:43, 07:58](966 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 03:55](952 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:32, 06:52](998 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:37](875 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 03:59](954 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:53](862 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:11](858 MB) +PASS -- TEST 'conus13km_control_gnu' [04:36, 02:49](1267 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:09](1177 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:41](936 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:10, 14:35] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:35](989 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:11](983 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:05](975 MB) +PASS -- TEST 'conus13km_debug_gnu' [06:34, 06:09](1289 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:18](979 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:31, 03:44](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:01](1356 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:10, 13:27] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:14](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [24:11, 22:09] + +PASS -- COMPILE 's2s_gnu' [21:11, 18:55] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:54, 04:55](2735 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [14:11, 12:50] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 20:15] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:19, 25:47](3033 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 10:43] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:59, 12:04](2940 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:20] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:17](764 MB) SYNOPSIS: -Starting Date/Time: 20240731 09:21:00 -Ending Date/Time: 20240731 10:54:53 -Total Time: 01h:34m:43s +Starting Date/Time: 20240805 08:20:40 +Ending Date/Time: 20240805 09:59:14 +Total Time: 01h:38m:59s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 8a1843f928..ffa39feaa2 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,13 +1,13 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -4062b88d6b40c90e783e00de145f1e2f0dd8a0e3 +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,255 +36,326 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3686172 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [41:14, 40:36] ( 1 warnings 1383 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:47, 07:14](2015 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:32] ( 1 warnings 1427 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [24:06, 21:32](1894 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:20, 22:14](2017 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:42, 11:07](1134 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:35, 24:34](1857 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:17, 54:32] ( 1 warnings 1424 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:44, 21:09](1883 MB) - -PASS -- COMPILE 's2swa_intel' [42:14, 40:54] ( 1381 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [15:23, 08:00](2059 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:46, 07:57](2065 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:54, 04:53](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:20, 08:00](2080 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:58, 05:00](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [13:21, 07:55](2323 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:17, 08:02](2060 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:39, 06:58](2002 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:45, 08:03](2058 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:33, 07:27](2045 MB) - -PASS -- COMPILE 's2sw_intel' [39:14, 38:19] ( 1279 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:30, 06:37](1908 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:45, 06:27](1971 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:10] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:44, 11:05](2091 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:12, 07:44](1944 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [35:15, 35:00] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:44, 06:16](1972 MB) - -PASS -- COMPILE 's2s_intel' [38:16, 35:21] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [14:08, 12:28](3078 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:05, 03:58](3054 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:59, 02:29](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [35:27, 33:36] ( 1609 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:11, 07:38](2028 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [47:21, 47:08] ( 1339 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:37, 21:41](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:48, 11:02](1136 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:31, 25:13](1886 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:46] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:32, 32:53](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:18, 38:00] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [05:41, 04:28](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:15, 04:01](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:22, 04:05](1557 MB) -PASS -- TEST 'control_latlon_intel' [05:09, 03:55](1548 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:20, 04:00](1545 MB) -PASS -- TEST 'control_c48_intel' [15:28, 11:46](1739 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:53, 10:13](854 MB) -PASS -- TEST 'control_c192_intel' [17:42, 14:13](1691 MB) -PASS -- TEST 'control_c384_intel' [24:36, 17:54](1837 MB) -PASS -- TEST 'control_c384gdas_intel' [21:34, 13:17](1023 MB) -PASS -- TEST 'control_stochy_intel' [03:37, 02:15](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:21](438 MB) -PASS -- TEST 'control_lndp_intel' [03:37, 02:09](606 MB) -PASS -- TEST 'control_iovr4_intel' [04:36, 03:23](602 MB) -PASS -- TEST 'control_iovr5_intel' [04:38, 03:23](605 MB) -PASS -- TEST 'control_p8_intel' [06:34, 04:43](1848 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [12:06, 04:48](1844 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:49, 04:27](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [04:06, 02:50](1060 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:37, 04:27](1841 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:08, 02:47](1076 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:38, 04:52](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:38, 04:37](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:15, 07:47](1854 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:02, 05:58](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:54, 04:43](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [07:03, 05:00](1847 MB) -PASS -- TEST 'regional_control_intel' [09:06, 07:57](1014 MB) -PASS -- TEST 'regional_restart_intel' [05:40, 04:36](1010 MB) -PASS -- TEST 'regional_decomp_intel' [10:07, 08:15](1020 MB) -PASS -- TEST 'regional_2threads_intel' [07:08, 05:55](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [09:13, 07:52](1022 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:06, 07:58](1014 MB) - -PASS -- COMPILE 'rrfs_intel' [36:17, 35:44] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [15:09, 10:17](989 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:32, 05:39](1222 MB) -PASS -- TEST 'rap_decomp_intel' [14:16, 10:41](988 MB) -PASS -- TEST 'rap_2threads_intel' [14:16, 09:44](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:22, 05:19](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:32, 10:05](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:07, 10:40](989 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:12, 07:36](1004 MB) -PASS -- TEST 'hrrr_control_intel' [10:01, 05:17](984 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:03, 05:27](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:40, 04:48](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:32, 02:49](922 MB) -PASS -- TEST 'rrfs_v1beta_intel' [14:44, 10:02](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:35, 12:29](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:35, 12:12](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [33:19, 32:42] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:48, 08:46](960 MB) -PASS -- TEST 'control_ras_intel' [05:27, 04:30](663 MB) - -PASS -- COMPILE 'wam_intel' [33:18, 32:39] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [15:55, 14:18](1632 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [53:18, 52:45] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [13:34, 04:14](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:46, 07:12](1011 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:42] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:59, 03:27](1571 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:05, 03:20](1580 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:33, 03:49](778 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:28](770 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:57, 05:59](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:33, 03:28](788 MB) -PASS -- TEST 'control_diag_debug_intel' [05:03, 03:27](1640 MB) -PASS -- TEST 'control_debug_p8_intel' [06:07, 04:25](1878 MB) -PASS -- TEST 'regional_debug_intel' [24:02, 22:44](1044 MB) -PASS -- TEST 'rap_control_debug_intel' [07:35, 06:10](1163 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:37, 06:04](1157 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:36, 06:08](1167 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 06:10](1164 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:11](1164 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 06:30](1243 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [10:23, 06:22](1169 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:29, 06:17](1170 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:28, 06:12](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:31, 06:17](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:30, 06:07](1162 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:30, 06:15](1165 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:31, 10:13](1160 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:31, 06:09](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:33, 07:32](1168 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:27, 06:12](1165 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:29, 10:45](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:42] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:05, 16:52](1652 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:15, 30:42] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:15, 05:21](1081 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:01, 08:25](904 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:14, 04:29](868 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:23, 08:00](952 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:20, 04:04](913 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 04:46](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:27, 06:15](903 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:32, 02:25](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [53:20, 48:43] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:13, 02:58](1108 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:50, 01:23](1053 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:51, 01:36](1023 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [31:16, 31:03] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:56, 05:34](915 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:08](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:31, 06:01](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [20:05, 18:40](1153 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:04, 18:54](900 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:57, 10:51](1099 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:58, 18:41](1228 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:28, 06:12](1083 MB) - -PASS -- COMPILE 'hafsw_intel' [39:17, 38:48] ( 1 warnings 1427 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:27, 06:59](721 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [24:41, 06:51](1095 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:46, 09:19](767 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [23:30, 16:30](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [36:55, 18:08](827 MB) -PASS -- TEST 'gnv1_nested_intel' [27:10, 07:31](1683 MB) - -PASS -- COMPILE 'hafs_all_intel' [34:17, 33:41] ( 1268 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:30, 08:46](773 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:31, 08:53](753 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:13, 08:29] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:25, 03:36](1084 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:25, 02:14](1027 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:25, 03:31](937 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:26, 03:33](931 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:25, 03:34](926 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:24, 03:37](1066 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:35](1049 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:25, 03:31](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:57](888 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:22, 07:51](842 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [07:22, 03:36](1074 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:25, 05:15](2407 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:26, 05:05](2356 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:38] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:25, 08:02](1026 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:37] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:23, 03:36](1069 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 01:55] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [15:42, 02:00](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [15:36, 01:43](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:54](253 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [34:15, 34:08] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [19:29, 05:35](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:15, 33:24] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [16:39, 05:31](1875 MB) - -PASS -- COMPILE 'atml_intel' [38:16, 37:52] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:48, 08:59](1868 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:46, 09:11](1859 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 04:52](1076 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 06:04] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [31:54, 08:16](1899 MB) - -PASS -- COMPILE 'atmw_intel' [36:16, 35:32] ( 1260 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:23, 02:51](1862 MB) - -PASS -- COMPILE 'atmaero_intel' [31:18, 27:13] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:32, 05:58](1945 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:29, 06:29](1723 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:20, 06:33](1734 MB) +PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:49] ( 1 warnings 1384 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:07, 07:52](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:16, 49:06] ( 1 warnings 1428 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [43:32, 21:50](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:30, 23:29](2010 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:46, 11:03](1129 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:17, 24:54](1855 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:32] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [40:15, 21:36](1881 MB) + +PASS -- COMPILE 's2swa_intel' [42:16, 41:29] ( 1382 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [35:36, 08:28](2063 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:08, 08:20](2057 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:23, 05:15](1717 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [35:39, 08:26](2078 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 05:33](1739 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [35:31, 08:06](2316 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [35:31, 08:22](2011 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [35:00, 07:16](1961 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:00, 08:17](2064 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [35:49, 07:54](2040 MB) + +PASS -- COMPILE 's2sw_intel' [39:15, 38:50] ( 1280 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [38:06, 06:52](1903 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:23, 06:42](1947 MB) + +PASS -- COMPILE 's2swa_debug_intel' [36:19, 06:04] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:43, 11:16](2080 MB) + +PASS -- COMPILE 's2sw_debug_intel' [32:21, 05:47] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:45](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [02:24, 35:31] ( 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:12, 07:19](1973 MB) + +PASS -- COMPILE 's2s_intel' [55:22, 35:44] ( 1016 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:18, 12:49](3075 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [11:15, 04:12](3059 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:06, 02:50](2515 MB) + +PASS -- COMPILE 's2swa_faster_intel' [53:30, 34:28] ( 1610 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:23, 09:37](2055 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:17] ( 1340 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 23:39](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:35, 12:58](1142 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:09, 27:39](1887 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:40] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:47, 33:01](1942 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:22] ( 1 warnings 1148 remarks ) +PASS -- TEST 'control_flake_intel' [06:38, 04:56](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:19, 04:42](1545 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:25, 05:11](1558 MB) +PASS -- TEST 'control_latlon_intel' [06:18, 04:28](1552 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:29, 04:51](1549 MB) +PASS -- TEST 'control_c48_intel' [14:26, 12:03](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:14](852 MB) +PASS -- TEST 'control_c192_intel' [17:51, 15:31](1692 MB) +PASS -- TEST 'control_c384_intel' [24:27, 20:39](1818 MB) +PASS -- TEST 'control_c384gdas_intel' [20:44, 14:59](1018 MB) +PASS -- TEST 'control_stochy_intel' [03:35, 02:44](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:44](442 MB) +PASS -- TEST 'control_lndp_intel' [03:33, 02:37](605 MB) +PASS -- TEST 'control_iovr4_intel' [04:50, 03:44](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:35, 03:59](605 MB) +PASS -- TEST 'control_p8_intel' [07:40, 05:39](1828 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 05:41](1843 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:54, 05:29](1848 MB) +PASS -- TEST 'control_restart_p8_intel' [05:15, 02:53](1065 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:47, 05:37](1842 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 03:00](1070 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:49, 05:42](1828 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:36, 05:54](1934 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:29, 08:23](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:56, 06:40](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:55, 05:42](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [08:12, 05:28](1856 MB) +PASS -- TEST 'regional_control_intel' [11:06, 09:36](1013 MB) +PASS -- TEST 'regional_restart_intel' [07:45, 06:19](1016 MB) +PASS -- TEST 'regional_decomp_intel' [12:06, 09:54](1014 MB) +PASS -- TEST 'regional_2threads_intel' [10:14, 07:57](1008 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:17, 09:54](1020 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:06, 09:54](1014 MB) + +PASS -- COMPILE 'rrfs_intel' [42:15, 35:57] ( 3 warnings 1115 remarks ) +PASS -- TEST 'rap_control_intel' [13:14, 11:05](997 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:06, 05:43](1213 MB) +PASS -- TEST 'rap_decomp_intel' [15:01, 11:45](985 MB) +PASS -- TEST 'rap_2threads_intel' [12:40, 10:25](1093 MB) +PASS -- TEST 'rap_restart_intel' [09:24, 07:11](987 MB) +PASS -- TEST 'rap_sfcdiff_intel' [13:35, 11:11](992 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:54, 11:53](991 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:12, 08:50](999 MB) +PASS -- TEST 'hrrr_control_intel' [08:46, 06:20](991 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:19, 05:26](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:11, 04:55](1060 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:40, 03:03](919 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:47, 11:20](988 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 14:36](1944 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:46, 14:05](1940 MB) + +PASS -- COMPILE 'csawmg_intel' [39:15, 32:59] ( 1095 remarks ) +PASS -- TEST 'control_csawmg_intel' [13:09, 10:20](960 MB) +PASS -- TEST 'control_ras_intel' [07:37, 05:20](668 MB) + +PASS -- COMPILE 'wam_intel' [33:15, 32:49] ( 995 remarks ) +PASS -- TEST 'control_wam_intel' [20:03, 18:11](1625 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [54:18, 53:30] ( 1297 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:56, 04:37](1840 MB) +PASS -- TEST 'regional_control_faster_intel' [08:52, 07:50](1017 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:16] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:47, 03:29](1575 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 03:25](1573 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 04:05](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:30](776 MB) +PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:57](1093 MB) +PASS -- TEST 'control_ras_debug_intel' [04:30, 03:33](799 MB) +PASS -- TEST 'control_diag_debug_intel' [07:50, 03:39](1638 MB) +PASS -- TEST 'control_debug_p8_intel' [09:36, 04:44](1879 MB) +PASS -- TEST 'regional_debug_intel' [27:59, 24:12](1041 MB) +PASS -- TEST 'rap_control_debug_intel' [10:43, 06:46](1166 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:52, 06:55](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 07:19](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:52, 06:46](1167 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 07:18](1166 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:54](1250 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:30](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:13](1163 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:25](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:22](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:20](1160 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:15, 11:00](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 06:12](1159 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:34, 07:48](1167 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:15](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:14, 10:48](1168 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:53] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:59, 17:44](1659 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:16, 30:54] ( 3 warnings 1028 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:32, 05:52](1082 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 09:43](901 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:56, 04:25](877 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:06, 09:26](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:50, 04:07](911 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:27, 05:13](861 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 06:49](898 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 03:03](852 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:17, 48:54] ( 3 warnings 1198 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 03:32](1107 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:29](1051 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:39](1021 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:13, 30:37] ( 3 warnings 1048 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:17, 07:13](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 05:57] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:10](1041 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 06:05](1044 MB) +PASS -- TEST 'conus13km_debug_intel' [20:07, 18:44](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:16, 19:11](872 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:59, 10:52](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 18:46](1234 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:51] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:21](1084 MB) + +PASS -- COMPILE 'hafsw_intel' [40:15, 38:56] ( 1 warnings 1428 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:43, 07:12](705 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 06:47](1091 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:11, 09:29](768 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:03, 17:45](801 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:30, 19:07](822 MB) +PASS -- TEST 'gnv1_nested_intel' [11:46, 07:30](1684 MB) + +PASS -- COMPILE 'hafs_all_intel' [35:15, 34:20] ( 1269 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:51, 09:26](769 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:46, 09:32](754 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:38] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 04:02](1066 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1037 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 03:57](931 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 04:02](929 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:52](925 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:53](1071 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:42](1063 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:46](944 MB) +FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_mx025_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 08:13](844 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:45](1065 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:15](2370 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:43, 05:31](2356 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:52] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 08:06](1013 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 04:10](1055 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:16] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:40](233 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:27](257 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:55](256 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:14, 34:38] ( 1016 remarks ) +FAILED: TEST TIMED OUT -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:41] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:59, 06:04](1885 MB) + +PASS -- COMPILE 'atml_intel' [38:15, 37:47] ( 8 warnings 1186 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 10:11](1858 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [12:48, 10:31](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:07, 06:27](1073 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:16] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:23, 08:39](1890 MB) + +PASS -- COMPILE 'atmw_intel' [37:14, 35:19] ( 1261 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 03:18](1860 MB) + +PASS -- COMPILE 'atmaero_intel' [35:15, 34:01] ( 1099 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:46, 06:39](1951 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 07:11](1732 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:30](1746 MB) SYNOPSIS: -Starting Date/Time: 20240731 21:01:26 -Ending Date/Time: 20240801 00:59:10 -Total Time: 03h:58m:22s +Starting Date/Time: 20240805 00:16:01 +Ending Date/Time: 20240805 05:47:53 +Total Time: 05h:32m:33s Compiles Completed: 36/36 -Tests Completed: 164/164 +Tests Completed: 162/164 +Failed Tests: +* TEST datm_cdeps_mx025_cfsr_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/datm_cdeps_mx025_cfsr_intel/err +* TEST atm_ds2s_docn_pcice_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/atm_ds2s_docn_pcice_intel/err + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF JET REGRESSION TESTING LOG==== +====START OF JET REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1849630 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: h-nems +* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-e) - USE ECFLOW + +PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:39] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 08:04](894 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:20] ( 1016 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:00, 06:19](1916 MB) + +SYNOPSIS: +Starting Date/Time: 20240805 15:51:58 +Ending Date/Time: 20240805 16:42:30 +Total Time: 00h:50m:51s +Compiles Completed: 2/2 +Tests Completed: 2/2 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 8b2f2fd0b3..7a67ef80ad 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,13 +1,13 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,357 +36,286 @@ 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-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_457009 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2194935 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:10, 16:24] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:41, 14:32](2094 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:42, 18:05](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:11, 19:00](2129 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:06, 08:53](1217 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 20:23](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 19:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:40](1951 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:10, 06:37] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:49, 26:53](1944 MB) - -PASS -- COMPILE 's2swa_intel' [16:10, 16:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:36, 14:16](2140 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:40, 14:18](2135 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:43, 07:55](1810 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:36, 14:32](2167 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:43, 07:58](1716 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:34, 13:16](2434 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:34, 14:05](2132 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [13:37, 11:56](2042 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:38, 14:17](2148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:42, 15:40](2718 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:02, 08:26](2724 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:01, 11:29](3662 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:34, 07:08](3542 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:26, 05:58](2116 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:40](1981 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:28, 04:49](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:10, 08:14] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:20, 08:50](2173 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:10, 07:16] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:00, 06:03](2018 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:10, 13:41] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:18, 04:39](2046 MB) - -PASS -- COMPILE 's2s_intel' [14:10, 14:05] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:56, 09:47](3109 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:00, 03:20](3091 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:01, 02:08](2546 MB) - -PASS -- COMPILE 's2swa_faster_intel' [23:11, 23:00] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:31](2154 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 20:03] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:09, 18:07](1995 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:28, 08:54](1248 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 20:20](1909 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:48] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:24, 28:48](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:27, 03:37](689 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:41, 03:04](1593 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:10](1593 MB) -PASS -- TEST 'control_latlon_intel' [03:43, 03:05](1596 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:53, 03:06](1594 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:16](1740 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:32, 07:56](856 MB) -PASS -- TEST 'control_c192_intel' [12:49, 11:10](1741 MB) -PASS -- TEST 'control_c384_intel' [14:48, 12:21](2022 MB) -PASS -- TEST 'control_c384gdas_intel' [12:28, 09:27](1360 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:48](641 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:08](475 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:42](643 MB) -PASS -- TEST 'control_iovr4_intel' [03:24, 02:38](639 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:10] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 14:21](2093 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 17:57](1965 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:56](2127 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:07, 08:50](1211 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 20:12](1873 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:21] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:37](1953 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 08:06] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 27:11](1932 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 15:42] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:29](2152 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:41, 14:09](2143 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:45, 07:55](1815 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:32](2163 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 08:03](1711 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:24](2439 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:31, 14:33](2130 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:32](2047 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:40, 14:27](2148 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:21](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:51, 08:57](2737 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:03, 11:22](3664 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:05](3506 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:24, 05:54](2111 MB) + +PASS -- COMPILE 's2sw_intel' [16:11, 15:14] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:49](1984 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:41](2038 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:06] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:21, 08:50](2173 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:47] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2017 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:54] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:10, 04:40](2049 MB) + +PASS -- COMPILE 's2s_intel' [13:11, 12:51] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:52](3109 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:58, 03:20](3087 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:09](2538 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:45](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:21] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:06](1998 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:59](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:22](1905 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:54] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 28:37](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:26, 03:37](688 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:43, 03:04](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:09](1589 MB) +PASS -- TEST 'control_latlon_intel' [03:41, 03:04](1584 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1591 MB) +PASS -- TEST 'control_c48_intel' [10:49, 09:11](1742 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 07:55](848 MB) +PASS -- TEST 'control_c192_intel' [11:57, 11:09](1736 MB) +PASS -- TEST 'control_c384_intel' [14:53, 12:11](2008 MB) +PASS -- TEST 'control_c384gdas_intel' [12:34, 09:30](1356 MB) +PASS -- TEST 'control_stochy_intel' [02:22, 01:47](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:47, 01:05](475 MB) +PASS -- TEST 'control_lndp_intel' [02:22, 01:41](643 MB) +PASS -- TEST 'control_iovr4_intel' [03:28, 02:39](643 MB) PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:26](1882 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:25](1880 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:20, 03:15](1884 MB) -PASS -- TEST 'control_restart_p8_intel' [03:06, 02:01](1095 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:22](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:16, 01:57](1129 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:07, 03:22](1872 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:40](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:44, 05:49](1881 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:27, 04:52](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1895 MB) -PASS -- TEST 'merra2_thompson_intel' [05:34, 03:40](1895 MB) -PASS -- TEST 'regional_control_intel' [07:35, 06:17](1091 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 03:29](1081 MB) -PASS -- TEST 'regional_decomp_intel' [07:37, 06:39](1081 MB) -PASS -- TEST 'regional_2threads_intel' [05:35, 04:36](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [07:35, 06:19](1382 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:38, 06:17](1088 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:21](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:35, 07:33](1908 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:16] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:20, 08:16](1059 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:53, 05:01](1307 MB) -PASS -- TEST 'rap_decomp_intel' [10:02, 08:27](1020 MB) -PASS -- TEST 'rap_2threads_intel' [09:57, 08:14](1168 MB) -PASS -- TEST 'rap_restart_intel' [06:29, 04:16](1041 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:00, 08:11](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:28](1026 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:31, 06:09](1075 MB) -PASS -- TEST 'hrrr_control_intel' [05:58, 04:16](1029 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:57, 04:20](1015 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:13, 04:05](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:39, 02:18](950 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:14, 08:03](1043 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:26, 09:38](1989 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:26, 09:22](2026 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:30] -PASS -- TEST 'control_csawmg_intel' [07:37, 06:32](1024 MB) -PASS -- TEST 'control_ras_intel' [04:23, 03:25](718 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 11:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:43, 12:01](1665 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:39] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:19, 03:10](1891 MB) -PASS -- TEST 'regional_control_faster_intel' [06:33, 05:58](1082 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 08:02] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:47, 02:44](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:52, 02:39](1611 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:25, 03:03](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:25, 02:42](817 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:43, 04:18](1143 MB) -PASS -- TEST 'control_ras_debug_intel' [03:24, 02:48](822 MB) -PASS -- TEST 'control_diag_debug_intel' [03:49, 02:44](1683 MB) -PASS -- TEST 'control_debug_p8_intel' [03:49, 03:08](1919 MB) -PASS -- TEST 'regional_debug_intel' [18:47, 17:16](1098 MB) -PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1210 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 04:44](1204 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:26, 04:52](1209 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:26, 05:14](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 05:31](1207 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:32, 05:14](1294 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 04:57](1208 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 05:00](1207 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:20, 04:50](1211 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:00](1213 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:24, 04:48](1203 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:22, 04:49](1208 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 08:01](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:50](1205 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 06:01](1211 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:20, 04:52](1213 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:19, 08:19](1211 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 05:04] ( 839 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:14] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 04:48](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 06:58](1012 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:16, 03:41](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:04, 07:05](1082 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:02, 03:33](956 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:59, 03:51](907 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:13](981 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:28, 02:00](882 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:10, 17:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:54, 02:36](1185 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:13](1131 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:36, 01:30](1085 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:10, 11:33] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:29](978 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 05:11] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 04:43](1090 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:45](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [14:49, 14:07](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:47, 14:29](950 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:39, 08:31](1174 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:41, 14:44](1316 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 05:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:21, 04:54](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 13:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:09, 05:54](761 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 06:10](1136 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:22, 07:22](840 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:15](871 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:23, 29:02](886 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:03, 06:59](515 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:26, 08:17](521 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:22](382 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:13, 09:28](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:37](540 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:54, 04:21](541 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:38](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:33](411 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'gnv1_nested_intel' [, ]( MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:56](603 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:10, 21:52] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:11, 12:47](676 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:01, 12:49](735 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:17] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:58, 08:45](726 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:10, 12:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:16, 07:14](833 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 07:15](818 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:57, 16:19](1200 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 09:16] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:18, 02:56](1158 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:54](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:16, 02:47](1021 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:50](1024 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:16, 02:52](1023 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:17, 02:58](1159 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:58](1149 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:07, 06:28](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:09, 06:22](1007 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:55](1154 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:16](2398 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:21](2345 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 05:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:29](1076 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 07:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:57](1154 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:56](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:37](319 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:59] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:03, 04:00](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:19] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:54](1955 MB) - -PASS -- COMPILE 'atml_intel' [14:10, 13:40] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:21, 04:47](1872 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:46](1870 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:52, 02:47](1083 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 06:45] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:26, 05:52](1906 MB) - -PASS -- COMPILE 'atmw_intel' [13:10, 12:32] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:16, 02:04](1919 MB) - -PASS -- COMPILE 'atmaero_intel' [12:10, 12:06] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:09, 04:33](1989 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:18, 05:14](1775 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:58, 05:17](1800 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 04:56] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:49, 20:46](4552 MB) +PASS -- TEST 'control_p8_intel' [05:08, 03:31](1886 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 03:25](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 03:18](1882 MB) +PASS -- TEST 'control_restart_p8_intel' [03:14, 01:55](1101 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:13, 03:22](1879 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:58](1130 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:26](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:35](1972 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:48](1882 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 04:48](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:24, 03:26](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [05:34, 03:41](1894 MB) +PASS -- TEST 'regional_control_intel' [07:37, 06:19](1084 MB) +PASS -- TEST 'regional_restart_intel' [04:47, 03:20](1082 MB) +PASS -- TEST 'regional_decomp_intel' [07:34, 06:38](1084 MB) +PASS -- TEST 'regional_2threads_intel' [05:32, 04:37](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [06:37, 06:09](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:12](1086 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 06:16](1093 MB) +PASS -- TEST 'regional_wofs_intel' [08:36, 07:31](1906 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:31] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:19, 08:14](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:13](1306 MB) +PASS -- TEST 'rap_decomp_intel' [09:54, 08:29](1022 MB) +PASS -- TEST 'rap_2threads_intel' [10:16, 08:15](1160 MB) +PASS -- TEST 'rap_restart_intel' [06:34, 04:20](1044 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:58, 08:11](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:58, 08:29](1024 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:33, 06:09](1078 MB) +PASS -- TEST 'hrrr_control_intel' [06:08, 04:16](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 04:23](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:04](1097 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:18](953 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:07](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:40](1985 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:25](2020 MB) + +PASS -- COMPILE 'csawmg_intel' [12:11, 11:36] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:28](1024 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:24](718 MB) + +PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:45, 12:07](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:18, 03:09](1888 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 05:56](1091 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:55] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:45](1619 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 02:40](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:06](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:22](1138 MB) +PASS -- TEST 'control_ras_debug_intel' [03:28, 02:49](825 MB) +PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1683 MB) +PASS -- TEST 'control_debug_p8_intel' [03:53, 03:08](1918 MB) +PASS -- TEST 'regional_debug_intel' [18:49, 17:36](1116 MB) +PASS -- TEST 'rap_control_debug_intel' [05:26, 04:56](1215 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:49](1200 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:57](1210 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 05:00](1206 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:55](1208 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:34, 05:06](1296 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:01](1209 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:27, 05:01](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:57](1202 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:58](1215 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:44](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:52](1213 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:57](1212 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:56](1211 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:23](1204 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 05:02] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:45, 13:31](1690 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 11:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:46](1169 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 06:57](1003 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:42](928 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1078 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:34](958 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:49](903 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 05:14](978 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 02:00](880 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:56, 02:38](1181 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:47, 01:11](1134 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:29](1079 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:27] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:27](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:26] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:50](1089 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:39](1083 MB) +PASS -- TEST 'conus13km_debug_intel' [15:58, 14:22](1245 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:14](946 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:44](1174 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:23](1315 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:58](1136 MB) + +PASS -- COMPILE 'hafsw_intel' [14:10, 13:50] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:54](763 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 06:11](1139 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 07:23](836 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:19](874 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:18](894 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:57](514 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:14](523 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:24](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 09:29](491 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 04:23](540 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:37](591 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:31](409 MB) +PASS -- TEST 'gnv1_nested_intel' [07:11, 04:18](1737 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:22](603 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:46] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 12:45](674 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:08, 12:50](739 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:27] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 08:53](727 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:12, 12:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:20](828 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 07:21](813 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:16](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:55] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:57](1156 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:56](1116 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:49](1028 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1022 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:54](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1163 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:27](1026 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 06:24](998 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:57](1133 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:27](2400 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:20](2390 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:36] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:22](1085 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:01](255 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:55](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:36](323 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:54] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:06](1973 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:55](1956 MB) + +PASS -- COMPILE 'atml_intel' [14:11, 13:34] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:27, 04:51](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:48](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:39](1082 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:17] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 06:01](1897 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 12:25] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:10](1917 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 11:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:32](2001 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 05:16](1769 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:23](1797 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:22] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:05, 20:53](4560 MB) SYNOPSIS: -Starting Date/Time: 20240731 09:22:04 -Ending Date/Time: 20240731 10:52:07 -Total Time: 01h:30m:46s +Starting Date/Time: 20240805 07:55:58 +Ending Date/Time: 20240805 09:26:43 +Total Time: 01h:31m:48s Compiles Completed: 41/41 -Tests Completed: 183/185 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_control_wam_debug_intel.log -* TEST gnv1_nested_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /work2/noaa/stmp/zshrader/orion/rt-2373/tests/logs/log_orion/run_gnv1_nested_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF ORION REGRESSION TESTING LOG==== -====START OF ORION REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1813348 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [06:10, 05:35] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:41, 14:00](1695 MB) - -PASS -- COMPILE 'hafsw_intel' [14:11, 13:28] ( 1 warnings 9 remarks ) -PASS -- TEST 'gnv1_nested_intel' [07:06, 04:19](1730 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:42:20 -Ending Date/Time: 20240731 17:05:05 -Total Time: 00h:22m:56s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Tests Completed: 185/185 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 f62c9c31cf..55875c3ebc 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,17 +1,17 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b +1d72e10c471068cdf993bc535757009c7d8230d0 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) + 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop-64-g0495c19) 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) @@ -21,11 +21,11 @@ Submodule hashes used in testing: -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) + 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) + 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,306 +36,240 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_135764 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46672 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [31:50, 30:42] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:57, 01:57](3100 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 18:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [52:16, 01:55](1824 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [34:19, 01:37](1849 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [34:19, 02:12](982 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [52:17, 01:29](1792 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [42:58, 42:13] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:53, 01:11](1821 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:31, 15:08] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [55:20, 01:46](1843 MB) - -PASS -- COMPILE 's2swa_intel' [30:47, 30:03] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:02, 01:36](3133 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:02, 01:48](3130 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:42, 01:04](3065 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:02, 01:34](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [31:42, 00:59](3087 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:02, 01:01](3369 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:02, 01:45](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:03, 01:35](3078 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:02, 01:49](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:11, 04:01](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:42, 04:25](4273 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:02, 01:50](3114 MB) - -PASS -- COMPILE 's2sw_intel' [12:28, 11:14] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [58:23, 00:49](1840 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [58:23, 00:58](1904 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:28, 13:20] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [56:22, 01:06](1899 MB) - -PASS -- COMPILE 's2s_intel' [22:38, 21:55] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [48:11, 01:00](2923 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [48:11, 01:27](2925 MB) -PASS -- TEST 'cpld_restart_c48_intel' [44:08, 01:11](2349 MB) - -PASS -- COMPILE 's2swa_faster_intel' [30:48, 30:01] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:02, 01:55](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:34, 18:11] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [52:17, 00:47](1843 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [35:04, 01:26](1008 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [35:05, 01:41](1802 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [28:50, 28:29] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:33, 00:42](1863 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [34:52, 34:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [19:50, 00:22](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [19:50, 00:35](1463 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [19:50, 00:24](1475 MB) -PASS -- TEST 'control_latlon_intel' [19:20, 00:20](1478 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:56, 00:32](1471 MB) -PASS -- TEST 'control_c48_intel' [18:45, 01:11](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:45, 00:50](715 MB) -PASS -- TEST 'control_c192_intel' [18:45, 00:40](1593 MB) -PASS -- TEST 'control_c384_intel' [18:36, 01:37](1903 MB) -PASS -- TEST 'control_c384gdas_intel' [18:32, 02:04](1089 MB) -PASS -- TEST 'control_stochy_intel' [18:26, 00:27](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [16:01, 01:01](333 MB) -PASS -- TEST 'control_lndp_intel' [18:21, 00:30](528 MB) -PASS -- TEST 'control_iovr4_intel' [17:52, 00:44](527 MB) -PASS -- TEST 'control_iovr5_intel' [17:52, 00:43](521 MB) -PASS -- TEST 'control_p8_intel' [17:32, 01:38](1770 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:44, 01:49](1765 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [16:44, 01:57](1772 MB) -PASS -- TEST 'control_restart_p8_intel' [12:25, 01:00](917 MB) -PASS -- TEST 'control_noqr_p8_intel' [16:44, 01:31](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:43, 00:41](925 MB) -PASS -- TEST 'control_decomp_p8_intel' [16:44, 01:25](1761 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:43, 01:02](1855 MB) -PASS -- TEST 'control_p8_lndp_intel' [16:42, 01:04](1777 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 02:04](1830 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:39, 01:43](1778 MB) -PASS -- TEST 'merra2_thompson_intel' [16:37, 01:42](1778 MB) -PASS -- TEST 'regional_control_intel' [15:56, 00:12](849 MB) -PASS -- TEST 'regional_restart_intel' [10:14, 00:28](852 MB) -PASS -- TEST 'regional_decomp_intel' [15:56, 00:55](852 MB) -PASS -- TEST 'regional_2threads_intel' [15:43, 00:56](904 MB) -PASS -- TEST 'regional_noquilt_intel' [15:33, 00:19](1173 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [15:20, 00:23](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:04, 00:15](855 MB) -PASS -- TEST 'regional_wofs_intel' [15:03, 00:52](1576 MB) - -PASS -- COMPILE 'rrfs_intel' [21:41, 20:26] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [33:37, 01:42](914 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:38, 01:03](1087 MB) -PASS -- TEST 'rap_decomp_intel' [33:37, 01:26](913 MB) -PASS -- TEST 'rap_2threads_intel' [33:37, 01:45](997 MB) -PASS -- TEST 'rap_restart_intel' [24:34, 01:33](785 MB) -PASS -- TEST 'rap_sfcdiff_intel' [33:37, 02:10](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [33:37, 01:55](911 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [24:03, 01:43](782 MB) -PASS -- TEST 'hrrr_control_intel' [33:37, 01:02](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [33:37, 00:56](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [33:38, 01:24](991 MB) -PASS -- TEST 'hrrr_control_restart_intel' [28:32, 01:05](737 MB) -PASS -- TEST 'rrfs_v1beta_intel' [33:37, 02:08](907 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [33:37, 01:00](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [33:37, 01:17](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [11:25, 11:05] -PASS -- TEST 'control_csawmg_intel' [40:52, 00:29](872 MB) -PASS -- TEST 'control_ras_intel' [40:52, 00:52](565 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:31] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [42:52, 00:55](1572 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:34, 13:52] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [33:09, 02:03](1774 MB) -PASS -- TEST 'regional_control_faster_intel' [32:39, 00:21](848 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [19:35, 18:23] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [23:16, 01:14](1499 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [23:16, 01:17](1501 MB) -PASS -- TEST 'control_stochy_debug_intel' [23:16, 00:44](701 MB) -PASS -- TEST 'control_lndp_debug_intel' [23:16, 01:00](703 MB) -PASS -- TEST 'control_csawmg_debug_intel' [23:16, 00:26](1012 MB) -PASS -- TEST 'control_ras_debug_intel' [23:16, 01:01](711 MB) -PASS -- TEST 'control_diag_debug_intel' [23:16, 01:12](1559 MB) -PASS -- TEST 'control_debug_p8_intel' [23:16, 00:54](1796 MB) -PASS -- TEST 'regional_debug_intel' [23:15, 00:11](903 MB) -PASS -- TEST 'rap_control_debug_intel' [23:16, 00:44](1084 MB) -PASS -- TEST 'hrrr_control_debug_intel' [23:16, 00:49](1078 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [23:16, 00:45](1087 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [23:16, 00:42](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [23:16, 00:43](1082 MB) -PASS -- TEST 'rap_diag_debug_intel' [23:16, 00:34](1164 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [23:16, 00:37](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [23:13, 00:36](1090 MB) -PASS -- TEST 'rap_lndp_debug_intel' [14:24, 00:47](1086 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [14:24, 00:51](1085 MB) -PASS -- TEST 'rap_noah_debug_intel' [14:24, 00:54](1082 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [13:28, 00:42](1082 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:25, 00:25](1080 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [12:05, 00:47](1078 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:45, 00:33](1090 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:22, 00:41](1090 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:21, 01:51](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [22:43, 22:00] ( 825 warnings 1 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_wam_debug_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:33, 13:32] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [25:29, 01:16](954 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [25:28, 01:20](790 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [25:28, 02:00](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [25:28, 01:49](856 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [25:29, 02:17](844 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [25:28, 01:51](786 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:09, 01:34](688 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:05, 00:17](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:42, 22:30] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:46, 01:05](1003 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:48, 01:00](1009 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:47, 00:47](887 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [18:44, 17:47] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:44, 01:21](812 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:59, 31:28] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [01:37, 00:55](964 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [01:37, 01:04](960 MB) -PASS -- TEST 'conus13km_debug_intel' [01:37, 01:05](1056 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [01:37, 00:57](725 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [01:38, 00:23](1057 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [01:37, 01:00](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:35, 10:24] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:11, 00:56](991 MB) - -PASS -- COMPILE 'hafsw_intel' [22:37, 22:21] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:18, 02:04](615 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:18, 01:09](972 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [05:16, 01:37](664 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [05:16, 01:30](698 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [05:17, 01:56](711 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:16, 01:03](389 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [05:17, 02:01](405 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:17, 01:35](285 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [05:20, 02:14](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:16, 00:37](413 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 00:52](416 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:18, 00:56](494 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:17, 00:28](325 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [19:41, 19:23] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [05:49, 01:16](527 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [25:43, 25:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [57:36, 01:33](530 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [57:36, 01:32](712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:36, 14:05] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [06:56, 00:56](708 MB) - -PASS -- COMPILE 'hafs_all_intel' [21:39, 20:53] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [56:30, 01:49](662 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [56:30, 01:44](648 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [56:28, 00:21](880 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 11:09] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 00:46](1824 MB) - -PASS -- COMPILE 'atml_intel' [26:48, 25:34] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:30, 14:15] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [16:30, 15:25] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [50:22, 01:02](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [50:22, 01:34](2904 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [50:22, 01:21](2920 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:46] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [57:05, 01:30](4437 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:29, 01:41](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:30, 12:07] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [39:29, 02:01](1820 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 01:51](1836 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [21:14, 02:11](985 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:30, 01:31](1801 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:34, 17:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [34:25, 01:06](1820 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [46:40, 01:40](1836 MB) + +PASS -- COMPILE 's2swa_intel' [11:29, 11:13] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:34](3135 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 01:52](3133 MB) +PASS -- TEST 'cpld_restart_p8_intel' [32:17, 01:01](3064 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:31](3152 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [32:16, 00:56](3082 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:08](3369 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:34](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:40](3077 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:53](3129 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [40:39, 04:31](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 05:44](4273 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 01:53](3114 MB) + +PASS -- COMPILE 's2sw_intel' [14:36, 13:53] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [51:12, 00:52](1830 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:12, 00:59](1896 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:41, 21:51] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:17, 01:10](1899 MB) + +PASS -- COMPILE 's2s_intel' [11:29, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [40:29, 01:04](2925 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [40:29, 01:28](2935 MB) +PASS -- TEST 'cpld_restart_c48_intel' [36:27, 01:04](2347 MB) + +PASS -- COMPILE 's2swa_faster_intel' [27:47, 27:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [24:11, 01:53](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:45, 21:13] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:08, 00:54](1837 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [26:43, 01:18](1000 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 01:19](1806 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:29, 16:02] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 01:50](1863 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:35, 21:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [18:53, 00:23](571 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [18:53, 00:28](1463 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:53, 00:24](1475 MB) +PASS -- TEST 'control_latlon_intel' [18:53, 00:24](1469 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:53, 00:32](1468 MB) +PASS -- TEST 'control_c48_intel' [18:52, 01:00](1592 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [18:52, 00:51](716 MB) +PASS -- TEST 'control_c192_intel' [18:53, 00:28](1584 MB) +PASS -- TEST 'control_c384_intel' [18:57, 01:25](1900 MB) +PASS -- TEST 'control_c384gdas_intel' [18:57, 02:04](1086 MB) +PASS -- TEST 'control_stochy_intel' [17:46, 00:26](529 MB) +PASS -- TEST 'control_stochy_restart_intel' [15:18, 01:02](332 MB) +PASS -- TEST 'control_lndp_intel' [17:46, 00:27](524 MB) +PASS -- TEST 'control_iovr4_intel' [17:46, 00:42](525 MB) +PASS -- TEST 'control_iovr5_intel' [17:34, 00:43](522 MB) +PASS -- TEST 'control_p8_intel' [17:14, 02:02](1767 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [16:48, 02:04](1767 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [15:34, 01:56](1778 MB) +PASS -- TEST 'control_restart_p8_intel' [11:38, 00:40](919 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:19, 01:34](1768 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:18, 01:05](922 MB) +PASS -- TEST 'control_decomp_p8_intel' [15:11, 01:30](1762 MB) +PASS -- TEST 'control_2threads_p8_intel' [15:07, 00:50](1850 MB) +PASS -- TEST 'control_p8_lndp_intel' [15:05, 01:16](1773 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [15:00, 02:01](1829 MB) +PASS -- TEST 'control_p8_mynn_intel' [14:27, 01:47](1774 MB) +PASS -- TEST 'merra2_thompson_intel' [14:21, 01:43](1770 MB) +PASS -- TEST 'regional_control_intel' [14:13, 01:14](851 MB) +PASS -- TEST 'regional_restart_intel' [07:27, 00:26](852 MB) +PASS -- TEST 'regional_decomp_intel' [14:04, 00:53](861 MB) +PASS -- TEST 'regional_2threads_intel' [13:51, 00:53](908 MB) +PASS -- TEST 'regional_noquilt_intel' [13:50, 00:19](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:25, 01:15](851 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:16, 01:13](851 MB) +PASS -- TEST 'regional_wofs_intel' [13:16, 00:56](1576 MB) + +PASS -- COMPILE 'rrfs_intel' [17:33, 16:31] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [22:56, 01:36](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:57, 01:07](1098 MB) +PASS -- TEST 'rap_decomp_intel' [22:56, 01:23](913 MB) +PASS -- TEST 'rap_2threads_intel' [22:56, 01:41](998 MB) +PASS -- TEST 'rap_restart_intel' [13:13, 01:15](783 MB) +PASS -- TEST 'rap_sfcdiff_intel' [22:56, 02:14](909 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:56, 02:00](913 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:13, 01:40](782 MB) +PASS -- TEST 'hrrr_control_intel' [22:56, 01:03](906 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [22:56, 00:56](908 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [22:57, 01:23](990 MB) +PASS -- TEST 'hrrr_control_restart_intel' [12:51, 01:09](739 MB) +PASS -- TEST 'rrfs_v1beta_intel' [22:56, 02:11](906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [22:56, 00:55](1872 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:56, 01:08](1859 MB) + +PASS -- COMPILE 'csawmg_intel' [14:29, 14:07] +PASS -- TEST 'control_csawmg_intel' [24:59, 00:30](875 MB) +PASS -- TEST 'control_ras_intel' [24:59, 00:56](564 MB) + +PASS -- COMPILE 'wam_intel' [14:30, 13:25] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [24:58, 00:55](1565 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:15] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [12:09, 01:56](1761 MB) +PASS -- TEST 'regional_control_faster_intel' [12:00, 00:27](847 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [23:38, 23:17] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 01:19](1498 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:30, 01:25](1504 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:30, 00:47](700 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:30, 01:05](701 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:30, 00:24](1009 MB) +PASS -- TEST 'control_ras_debug_intel' [06:30, 01:03](710 MB) +PASS -- TEST 'control_diag_debug_intel' [06:30, 01:18](1562 MB) +PASS -- TEST 'control_debug_p8_intel' [06:30, 00:56](1794 MB) +PASS -- TEST 'regional_debug_intel' [06:29, 01:05](890 MB) +PASS -- TEST 'rap_control_debug_intel' [06:30, 00:46](1086 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 00:56](1077 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 00:47](1085 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 00:47](1088 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:06, 00:45](1086 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:00, 00:28](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 00:34](1082 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 00:30](1087 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:14, 00:37](1087 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 00:41](1084 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:57, 00:48](1080 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 00:41](1084 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:29, 00:26](1078 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [03:30, 00:45](1081 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [03:17, 00:29](1093 MB) +PASS -- TEST 'rap_flake_debug_intel' [03:12, 00:42](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:58, 01:54](1090 MB) + +PASS -- COMPILE 'wam_debug_intel' [23:46, 23:14] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [02:30, 01:13](1595 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:30, 13:07] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:16, 01:29](957 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 01:29](787 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:54, 02:10](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 01:35](858 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 02:25](847 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:00, 01:52](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:20, 01:41](692 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:55, 00:19](670 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:44, 14:38] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:12, 01:11](1005 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:50](1011 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:54, 00:40](884 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:32, 15:14] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:38, 01:44](809 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:05, 28:07] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [53:50, 00:57](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [53:50, 01:00](958 MB) +PASS -- TEST 'conus13km_debug_intel' [53:50, 01:08](1049 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [53:50, 00:43](723 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [53:50, 00:21](1051 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:50, 01:06](1122 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:24] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 00:50](996 MB) + +PASS -- COMPILE 'hafsw_intel' [16:33, 15:29] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [01:22, 01:58](616 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:23, 00:58](964 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:20, 01:34](661 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:30](703 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:54, 01:25](715 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:37, 01:23](396 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:53, 01:58](403 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [59:42, 01:25](287 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:45, 02:00](374 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:40, 01:17](426 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:28, 01:10](417 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:27, 00:59](496 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:20, 00:55](318 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [09:42, 09:07] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:36, 01:13](523 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:41, 18:52] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [49:35, 00:47](534 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:35, 01:39](713 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:30, 14:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:10, 00:57](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:42, 18:15] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [48:45, 01:16](660 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:45, 02:09](647 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:43, 00:26](882 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:38, 09:59] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [55:51, 01:35](1827 MB) + +PASS -- COMPILE 'atml_intel' [21:52, 21:07] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [14:30, 13:53] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [22:36, 21:56] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [38:44, 01:21](3025 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [38:44, 01:51](2906 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:44, 01:43](2921 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:54] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [46:29, 00:53](4438 MB) SYNOPSIS: -Starting Date/Time: 20240731 13:48:54 -Ending Date/Time: 20240731 15:30:17 -Total Time: 01h:42m:25s +Starting Date/Time: 20240805 16:07:37 +Ending Date/Time: 20240805 17:54:48 +Total Time: 01h:47m:56s Compiles Completed: 33/33 -Tests Completed: 155/156 -Failed Tests: -* TEST control_wam_debug_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h2/emc/nems/noscrub/brian.curtis/git/dpsarmie/ufs-weather-model/tests/logs/log_wcoss2/run_control_wam_debug_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF WCOSS2 REGRESSION TESTING LOG==== -====START OF WCOSS2 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -619de9c8122177396890d13cd5c4ba97ccb5032b - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 9452de8c3cb43fb2628f0722e6a51f79429d2160 CICE-interface/CICE (CICE6.0.0-450-g9452de8) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - b32aea7bf3f9e2a774afa23d3386c88156cd1182 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10051-gb32aea7bf) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - d9b3172f4197c65d471662c6952a668152d71230 WW3 (6.07.1-345-gd9b3172f) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_238998 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-n) - RUN SINGLE TEST: control_wam_debug -* (-e) - USE ECFLOW - -PASS -- COMPILE 'wam_debug_intel' [04:17, 03:54] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [40:01, 01:01](1599 MB) - -SYNOPSIS: -Starting Date/Time: 20240731 16:15:42 -Ending Date/Time: 20240731 16:37:16 -Total Time: 00h:21m:56s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 156/156 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/rt.conf b/tests/rt.conf index 36679f99e1..be3a401f72 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -36,7 +36,7 @@ COMPILE | s2swa_32bit_pdlib_sfs | intel | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DC RUN | cpld_control_sfs | - noaacloud | baseline | COMPILE | s2swa_32bit_pdlib_debug | intel | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | - noaacloud jet | fv3 | -RUN | cpld_debug_gfsv17 | - noaacloud jet derecho | baseline | +RUN | cpld_debug_gfsv17 | - noaacloud jet | baseline | COMPILE | s2swa | intel | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | RUN | cpld_control_p8 | - noaacloud | baseline | From fcf0022aaa522f859080da2673dc538f78068163 Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Thu, 8 Aug 2024 10:28:23 -0600 Subject: [PATCH 8/8] In fv3atm: convert GFS DDTs from blocked data structures to contiguous arrays (#2183) * UFSWM - In fv3atm and submodules, convert internal GFS DDTs from blocked data structures to contiguous arrays. This excludes the (external) `GFS_extdiag` and `GFS_restart` DDTs. * AQM - * CDEPS - * CICE - * CMEPS - * CMakeModules - * FV3 - Convert GFS DDTs from blocked data structures to contiguous arrays (not including GFS_restart and GFS_extdiag DDTs) * ccpp-physics - Convert GFS DDTs from blocked data structures to contiguous arrays (affects `GFS_debug.{F90,meta} only`) * atmos_cubed_sphere - Convert GFS DDTs from blocked data structures to contiguous arrays and remove IPD_Data super DDT * GOCART - * HYCOM - * MOM6 - * NOAHMP - * WW3 - * stochastic_physics - --- FV3 | 2 +- cmake/Intel.cmake | 3 +- tests/fv3_conf/compile_slurm.IN_gaea | 1 + tests/logs/OpnReqTests_control_p8_hera.log | 62 +- ...sts_cpld_control_nowave_noaero_p8_hera.log | 30 +- .../OpnReqTests_regional_control_hera.log | 38 +- tests/logs/RegressionTests_derecho.log | 620 ++++++-------- tests/logs/RegressionTests_gaea.log | 649 +++++++------- tests/logs/RegressionTests_hera.log | 790 ++++++++---------- tests/logs/RegressionTests_hercules.log | 741 ++++++++-------- tests/logs/RegressionTests_jet.log | 537 ++++++------ tests/logs/RegressionTests_orion.log | 554 ++++++------ tests/logs/RegressionTests_wcoss2.log | 468 +++++------ tests/rt.conf | 2 +- tests/test_changes.list | 76 -- tests/tests/regional_atmaq_debug | 2 +- 16 files changed, 2232 insertions(+), 2343 deletions(-) diff --git a/FV3 b/FV3 index 0495c19204..aa1484378d 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 0495c19204325401ccba2943f99e65ee9190f07d +Subproject commit aa1484378de6cc665910b63a691a1475809f6bb3 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 73564f1783..6b8cae0ef6 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -20,7 +20,8 @@ endif() if(DEBUG) add_definitions(-DDEBUG) - set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") + #set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") + set(CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} -O0 -check -check noarg_temp_created -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -ftrapuv -init=snan,arrays") set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") else() if(FASTER) diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaea index 97aceeebae..29c259b092 100644 --- a/tests/fv3_conf/compile_slurm.IN_gaea +++ b/tests/fv3_conf/compile_slurm.IN_gaea @@ -7,6 +7,7 @@ #SBATCH --partition=eslogin_c5 #SBATCH --nodes=1 #SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=4G #SBATCH --time=180 #SBATCH --job-name="@[JBNME]" diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 24f6aeb1e1..a79ca74ba1 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 13:20:26 UTC 2024 +Wed Aug 7 16:04:22 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 275.232912 - 0: The maximum resident set size (KB) = 1454960 + 0: The total amount of wall time = 291.553157 + 0: The maximum resident set size (KB) = 1432740 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 990.929727 - 0: The maximum resident set size (KB) = 1452048 + 0: The total amount of wall time = 978.453839 + 0: The maximum resident set size (KB) = 1404508 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 249.842884 - 0: The maximum resident set size (KB) = 1447064 + 0: The total amount of wall time = 250.835851 + 0: The maximum resident set size (KB) = 1418368 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/mpi_mpi +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 251.717479 - 0: The maximum resident set size (KB) = 1430488 + 0: The total amount of wall time = 251.336453 + 0: The maximum resident set size (KB) = 1419812 Test mpi PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - 0: The total amount of wall time = 250.675414 - 0: The maximum resident set size (KB) = 1431300 + 0: The total amount of wall time = 250.225330 + 0: The maximum resident set size (KB) = 1419120 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 248.017536 - 0: The maximum resident set size (KB) = 1436404 + 0: The total amount of wall time = 251.764603 + 0: The maximum resident set size (KB) = 1418912 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_402797/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3245717/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 = 249.324976 - 0: The maximum resident set size (KB) = 1431388 + 0: The total amount of wall time = 250.616791 + 0: The maximum resident set size (KB) = 1405864 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 14:26:37 UTC 2024 -Elapsed time: 01h:06m:13s. Have a nice day! +Wed Aug 7 17:12:51 UTC 2024 +Elapsed time: 01h:08m:29s. 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 057d916e36..e61bb4928d 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 20:25:41 UTC 2024 +Wed Aug 7 14:58:27 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/dbg_base_dbg_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1523760/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 = 1456.394419 - 0: The maximum resident set size (KB) = 1531368 + 0: The total amount of wall time = 1347.758320 + 0: The maximum resident set size (KB) = 1508348 Test dbg_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/rst_rst +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1523760/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 = 434.948106 - 0: The maximum resident set size (KB) = 1537108 + 0: The total amount of wall time = 427.699439 + 0: The maximum resident set size (KB) = 1502940 Test rst PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_3648314/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1523760/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 = 436.362270 - 0: The maximum resident set size (KB) = 1517024 + 0: The total amount of wall time = 461.709298 + 0: The maximum resident set size (KB) = 1511784 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 22:04:47 UTC 2024 -Elapsed time: 01h:39m:08s. Have a nice day! +Wed Aug 7 16:04:22 UTC 2024 +Elapsed time: 01h:05m:56s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 03e41e3bb2..61c8ee0c7e 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Aug 5 17:40:12 UTC 2024 +Wed Aug 7 12:28:17 UTC 2024 Start Operation Requirement Test -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/bit_base_bit_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_538515/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 = 1408.629188 - 0: The maximum resident set size (KB) = 768992 + 0: The total amount of wall time = 1405.955778 + 0: The maximum resident set size (KB) = 767568 Test bit_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/dcp_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_538515/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 = 2173.644662 - 0: The maximum resident set size (KB) = 708900 + 0: The total amount of wall time = 2160.154552 + 0: The maximum resident set size (KB) = 703612 Test dcp PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/std_base_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_538515/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 = 2162.607714 - 0: The maximum resident set size (KB) = 716328 + 0: The total amount of wall time = 2253.393184 + 0: The maximum resident set size (KB) = 716020 Test std_base PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_1711172/thr_thr +baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_538515/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 = 2154.653116 - 0: The maximum resident set size (KB) = 707252 + 0: The total amount of wall time = 2176.355099 + 0: The maximum resident set size (KB) = 724868 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Aug 5 20:20:41 UTC 2024 -Elapsed time: 02h:40m:29s. Have a nice day! +Wed Aug 7 14:58:26 UTC 2024 +Elapsed time: 02h:30m:10s. Have a nice day! diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 338b1c2749..5062b3ac4e 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,31 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +c34693f57b7804adb9fae55d41f8519a32801059 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,351 +36,285 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_117686 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_62932 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:16, 21:01] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:22, 07:10](3202 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:18, 23:41] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:53, 15:05](1914 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:37, 15:56](1948 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:33, 07:51](1069 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:40, 16:54](1890 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:18, 23:07] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:07, 14:25](1916 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:15, 11:12] ( 1530 warnings 1948 remarks ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intel' [, ]( MB) - -PASS -- COMPILE 's2swa_intel' [22:16, 20:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [11:24, 08:22](3225 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:37, 08:14](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:34, 04:05](3158 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:24, 07:52](3254 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:24, 03:48](3188 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:19, 08:05](3733 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:08, 07:10](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:48](3540 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:41, 07:53](3234 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:54, 11:38](3811 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [14:30, 06:16](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:20, 12:01](4525 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:36, 07:32](4671 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:09, 07:54](3209 MB) - -PASS -- COMPILE 's2sw_intel' [20:15, 19:24] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:28, 05:01](1924 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:53, 05:04](1991 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:13, 11:09] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:54, 08:12](3295 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:15, 10:31] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 06:28](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:16, 15:18] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:28](1991 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 15:27] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:36](2949 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:12, 02:21](2948 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:07, 01:47](2365 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:21, 25:40] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:22, 06:25](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:21, 21:41] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:43, 15:38](1946 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:03, 08:07](1109 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:47, 17:10](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:18, 10:38] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:33, 24:03](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:19, 15:37] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:37](673 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:53, 02:35](1573 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:24, 02:26](1567 MB) -PASS -- TEST 'control_latlon_intel' [04:04, 02:24](1564 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:04, 02:25](1568 MB) -PASS -- TEST 'control_c48_intel' [08:18, 06:02](1620 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:32, 05:16](735 MB) -PASS -- TEST 'control_c192_intel' [11:45, 09:08](1688 MB) -PASS -- TEST 'control_c384_intel' [15:37, 09:08](2011 MB) -PASS -- TEST 'control_c384gdas_intel' [15:56, 07:36](1195 MB) -PASS -- TEST 'control_stochy_intel' [02:39, 01:24](628 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:41, 00:51](436 MB) -PASS -- TEST 'control_lndp_intel' [02:40, 01:19](627 MB) -PASS -- TEST 'control_iovr4_intel' [03:49, 02:04](625 MB) -PASS -- TEST 'control_iovr5_intel' [03:47, 02:07](619 MB) -PASS -- TEST 'control_p8_intel' [06:29, 03:51](1864 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:46, 03:32](1873 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:47, 03:37](1864 MB) -PASS -- TEST 'control_restart_p8_intel' [04:15, 02:05](1015 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:37, 03:29](1861 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:24, 02:11](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:36, 03:43](1864 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:36, 03:36](1951 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:26, 05:09](1868 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:16](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:42, 03:24](1876 MB) -PASS -- TEST 'merra2_thompson_intel' [06:23, 03:44](1868 MB) -PASS -- TEST 'regional_control_intel' [06:53, 05:17](872 MB) -PASS -- TEST 'regional_restart_intel' [04:58, 03:01](872 MB) -PASS -- TEST 'regional_decomp_intel' [06:53, 05:24](871 MB) -PASS -- TEST 'regional_noquilt_intel' [06:55, 05:09](1192 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:53, 05:03](872 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:58, 05:08](881 MB) -PASS -- TEST 'regional_wofs_intel' [06:53, 05:40](1607 MB) - -PASS -- COMPILE 'rrfs_intel' [14:19, 12:52] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:32, 06:16](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:48, 03:53](1197 MB) -PASS -- TEST 'rap_decomp_intel' [08:32, 06:34](1005 MB) -PASS -- TEST 'rap_2threads_intel' [08:32, 05:49](1099 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:13](880 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:33, 06:17](1007 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:33, 06:35](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:09, 04:37](882 MB) -PASS -- TEST 'hrrr_control_intel' [05:15, 03:23](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:15, 03:17](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 03:02](1088 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:47, 01:46](836 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:11](999 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:11, 07:31](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:12, 07:04](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [12:19, 11:07] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:03, 06:36](965 MB) -PASS -- TEST 'control_ras_intel' [04:39, 03:05](659 MB) - -PASS -- COMPILE 'wam_intel' [11:18, 10:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:38, 11:36](1655 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:19, 17:02] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:44, 03:17](1870 MB) -PASS -- TEST 'regional_control_faster_intel' [06:56, 04:46](879 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [13:20, 12:12] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:07, 02:32](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:03, 02:31](1612 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:37, 02:50](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:32, 02:38](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:56, 04:45](1123 MB) -PASS -- TEST 'control_ras_debug_intel' [04:31, 02:36](817 MB) -PASS -- TEST 'control_diag_debug_intel' [05:06, 02:33](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [06:05, 03:51](1903 MB) -PASS -- TEST 'regional_debug_intel' [18:57, 17:18](927 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 04:40](1192 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:33, 04:42](1189 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:43, 04:37](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:38](1196 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:45, 05:06](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:18, 05:03](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:39, 04:54](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:44, 04:50](1193 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:38, 04:49](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:33, 04:42](1191 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:32, 04:38](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 04:54](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:41, 07:56](1189 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:42, 04:33](1189 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:41, 05:26](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:39, 05:01](1192 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:15, 08:02](1198 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:12, 06:43] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:22, 12:15](1699 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:13, 10:51] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 04:03](1057 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:08, 06:17](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:59, 03:43](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:24, 05:21](942 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 03:00](936 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 03:02](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:13, 04:16](792 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:34, 01:32](774 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:19, 14:46] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 02:03](1084 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:35, 00:56](1083 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:30, 01:06](972 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 10:52] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:01, 03:53](910 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:17, 06:42] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 04:27](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:44, 04:25](1067 MB) -PASS -- TEST 'conus13km_debug_intel' [15:59, 13:47](1150 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:08, 13:25](834 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:47, 07:53](1150 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:35, 13:35](1223 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:17, 06:28] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:45, 04:38](1094 MB) - -PASS -- COMPILE 'hafsw_intel' [19:19, 18:05] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:31](715 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:09, 05:04](1069 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:25](777 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:20](799 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:00, 12:27](807 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:10, 04:38](476 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:39, 05:42](492 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:03, 02:15](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:51, 06:09](461 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:58, 03:17](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:17, 03:05](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:25, 03:48](589 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:12](429 MB) -PASS -- TEST 'gnv1_nested_intel' [07:35, 04:02](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [08:17, 07:44] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:16, 12:05](636 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [27:23, 26:15] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:27, 07:22](632 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:01, 07:34](686 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 19:19] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:57, 05:40](682 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:19, 15:25] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:02](750 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:38, 06:02](741 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:26, 16:52](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:19, 08:24] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:40, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:32](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:49, 02:19](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:39, 02:23](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:27](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:42](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:35, 02:43](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:31](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:21, 05:46](698 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:01, 05:44](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:34, 03:52](2034 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:39, 03:52](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:19, 05:56] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:34, 05:05](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:17, 08:15] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:36, 02:28](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:18, 02:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:36, 01:06](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:09, 01:03](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:44](453 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:01] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:26, 03:54](1916 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:18, 11:40] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:32, 04:13](1899 MB) - -PASS -- COMPILE 'atml_intel' [15:21, 14:46] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:36, 06:45](1887 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:25, 06:20](1891 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:24, 03:38](1018 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:19, 09:25] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:13, 06:09](1936 MB) - -PASS -- COMPILE 'atmw_intel' [14:21, 13:42] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:07](1890 MB) - -PASS -- COMPILE 'atmaero_intel' [13:18, 12:11] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:00, 04:32](3122 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:55, 04:25](2993 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:36, 04:34](3008 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:17, 07:29] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:32, 21:59](4530 MB) +PASS -- COMPILE 's2swa_32bit_intel' [55:29, 20:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:15, 05:37](3206 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [57:29, 22:54] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:20, 14:38](1910 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:17, 15:54](1933 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:12, 07:53](1077 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:51, 16:25](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [57:30, 22:55] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:19, 14:10](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [47:48, 11:21] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:36, 22:39](1941 MB) + +PASS -- COMPILE 's2swa_intel' [54:30, 20:47] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:22, 06:21](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [35:17, 06:15](3219 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:50, 04:05](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:40, 06:14](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:09, 04:01](3179 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [30:17, 05:58](3734 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:20, 06:09](3217 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:08, 05:08](3536 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:35, 06:19](3228 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:10, 09:37](3816 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:24](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:08, 10:20](4518 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:20, 06:59](4672 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:14, 06:07](3208 MB) + +PASS -- COMPILE 's2sw_intel' [53:29, 19:24] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:50, 04:45](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:58, 05:06](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [47:48, 11:18] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:00, 08:10](3304 MB) + +PASS -- COMPILE 's2sw_debug_intel' [46:29, 10:38] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [40:33, 05:56](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [51:29, 15:44] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:06, 04:46](1986 MB) + +PASS -- COMPILE 's2s_intel' [51:31, 15:45] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [44:37, 06:39](2886 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [39:38, 02:21](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:18, 01:33](2311 MB) + +PASS -- COMPILE 's2swa_faster_intel' [07:45, 23:26] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:22, 06:16](3234 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [04:47, 21:33] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:01, 14:44](1924 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:05, 07:46](1103 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:48, 16:34](1894 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [53:44, 10:43] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 24:35](1947 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [53:42, 13:46] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:37, 03:28](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:56, 02:26](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:19, 02:28](1563 MB) +PASS -- TEST 'control_latlon_intel' [05:57, 02:24](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:02, 02:26](1565 MB) +PASS -- TEST 'control_c48_intel' [09:04, 06:07](1573 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:40, 05:15](710 MB) +PASS -- TEST 'control_c192_intel' [11:40, 08:48](1679 MB) +PASS -- TEST 'control_c384_intel' [16:20, 08:53](1946 MB) +PASS -- TEST 'control_c384gdas_intel' [14:12, 07:10](1177 MB) +PASS -- TEST 'control_stochy_intel' [02:40, 01:27](622 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 00:52](440 MB) +PASS -- TEST 'control_lndp_intel' [02:40, 01:22](621 MB) +PASS -- TEST 'control_iovr4_intel' [04:49, 02:06](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:35, 02:06](622 MB) +PASS -- TEST 'control_p8_intel' [06:38, 03:02](1855 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:35, 03:04](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:34, 03:02](1850 MB) +PASS -- TEST 'control_restart_p8_intel' [04:14, 01:59](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:17, 03:10](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:13, 02:07](1002 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:16, 03:04](1844 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:27, 03:03](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:13, 05:01](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:33, 03:56](1909 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:34, 03:12](1866 MB) +PASS -- TEST 'merra2_thompson_intel' [06:30, 03:32](1861 MB) +PASS -- TEST 'regional_control_intel' [06:54, 04:54](865 MB) +PASS -- TEST 'regional_restart_intel' [04:50, 02:56](858 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 05:04](865 MB) +PASS -- TEST 'regional_noquilt_intel' [06:54, 04:45](1178 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:58, 04:46](870 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:00, 04:51](864 MB) +PASS -- TEST 'regional_wofs_intel' [08:00, 05:39](1595 MB) + +PASS -- COMPILE 'rrfs_intel' [51:40, 12:30] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:20, 06:10](1004 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:43, 03:42](1163 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 06:24](1002 MB) +PASS -- TEST 'rap_2threads_intel' [10:28, 05:42](1092 MB) +PASS -- TEST 'rap_restart_intel' [05:13, 03:15](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:21, 06:07](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:22, 06:25](1006 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:12, 04:36](875 MB) +PASS -- TEST 'hrrr_control_intel' [14:14, 03:12](1002 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:14, 03:21](999 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [13:17, 02:47](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:41, 01:46](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:28, 06:00](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:53, 07:26](1952 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:53, 07:12](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [48:41, 11:24] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [12:09, 06:27](957 MB) +PASS -- TEST 'control_ras_intel' [07:34, 02:54](656 MB) + +PASS -- COMPILE 'wam_intel' [47:39, 11:09] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:16, 10:10](1655 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [47:40, 11:38] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [13:32, 02:49](1853 MB) +PASS -- TEST 'regional_control_faster_intel' [07:02, 04:43](859 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [47:40, 13:52] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:12, 02:34](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:15, 02:33](1612 MB) +PASS -- TEST 'control_stochy_debug_intel' [11:39, 02:54](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [10:39, 02:37](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:11, 04:32](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [10:38, 02:39](815 MB) +PASS -- TEST 'control_diag_debug_intel' [11:41, 02:39](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [12:14, 03:27](1902 MB) +PASS -- TEST 'regional_debug_intel' [19:04, 16:31](915 MB) +PASS -- TEST 'rap_control_debug_intel' [13:40, 04:54](1186 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:49, 04:37](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:35, 04:42](1188 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:27, 04:43](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:42, 04:40](1186 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:05, 04:59](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 04:46](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 04:44](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:46, 04:44](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:41, 04:44](1192 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:36, 04:43](1185 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:40, 04:47](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:33, 07:31](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:37, 04:36](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:43, 05:32](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:41, 04:44](1188 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:09, 07:57](1191 MB) + +PASS -- COMPILE 'wam_debug_intel' [40:35, 07:01] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:57, 12:22](1684 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:23, 11:10] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:28](1016 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:06, 05:07](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:04, 02:46](884 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:09, 04:46](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:24](935 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:19, 02:53](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:11, 03:54](793 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:48, 01:32](778 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:30, 11:02] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:48, 01:53](1075 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:33, 00:58](1071 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:33, 01:06](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [24:24, 11:07] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:13, 03:39](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [20:22, 07:22] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:33, 04:38](1062 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:40, 04:27](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [15:35, 13:28](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:24, 13:39](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:29, 07:50](1140 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:28, 13:52](1211 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [18:26, 07:00] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:39, 04:35](1086 MB) + +PASS -- COMPILE 'hafsw_intel' [29:23, 17:09] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:31, 04:33](699 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:59, 05:02](1047 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:03, 06:26](753 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 10:58](766 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:41, 12:10](797 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:35, 04:39](460 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 05:41](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:06, 02:17](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:35, 06:05](452 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:03, 03:17](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:16, 03:03](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:21, 03:48](570 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:33, 01:13](421 MB) +PASS -- TEST 'gnv1_nested_intel' [07:33, 04:12](1701 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [18:20, 08:24] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:39, 12:00](625 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [27:22, 16:52] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:10](614 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:27, 07:14](674 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [23:22, 18:17] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:26, 05:23](668 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:15, 15:31] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:46, 05:41](740 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:53, 05:44](722 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:07](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:17, 08:10] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:44, 02:28](770 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:25, 01:32](759 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:35, 02:21](648 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:31, 02:24](647 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:44, 02:25](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:43, 02:28](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:38, 02:29](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:38, 02:19](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:52, 05:43](698 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:18, 05:42](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:29](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:28, 03:54](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:30, 03:53](2035 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:17, 05:37] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:27, 05:10](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:22, 08:15] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:33, 02:29](756 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:17, 02:37] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:44, 01:09](309 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:05](450 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:41, 00:45](451 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:16] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:38, 03:50](1902 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:18, 12:14] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:30, 03:45](1898 MB) + +PASS -- COMPILE 'atml_intel' [15:19, 14:17] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:37, 07:14](1883 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:40, 07:06](1878 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:12, 04:13](1033 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:18, 10:26] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:35, 06:24](1919 MB) + +PASS -- COMPILE 'atmw_intel' [14:20, 13:22] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:22, 02:21](1875 MB) + +PASS -- COMPILE 'atmaero_intel' [13:18, 12:37] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:48, 04:12](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:46, 04:19](3000 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:12, 04:23](3007 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:19, 07:52] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [26:13, 21:53](4538 MB) SYNOPSIS: -Starting Date/Time: 20240805 06:52:14 -Ending Date/Time: 20240805 08:28:48 -Total Time: 01h:37m:26s +Starting Date/Time: 20240806 14:30:46 +Ending Date/Time: 20240806 18:20:14 +Total Time: 03h:50m:18s Compiles Completed: 41/41 -Tests Completed: 183/184 -Failed Tests: -* TEST cpld_debug_gfsv17_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /glade/work/zshrader/rt-2370/tests/logs/log_derecho/run_cpld_debug_gfsv17_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF DERECHO REGRESSION TESTING LOG==== -====START OF DERECHO REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) - f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_6646 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [55:26, 11:41] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [28:07, 22:28](1944 MB) - -SYNOPSIS: -Starting Date/Time: 20240805 12:17:56 -Ending Date/Time: 20240805 13:42:51 -Total Time: 01h:25m:29s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 184/184 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index d1fb44cf8b..0b77498111 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,31 +1,361 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_214339 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [22:12, 21:38] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [12:04, 07:24](3207 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:15, 25:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [15:40, 14:00](1914 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:38, 14:59](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:31, 07:46](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [16:40, 14:58](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:12, 25:03] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [14:47, 13:49](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:15, 15:52] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:59, 25:08](1939 MB) + +PASS -- COMPILE 's2swa_intel' [22:12, 21:58] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:54, 08:27](3224 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:56, 08:28](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:58, 05:12](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:54, 08:31](3247 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:56, 05:14](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:56](3460 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:43, 08:26](3222 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 07:26](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:05, 08:29](3223 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 10:34](3453 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:43, 08:21](3604 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:36, 13:10](4209 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:04, 09:17](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:56, 08:00](3211 MB) + +PASS -- COMPILE 's2sw_intel' [21:16, 20:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 06:02](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:50, 06:45](1996 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:11, 16:28] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:58](3280 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:15, 15:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:11, 06:36](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [20:11, 18:38] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:40, 05:32](1993 MB) + +PASS -- COMPILE 's2s_intel' [19:11, 19:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:14, 06:29](2870 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:27, 01:56](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:18, 01:08](2288 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:17, 22:16] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:50, 08:41](3223 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [25:14, 24:56] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:44, 16:17](1926 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:41, 08:00](1085 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:41, 17:58](1903 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [17:15, 16:58] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:30, 26:56](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:16, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:45, 03:54](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:47, 03:12](1565 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:27, 03:12](1565 MB) +PASS -- TEST 'control_latlon_intel' [05:45, 03:08](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:17, 03:09](1563 MB) +PASS -- TEST 'control_c48_intel' [09:15, 06:32](1561 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:48, 05:51](696 MB) +PASS -- TEST 'control_c192_intel' [12:52, 10:11](1671 MB) +PASS -- TEST 'control_c384_intel' [21:09, 18:34](1927 MB) +PASS -- TEST 'control_c384gdas_intel' [18:37, 14:35](1151 MB) +PASS -- TEST 'control_stochy_intel' [02:48, 02:04](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:31, 01:03](425 MB) +PASS -- TEST 'control_lndp_intel' [02:51, 01:51](618 MB) +PASS -- TEST 'control_iovr4_intel' [03:54, 02:41](616 MB) +PASS -- TEST 'control_iovr5_intel' [03:54, 02:43](616 MB) +PASS -- TEST 'control_p8_intel' [07:38, 03:26](1849 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:50, 03:32](1848 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:42, 03:21](1852 MB) +PASS -- TEST 'control_restart_p8_intel' [04:18, 02:17](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:38, 03:26](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:15, 01:47](1013 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:30, 03:21](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:13, 02:51](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:46](1849 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:30, 04:15](1905 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:27, 03:44](1863 MB) +PASS -- TEST 'merra2_thompson_intel' [06:11, 04:09](1856 MB) +PASS -- TEST 'regional_control_intel' [06:11, 05:05](848 MB) +PASS -- TEST 'regional_restart_intel' [03:38, 02:33](847 MB) +PASS -- TEST 'regional_decomp_intel' [06:53, 04:52](851 MB) +PASS -- TEST 'regional_2threads_intel' [05:00, 02:55](989 MB) +PASS -- TEST 'regional_noquilt_intel' [06:24, 04:39](1175 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:23, 04:33](856 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:00, 04:39](832 MB) +PASS -- TEST 'regional_wofs_intel' [06:45, 06:07](1580 MB) + +PASS -- COMPILE 'rrfs_intel' [17:16, 16:46] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:08, 07:04](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:15, 04:10](1152 MB) +PASS -- TEST 'rap_decomp_intel' [10:19, 07:13](1007 MB) +PASS -- TEST 'rap_2threads_intel' [08:41, 06:18](1087 MB) +PASS -- TEST 'rap_restart_intel' [06:53, 03:28](878 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:24, 06:57](1005 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:37](1004 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:13, 04:58](877 MB) +PASS -- TEST 'hrrr_control_intel' [05:14, 03:55](1001 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:04, 03:54](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:01, 03:14](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:59](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:34, 06:45](1000 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:34, 08:38](1960 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:37, 07:54](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [16:16, 15:46] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:47](958 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:33](654 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 15:58] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:19, 12:04](1649 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 15:35] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:30, 03:11](1846 MB) +PASS -- TEST 'regional_control_faster_intel' [05:44, 04:35](844 MB) + +FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atm_debug_dyn32_intel' [, ] +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_CubedSphereGrid_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_stochy_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_lndp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_csawmg_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_ras_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_diag_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'control_debug_p8_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'regional_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_control_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_control_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_gf_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'hrrr_c3_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_drag_suite_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_diag_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_cires_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_unified_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_lndp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_progcld_thompson_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_sfcdiff_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rrfs_v1beta_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_clm_lake_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'rap_flake_debug_intel' [, ]( MB) +SKIPPED: ASSOCIATED COMPILE FAILED -- TEST 'gnv1_c96_no_nest_debug_intel' [, ]( MB) + +PASS -- COMPILE 'wam_debug_intel' [12:12, 11:29] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:17, 13:32](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 13:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:18, 04:13](1010 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:15, 05:48](878 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 03:32](875 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:13, 05:06](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:11, 02:53](922 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 03:33](875 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:12, 04:24](774 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:37, 01:41](757 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 15:09] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:05, 02:36](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:21, 01:10](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:27, 01:26](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:15, 14:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:21](906 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:14, 10:47] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 05:07](1051 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:35, 05:46](1052 MB) +PASS -- TEST 'conus13km_debug_intel' [17:52, 14:11](1136 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:27, 15:08](807 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:14, 08:36](1115 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:15, 15:06](1200 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:15, 13:11] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:40, 05:22](1079 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 19:57] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:37, 05:31](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:00, 04:41](1034 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:03, 07:57](725 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:41, 11:48](762 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:30, 12:52](781 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:32, 05:30](462 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:44, 06:50](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:37, 03:06](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:20, 08:05](429 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:19, 04:01](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:37, 03:38](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:27, 04:59](557 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:49, 01:53](399 MB) +PASS -- TEST 'gnv1_nested_intel' [09:16, 06:00](1706 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:11, 14:43] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:26, 13:10](585 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:14, 18:59] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:40, 07:48](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:33, 07:51](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [21:12, 20:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:28, 06:08](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [20:12, 19:52] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:25, 06:19](720 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:16, 06:25](705 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:19, 20:07](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [15:13, 14:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:28, 02:34](761 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:34, 01:35](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:27, 02:27](638 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:34, 02:27](642 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:33, 02:36](643 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:35, 02:37](750 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:32, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:28, 02:28](638 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:12](692 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:51, 06:03](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:23, 02:36](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:29, 04:40](2028 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:58, 04:42](2028 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 10:26] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:35, 05:31](746 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [16:13, 15:09] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:27, 02:34](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:20, 04:43] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:11, 01:59](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:10, 01:38](456 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:50, 01:04](456 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:18, 17:19] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:38, 05:07](1910 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:12, 14:33] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:44, 04:16](1897 MB) + +PASS -- COMPILE 'atml_intel' [17:16, 16:20] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:47, 07:20](1881 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:47, 07:20](1881 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:59, 04:17](1031 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:16, 12:26] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:33, 06:42](1921 MB) + +PASS -- COMPILE 'atmw_intel' [16:14, 15:50] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:11, 02:24](1883 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 14:54] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:32, 06:19](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:32, 06:44](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:29, 06:48](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:11, 11:10] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [20:39, 18:18](4492 MB) + +SYNOPSIS: +Starting Date/Time: 20240806 23:36:46 +Ending Date/Time: 20240807 01:14:37 +Total Time: 01h:38m:56s +Compiles Completed: 40/41 +Tests Completed: 159/185 +Failed Compiles: +* COMPILE atm_debug_dyn32_intel: FAILED: UNABLE TO FINISH COMPILE +-- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2183/ufs-weather-model/tests/logs/log_gaea/compile_atm_debug_dyn32_intel.log + +NOTES: +A file 'test_changes.list' was generated with list of all failed tests. +You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: FAILURE + +====END OF GAEA REGRESSION TESTING LOG==== +====START OF GAEA REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +43fce6b201a8bffe7e346b1dfb5c724bfc053722 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) + f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) +-1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd +-7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,286 +366,47 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_84360 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_233535 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:13, 16:56] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:36, 07:11](3201 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:13, 22:51] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [46:50, 14:11](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:37, 15:26](1952 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:30, 07:33](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [47:34, 15:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:16, 23:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [50:01, 13:27](1913 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:13, 11:34] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:34, 24:13](1937 MB) - -PASS -- COMPILE 's2swa_intel' [18:13, 17:51] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [28:26, 07:57](3230 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [28:26, 07:50](3226 MB) -PASS -- TEST 'cpld_restart_p8_intel' [31:53, 05:32](3159 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [39:23, 07:56](3245 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [21:29, 05:21](3181 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [34:00, 06:30](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [38:13, 07:45](3221 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [38:13, 07:01](3171 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [39:32, 07:59](3229 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [43:21, 10:16](3447 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [20:25, 07:44](3609 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [47:39, 12:43](4213 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [23:43, 09:49](4366 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [36:10, 07:42](3222 MB) - -PASS -- COMPILE 's2sw_intel' [16:13, 15:49] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:28, 05:11](1937 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:49, 05:12](1996 MB) - -PASS -- COMPILE 's2swa_debug_intel' [11:12, 11:07] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:38, 09:54](3277 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:12, 10:51] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:57, 05:58](1956 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [15:13, 14:29] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [11:39, 05:19](1989 MB) - -PASS -- COMPILE 's2s_intel' [15:13, 14:10] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:16, 06:32](2929 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [09:14, 01:59](2938 MB) -PASS -- TEST 'cpld_restart_c48_intel' [38:37, 01:08](2349 MB) - -PASS -- COMPILE 's2swa_faster_intel' [26:13, 25:54] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [40:45, 07:49](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [22:14, 21:28] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [50:04, 15:31](1936 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:51, 07:48](1096 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:52](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 13:09] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [06:30, 26:57](1959 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:13, 14:52] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [40:37, 03:46](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [26:57, 03:00](1567 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [24:32, 03:16](1576 MB) -PASS -- TEST 'control_latlon_intel' [20:43, 03:12](1569 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [20:21, 03:23](1569 MB) -PASS -- TEST 'control_c48_intel' [23:00, 06:34](1600 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [20:54, 05:40](719 MB) -PASS -- TEST 'control_c192_intel' [19:47, 10:03](1682 MB) -PASS -- TEST 'control_c384_intel' [26:18, 18:21](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [22:10, 14:22](1179 MB) -PASS -- TEST 'control_stochy_intel' [08:31, 01:55](624 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:03](426 MB) -PASS -- TEST 'control_lndp_intel' [08:31, 01:42](622 MB) -PASS -- TEST 'control_iovr4_intel' [08:28, 02:37](620 MB) -PASS -- TEST 'control_iovr5_intel' [08:31, 02:39](620 MB) -PASS -- TEST 'control_p8_intel' [09:08, 03:17](1867 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:09, 03:21](1868 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:14, 03:16](1869 MB) -PASS -- TEST 'control_restart_p8_intel' [04:17, 02:10](1012 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:04, 03:15](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:18, 02:41](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:01, 03:19](1859 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:21, 02:49](1949 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:20, 05:12](1867 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:27, 04:13](1920 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:42, 03:22](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [06:37, 03:36](1866 MB) -PASS -- TEST 'regional_control_intel' [06:47, 04:50](858 MB) -PASS -- TEST 'regional_restart_intel' [04:42, 03:00](860 MB) -PASS -- TEST 'regional_decomp_intel' [06:46, 05:00](860 MB) -PASS -- TEST 'regional_2threads_intel' [03:43, 03:02](999 MB) -PASS -- TEST 'regional_noquilt_intel' [05:43, 04:35](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:51, 04:43](856 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:38, 04:46](858 MB) -PASS -- TEST 'regional_wofs_intel' [07:38, 06:11](1588 MB) - -PASS -- COMPILE 'rrfs_intel' [14:12, 13:22] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [47:55, 06:59](1009 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [43:20, 04:05](1179 MB) -PASS -- TEST 'rap_decomp_intel' [47:54, 07:11](1007 MB) -PASS -- TEST 'rap_2threads_intel' [47:54, 06:02](1100 MB) -PASS -- TEST 'rap_restart_intel' [05:51, 03:26](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [47:53, 06:49](1005 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [47:54, 07:13](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:08, 05:05](877 MB) -PASS -- TEST 'hrrr_control_intel' [44:22, 03:56](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:29, 03:51](1003 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [43:29, 03:07](1082 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:10, 02:10](833 MB) -PASS -- TEST 'rrfs_v1beta_intel' [47:58, 06:45](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [48:02, 08:20](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [46:56, 08:01](1950 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:58] -PASS -- TEST 'control_csawmg_intel' [07:43, 06:39](966 MB) -PASS -- TEST 'control_ras_intel' [04:30, 03:35](659 MB) - -PASS -- COMPILE 'wam_intel' [13:13, 12:48] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [15:26, 12:36](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [20:17, 19:29] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:16, 03:33](1867 MB) -PASS -- TEST 'regional_control_faster_intel' [07:50, 05:14](856 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:11, 11:45] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:06, 04:04](1591 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:06, 03:51](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:45](799 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:36](796 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:39, 05:07](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 03:25](805 MB) -PASS -- TEST 'control_diag_debug_intel' [05:43, 03:55](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [05:42, 03:59](1894 MB) -PASS -- TEST 'regional_debug_intel' [18:55, 16:38](893 MB) -PASS -- TEST 'rap_control_debug_intel' [07:33, 05:23](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:55, 04:59](1176 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:44, 05:16](1180 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:29, 05:04](1181 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:32, 05:20](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:39, 05:16](1264 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:34, 05:10](1184 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:33, 05:16](1185 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:30, 05:06](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:31, 05:17](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:31, 05:04](1179 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:32, 05:13](1181 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:33, 08:18](1179 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:05](1175 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 05:57](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:36, 05:19](1184 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:10, 08:26](1184 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 08:04] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [16:29, 13:49](1687 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:11, 11:58] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:53, 03:55](1052 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:04, 05:45](885 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:39, 03:20](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:14, 05:09](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:41, 02:49](938 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:42, 03:40](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:11, 04:27](784 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:40, 02:13](766 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:12, 16:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:13, 02:32](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:16, 01:15](1078 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:20, 01:45](979 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:33](912 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:14, 08:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:31, 05:29](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 05:22](1059 MB) -PASS -- TEST 'conus13km_debug_intel' [16:21, 14:40](1139 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:14, 15:19](819 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:13, 09:14](1127 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:40, 14:59](1211 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:28] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:35, 05:39](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [17:12, 15:21] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:49, 06:05](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:11, 05:20](1056 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:25, 07:46](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:52, 11:56](786 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:49, 12:52](802 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:31, 05:31](478 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:04, 06:58](494 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:25, 02:57](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:38, 08:19](437 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:10, 03:56](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:16, 03:48](512 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:42, 04:50](574 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:45, 01:43](403 MB) -PASS -- TEST 'gnv1_nested_intel' [09:18, 06:15](1717 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [12:11, 10:12] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:21, 13:13](600 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [24:12, 23:21] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:15, 07:49](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:27, 07:56](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 15:28] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:41, 06:11](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 14:51] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:26, 06:16](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:18, 06:19](727 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:20, 20:06](892 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 12:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:45, 02:39](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:48, 01:35](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 02:32](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:30](642 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:27, 02:41](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:31, 02:41](750 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:27, 02:43](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:27, 02:42](643 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:06, 06:32](691 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:08, 06:08](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:37, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:30, 04:41](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:29, 04:45](2028 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:29] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:26](749 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 12:54] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:34](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:23] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:59, 01:48](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:58, 01:24](456 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:48, 00:59](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:56] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:42, 04:14](1923 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:13, 12:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:45, 04:08](1912 MB) - -PASS -- COMPILE 'atml_intel' [15:12, 14:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:50, 08:09](1895 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:43, 08:28](1895 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 03:50](1043 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:12, 09:26] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:05, 06:19](1929 MB) - -PASS -- COMPILE 'atmw_intel' [15:15, 13:04] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:38](1898 MB) - -PASS -- COMPILE 'atmaero_intel' [13:14, 12:36] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:49, 06:16](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:25, 06:59](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:15, 06:46](3017 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:14, 08:59] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:47, 18:12](4484 MB) +PASS -- COMPILE 'atm_debug_dyn32_intel' [41:24, 41:03] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:37, 03:00](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:36, 03:13](1592 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:44, 03:17](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:04, 02:52](794 MB) +PASS -- TEST 'control_csawmg_debug_intel' [11:19, 04:37](1098 MB) +PASS -- TEST 'control_ras_debug_intel' [05:04, 02:53](801 MB) +PASS -- TEST 'control_diag_debug_intel' [10:23, 03:16](1652 MB) +PASS -- TEST 'control_debug_p8_intel' [10:21, 03:27](1887 MB) +PASS -- TEST 'regional_debug_intel' [23:19, 17:06](889 MB) +PASS -- TEST 'rap_control_debug_intel' [10:04, 05:39](1178 MB) +PASS -- TEST 'hrrr_control_debug_intel' [11:04, 05:29](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [12:09, 05:53](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:09, 05:46](1177 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:05, 05:08](1179 MB) +PASS -- TEST 'rap_diag_debug_intel' [14:16, 05:20](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:08, 05:31](1176 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:08, 05:46](1182 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:05, 05:10](1182 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [12:09, 05:43](1182 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:05, 04:56](1176 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:05, 05:23](1180 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:09, 08:04](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:05, 05:37](1170 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [12:09, 06:14](1181 MB) +PASS -- TEST 'rap_flake_debug_intel' [12:09, 05:42](1179 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:38, 09:20](1179 MB) SYNOPSIS: -Starting Date/Time: 20240804 20:14:23 -Ending Date/Time: 20240804 22:26:43 -Total Time: 02h:13m:20s -Compiles Completed: 41/41 -Tests Completed: 185/185 +Starting Date/Time: 20240807 15:32:30 +Ending Date/Time: 20240807 16:39:53 +Total Time: 01h:07m:48s +Compiles Completed: 1/1 +Tests Completed: 26/26 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index ea1be17918..29aadba024 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,20 +1,20 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -24,433 +24,377 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009 +BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_763542 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [14:13, 14:05] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [07:05, 05:41](3320 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:14, 16:46] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:04, 17:37](1979 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:20, 18:18](2163 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:12, 08:15](1259 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:02, 19:30](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:13, 17:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 17:02](1973 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 06:13] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:00, 22:50](1936 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 14:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [07:09, 05:55](3344 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:19, 05:52](3356 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:21, 03:38](3255 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [07:09, 05:58](3351 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:21, 03:33](3289 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [07:05, 05:34](3622 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:05, 05:56](3326 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [06:08, 04:50](3228 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:16, 05:55](3336 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:17, 10:13](3534 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:48, 06:21](3642 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:39, 10:16](4336 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [15:55, 06:23](4389 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:09, 06:18](3337 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 13:35] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:11, 04:52](1955 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:13, 04:35](2058 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:12, 06:14] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:07, 08:32](3392 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 05:36] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:09, 05:52](2034 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:13, 12:44] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:03, 04:22](2031 MB) - -PASS -- COMPILE 's2s_intel' [13:13, 12:42] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:44, 09:17](3099 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:44, 02:51](3074 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:45, 01:34](2548 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:13, 18:05] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [07:16, 05:50](3343 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:20] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:40](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:14, 08:31](1286 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:10, 20:03](1920 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:34] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:57, 24:57](1972 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:12, 12:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:28, 03:19](705 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:50, 02:58](1604 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:53, 02:57](1610 MB) -PASS -- TEST 'control_latlon_intel' [03:44, 03:00](1597 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:50, 02:55](1609 MB) -PASS -- TEST 'control_c48_intel' [08:45, 07:30](1765 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:30, 06:26](871 MB) -PASS -- TEST 'control_c192_intel' [12:03, 10:29](1754 MB) -PASS -- TEST 'control_c384_intel' [13:05, 10:30](2024 MB) -PASS -- TEST 'control_c384gdas_intel' [11:00, 08:00](1376 MB) -PASS -- TEST 'control_stochy_intel' [02:27, 01:40](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:28, 00:58](506 MB) -PASS -- TEST 'control_lndp_intel' [02:25, 01:38](666 MB) -PASS -- TEST 'control_iovr4_intel' [03:27, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:28](658 MB) -PASS -- TEST 'control_p8_intel' [03:59, 03:05](1899 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:09, 03:07](1900 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:05, 03:14](1901 MB) -PASS -- TEST 'control_restart_p8_intel' [02:48, 01:45](1143 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:51, 03:01](1904 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:45](1164 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:17](1884 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:49, 03:09](1987 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:45, 05:19](1896 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:54, 04:46](1924 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:55, 03:10](1911 MB) -PASS -- TEST 'merra2_thompson_intel' [04:52, 03:22](1907 MB) -PASS -- TEST 'regional_control_intel' [06:37, 05:38](1094 MB) -PASS -- TEST 'regional_restart_intel' [03:39, 02:55](1099 MB) -PASS -- TEST 'regional_decomp_intel' [06:36, 05:35](1090 MB) -PASS -- TEST 'regional_2threads_intel' [04:35, 03:24](1096 MB) -PASS -- TEST 'regional_noquilt_intel' [06:45, 05:15](1402 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:16](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:20](1092 MB) -PASS -- TEST 'regional_wofs_intel' [07:37, 06:53](1916 MB) - -PASS -- COMPILE 'rrfs_intel' [12:12, 11:10] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:55, 07:57](1112 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:16, 04:09](1305 MB) -PASS -- TEST 'rap_decomp_intel' [09:41, 08:07](1036 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:15](1180 MB) -PASS -- TEST 'rap_restart_intel' [04:45, 04:01](1096 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:42](1102 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:37, 08:04](1039 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:45, 05:50](1137 MB) -PASS -- TEST 'hrrr_control_intel' [04:44, 03:58](1048 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 04:05](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:36, 03:38](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 02:09](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:47, 07:35](1097 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:29, 09:27](1994 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:34, 09:18](2063 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:42] -PASS -- TEST 'control_csawmg_intel' [06:40, 06:06](1030 MB) -PASS -- TEST 'control_ras_intel' [04:24, 03:14](741 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 04:20] -PASS -- TEST 'control_csawmg_gnu' [09:42, 08:18](761 MB) - -PASS -- COMPILE 'wam_intel' [11:11, 11:00] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:51, 10:58](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:12, 15:05] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:52, 02:45](1884 MB) -PASS -- TEST 'regional_control_faster_intel' [05:35, 04:51](1100 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 06:22] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:54, 02:48](1632 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:58, 02:44](1629 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:31, 03:00](839 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:30, 02:44](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:49, 04:29](1151 MB) -PASS -- TEST 'control_ras_debug_intel' [03:30, 02:49](844 MB) -PASS -- TEST 'control_diag_debug_intel' [04:00, 02:56](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [04:54, 03:09](1926 MB) -PASS -- TEST 'regional_debug_intel' [18:50, 17:58](1113 MB) -PASS -- TEST 'rap_control_debug_intel' [05:32, 04:55](1219 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:36, 04:50](1216 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:36, 04:59](1227 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:36, 04:59](1225 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:32, 05:01](1224 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:47, 05:15](1306 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:31, 05:10](1224 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:32, 05:06](1220 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:31, 04:59](1221 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:35, 04:58](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:33, 04:54](1219 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:26, 04:58](1224 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 08:12](1221 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:24, 05:00](1218 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:27, 05:53](1227 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:24, 04:58](1224 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:41, 08:43](1223 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:46] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:20](735 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:12, 04:15] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:48, 13:37](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:12, 10:43] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:10, 03:56](1163 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:35, 06:25](1056 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:41, 03:24](995 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:38, 06:06](1093 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:09](966 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:38, 03:37](936 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:44, 04:51](1031 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:51](932 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:12, 13:41] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:00, 02:06](1206 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:50, 00:53](1130 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:15](1115 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:12, 11:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:44, 04:11](987 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 04:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:24, 04:58](1096 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:25, 04:53](1101 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:39](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:53, 14:38](951 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:46, 08:09](1182 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 14:53](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 04:00] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 04:56](1142 MB) - -PASS -- COMPILE 'hafsw_intel' [13:12, 12:32] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:20, 04:59](741 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:33, 05:52](1118 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:29, 06:51](845 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:25, 13:32](872 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:34, 15:13](892 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:57, 05:29](508 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:22, 06:43](519 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:48, 02:41](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:04, 07:11](492 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:44, 03:43](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:52, 03:34](537 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:53, 04:05](593 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:10](409 MB) -PASS -- TEST 'gnv1_nested_intel' [06:38, 04:10](1753 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:12, 04:21] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:04](593 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:13, 16:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:03, 08:47](681 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:06, 08:58](750 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:12, 12:08] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:05, 06:24](739 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:12, 11:48] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:19, 06:20](836 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:20, 06:26](827 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:59, 16:17](1212 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:12, 06:43] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:10](1154 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:24, 01:44](1103 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:18, 02:38](1032 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:19, 02:39](1014 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 02:45](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:42](1168 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:42](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:39, 06:26](1067 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:35, 06:18](1046 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:59](1145 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:22, 03:56](2519 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:56](2468 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:36](1073 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [07:12, 06:44] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:20, 02:49](1163 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 01:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:33, 00:51](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:26, 00:55](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:27, 00:35](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 11:48] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:11, 03:44](1982 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 10:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:09, 03:39](1977 MB) - -PASS -- COMPILE 'atml_intel' [13:12, 12:27] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:10, 04:20](1866 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:06, 04:23](1875 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:28](1095 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:13, 04:57] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:58, 05:49](1897 MB) - -PASS -- COMPILE 'atmw_intel' [11:12, 11:07] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:51, 01:56](1931 MB) - -PASS -- COMPILE 'atmaero_intel' [12:13, 11:16] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:21](3200 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:02, 04:55](3113 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:52, 05:01](3121 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:12, 03:55] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [05:12, 04:50] -PASS -- TEST 'control_c48_gnu' [12:41, 11:17](1541 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 03:28](503 MB) -PASS -- TEST 'control_ras_gnu' [05:24, 04:51](502 MB) -PASS -- TEST 'control_p8_gnu' [06:01, 04:49](1460 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:54, 04:44](1462 MB) -PASS -- TEST 'control_flake_gnu' [11:27, 10:23](545 MB) - -PASS -- COMPILE 'rrfs_gnu' [05:11, 04:44] -PASS -- TEST 'rap_control_gnu' [11:35, 11:06](855 MB) -PASS -- TEST 'rap_decomp_gnu' [11:33, 10:54](853 MB) -PASS -- TEST 'rap_2threads_gnu' [10:41, 09:49](931 MB) -PASS -- TEST 'rap_restart_gnu' [06:44, 05:33](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [11:40, 10:57](816 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:36, 11:00](812 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:47, 08:05](577 MB) -PASS -- TEST 'hrrr_control_gnu' [06:36, 05:36](811 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [06:35, 05:35](801 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [05:39, 05:05](917 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [06:38, 05:41](843 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:34, 03:00](565 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:34, 02:58](655 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [11:45, 10:29](811 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:35] -PASS -- TEST 'control_diag_debug_gnu' [02:54, 01:43](1274 MB) -PASS -- TEST 'regional_debug_gnu' [12:45, 11:38](714 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:24, 02:45](824 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:25, 02:36](820 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:26, 02:39](828 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:23, 02:38](827 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:39, 02:50](906 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:08](819 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:25, 02:54](825 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:51](819 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:23, 01:45](491 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:27, 01:49](449 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:47, 01:47](1438 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:25, 02:38](827 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:24, 02:57](828 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:27](831 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:36] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:10] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:34, 09:16](708 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:37, 05:00](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:45, 08:33](756 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:35, 04:31](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:32, 05:05](705 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:43, 06:57](548 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:32, 02:35](540 MB) -PASS -- TEST 'conus13km_control_gnu' [04:57, 03:18](877 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:51, 06:08](879 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:52, 01:54](556 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 11:02] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:45](732 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:46] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:24, 02:38](716 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:37](712 MB) -PASS -- TEST 'conus13km_debug_gnu' [07:53, 07:01](894 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:49, 07:03](579 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [08:45, 07:54](901 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:45, 06:59](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:11, 07:47] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:28, 02:43](737 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:31] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:14] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:12, 07:20](1533 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:19] - -PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:56] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [21:01, 19:44](1463 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:07] -FAILED: TEST TIMED OUT -- TEST 'cpld_debug_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:39] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:22, 03:28](680 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:12, 12:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:21, 05:41](3286 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:12, 16:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:05, 17:29](1957 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:22, 18:11](2132 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [10:17, 08:23](1217 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:04, 19:30](1856 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:12, 16:10] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:15](1936 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:12, 05:44] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:02, 23:32](1888 MB) + +PASS -- COMPILE 's2swa_intel' [13:12, 12:22] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [09:21, 06:00](3315 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:26, 06:02](3316 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:28, 03:36](3219 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:17, 05:58](3344 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:31, 03:35](3246 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [08:11, 05:38](3606 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:17, 06:01](3306 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:15, 04:52](3192 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:26, 05:55](3320 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:13, 10:28](3503 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:06, 06:23](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:49, 09:33](4265 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:54, 06:07](4356 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:19, 05:31](3294 MB) + +PASS -- COMPILE 's2sw_intel' [13:12, 11:47] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:11, 04:55](1957 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:15, 04:26](2035 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:12, 05:43] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [12:05, 08:37](3319 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:39] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:57, 05:51](1956 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:53] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:04, 04:24](2033 MB) + +PASS -- COMPILE 's2s_intel' [12:12, 11:11] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 09:08](3031 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:41, 02:43](3018 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:44, 01:38](2450 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:12, 16:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [07:21, 05:32](3319 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:12, 16:19] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 17:34](1988 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:24](1246 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:22, 20:01](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 05:28] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:11, 25:51](1921 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:12, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:26, 03:21](679 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:44, 02:57](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:49, 02:59](1591 MB) +PASS -- TEST 'control_latlon_intel' [06:40, 02:54](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:48, 02:57](1586 MB) +PASS -- TEST 'control_c48_intel' [08:45, 07:38](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:29, 06:32](831 MB) +PASS -- TEST 'control_c192_intel' [14:04, 10:46](1737 MB) +PASS -- TEST 'control_c384_intel' [13:05, 10:59](1943 MB) +PASS -- TEST 'control_c384gdas_intel' [11:22, 08:07](1355 MB) +PASS -- TEST 'control_stochy_intel' [02:24, 01:39](638 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:26, 01:06](477 MB) +PASS -- TEST 'control_lndp_intel' [02:27, 01:37](640 MB) +PASS -- TEST 'control_iovr4_intel' [03:26, 02:28](631 MB) +PASS -- TEST 'control_iovr5_intel' [03:26, 02:30](629 MB) +PASS -- TEST 'control_p8_intel' [04:57, 03:08](1880 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:01, 03:06](1864 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:57, 03:00](1872 MB) +PASS -- TEST 'control_restart_p8_intel' [02:52, 01:48](1106 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:56, 03:06](1865 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:55, 01:48](1145 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:51, 03:10](1862 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:47, 02:54](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:42, 05:28](1868 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:55, 04:07](1928 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:58, 03:09](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [04:51, 03:40](1874 MB) +PASS -- TEST 'regional_control_intel' [06:44, 05:23](1073 MB) +PASS -- TEST 'regional_restart_intel' [03:43, 02:53](1067 MB) +PASS -- TEST 'regional_decomp_intel' [06:39, 05:41](1067 MB) +PASS -- TEST 'regional_2threads_intel' [04:39, 03:27](1056 MB) +PASS -- TEST 'regional_noquilt_intel' [06:42, 05:18](1370 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:43, 05:25](1074 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:38, 05:25](1079 MB) +PASS -- TEST 'regional_wofs_intel' [07:42, 06:59](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [10:12, 10:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:42, 07:49](1086 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:14, 04:08](1237 MB) +PASS -- TEST 'rap_decomp_intel' [11:46, 08:13](1019 MB) +PASS -- TEST 'rap_2threads_intel' [11:46, 07:22](1148 MB) +PASS -- TEST 'rap_restart_intel' [05:48, 04:09](1078 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:45, 07:48](1078 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:45, 08:15](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:48, 05:56](1112 MB) +PASS -- TEST 'hrrr_control_intel' [08:47, 04:01](1024 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:47, 04:09](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:47, 03:42](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:35, 02:14](984 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:57, 07:44](1070 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 09:23](1978 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:06](2056 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:54] +PASS -- TEST 'control_csawmg_intel' [07:42, 06:11](995 MB) +PASS -- TEST 'control_ras_intel' [04:24, 03:19](729 MB) + +PASS -- COMPILE 'csawmg_gnu' [06:11, 04:23] +PASS -- TEST 'control_csawmg_gnu' [09:45, 08:31](729 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:55] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:56, 11:12](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 10:13] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:58, 02:49](1876 MB) +PASS -- TEST 'regional_control_faster_intel' [06:39, 04:59](1066 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:43] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:49, 02:38](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:45, 02:40](1590 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:24, 03:09](795 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:24, 02:46](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:20](1105 MB) +PASS -- TEST 'control_ras_debug_intel' [03:25, 02:51](798 MB) +PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [04:46, 03:03](1885 MB) +PASS -- TEST 'regional_debug_intel' [18:43, 17:46](1058 MB) +PASS -- TEST 'rap_control_debug_intel' [05:27, 04:55](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:27, 05:00](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:24, 04:54](1177 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:26, 04:55](1181 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 05:01](1182 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:42, 05:19](1262 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:25, 05:06](1174 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:26, 05:01](1173 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:24, 05:03](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:56](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:23, 04:53](1178 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:25, 04:59](1183 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:12](1174 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 05:00](1177 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:28, 05:58](1175 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:25, 04:59](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:44, 08:30](1186 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 04:14] +PASS -- TEST 'control_csawmg_debug_gnu' [03:41, 02:18](696 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:12, 04:45] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:47](1664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:09, 03:53](1111 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:40, 06:27](1037 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:37, 03:26](969 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:32, 06:12](1071 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:30, 03:10](938 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:38](913 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:55, 04:52](1030 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:27, 01:52](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:11, 09:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:01, 02:07](1177 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:51, 00:53](1093 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:14](1086 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:18](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 04:29] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:56](1057 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:29, 04:53](1055 MB) +PASS -- TEST 'conus13km_debug_intel' [16:52, 15:11](1175 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:47, 15:12](896 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:41, 08:29](1106 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:42, 15:15](1242 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:42] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:24, 05:02](1097 MB) + +PASS -- COMPILE 'hafsw_intel' [12:12, 11:28] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:16, 05:10](703 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:31, 06:19](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:24, 07:01](792 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:13, 13:41](828 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:28, 15:17](860 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:58, 05:37](474 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:27, 06:49](487 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:46, 02:41](356 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:08, 07:23](466 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:45, 03:47](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:50, 03:31](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:55, 04:11](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:10](386 MB) +PASS -- TEST 'gnv1_nested_intel' [06:45, 04:16](1723 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:11, 05:00] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:56, 12:54](533 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:11, 11:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 08:44](640 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:08, 08:45](699 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:11, 11:03] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:07, 06:39](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:55] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:20, 06:39](797 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:14, 06:41](772 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:55, 16:03](1212 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:43](1167 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:42](1095 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:19, 02:33](1041 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:24, 02:40](1020 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:39](1025 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:20, 02:46](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:20, 02:47](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:21, 02:36](1021 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:29, 06:52](1067 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:22, 06:11](1033 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:08](1150 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:23, 04:02](2506 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:33, 03:59](2441 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:23](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 06:26] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:41](1135 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:47](260 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:49](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](314 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:12, 10:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:06, 03:46](1964 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:41] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:03, 03:37](1921 MB) + +PASS -- COMPILE 'atml_intel' [11:11, 10:56] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:03, 04:19](1838 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:02, 04:16](1840 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 02:25](1066 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:12, 05:47] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:58, 05:54](1841 MB) + +PASS -- COMPILE 'atmw_intel' [11:12, 10:52] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:50, 01:52](1897 MB) + +PASS -- COMPILE 'atmaero_intel' [11:12, 10:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:01, 04:10](3176 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:56, 04:57](3071 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:00](3089 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 05:02] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [05:11, 04:35] +PASS -- TEST 'control_c48_gnu' [14:39, 11:11](1493 MB) +PASS -- TEST 'control_stochy_gnu' [04:24, 03:27](474 MB) +PASS -- TEST 'control_ras_gnu' [08:23, 04:50](490 MB) +PASS -- TEST 'control_p8_gnu' [08:58, 04:47](1437 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [08:54, 04:40](1425 MB) +PASS -- TEST 'control_flake_gnu' [14:25, 10:31](519 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 04:34] +PASS -- TEST 'rap_control_gnu' [14:33, 10:49](792 MB) +PASS -- TEST 'rap_decomp_gnu' [13:32, 11:09](796 MB) +PASS -- TEST 'rap_2threads_gnu' [12:39, 09:55](898 MB) +PASS -- TEST 'rap_restart_gnu' [06:43, 05:30](557 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:37, 10:51](792 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:07](828 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:50, 08:13](563 MB) +PASS -- TEST 'hrrr_control_gnu' [07:40, 05:35](791 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:33, 05:32](784 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [07:36, 05:05](886 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:34, 05:34](787 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:33, 02:54](547 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:31, 02:50](635 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:42, 10:33](792 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 06:23] +PASS -- TEST 'control_diag_debug_gnu' [04:52, 01:38](1245 MB) +PASS -- TEST 'regional_debug_gnu' [13:41, 11:11](724 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:26, 02:41](800 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [05:26, 02:34](795 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:25, 02:37](810 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:23, 02:38](804 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:38, 02:53](885 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:24, 04:10](794 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:22, 02:37](794 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:23, 02:38](795 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:20, 01:35](433 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:20, 01:47](429 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:41, 01:49](1402 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:23, 02:39](796 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:23, 02:53](799 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:38, 04:23](807 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:11, 02:49] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 04:14] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:30, 09:28](692 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:35, 04:59](688 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:34, 08:35](733 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:29, 04:28](725 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:29, 05:03](688 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:41, 07:04](536 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:30, 02:33](520 MB) +PASS -- TEST 'conus13km_control_gnu' [03:57, 03:09](854 MB) +PASS -- TEST 'conus13km_2threads_gnu' [10:47, 05:45](856 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:46, 01:48](536 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:32] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:40, 05:57](708 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:12, 06:29] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:36](685 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:24, 02:32](687 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:47, 07:11](853 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:50, 07:06](552 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:44, 07:29](861 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:44, 07:00](923 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:10, 06:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:24, 02:41](706 MB) + +PASS -- COMPILE 's2swa_gnu' [17:12, 16:30] + +PASS -- COMPILE 's2s_gnu' [16:11, 15:48] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:15, 07:26](1518 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:10, 03:11] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:11, 15:53] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [22:14, 20:57](1430 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:11, 02:59] + +PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 15:30] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:18, 03:02](680 MB) SYNOPSIS: -Starting Date/Time: 20240805 00:00:47 -Ending Date/Time: 20240805 02:04:13 -Total Time: 02h:04m:44s +Starting Date/Time: 20240807 03:42:14 +Ending Date/Time: 20240807 05:17:49 +Total Time: 01h:36m:42s Compiles Completed: 57/57 -Tests Completed: 243/244 -Failed Tests: -* TEST cpld_debug_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2958009/cpld_debug_pdlib_p8_gnu/err - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF HERA REGRESSION TESTING LOG==== -====START OF HERA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1313382 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:12, 03:26] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [14:58, 13:15](1456 MB) - -SYNOPSIS: -Starting Date/Time: 20240805 17:54:52 -Ending Date/Time: 20240805 18:15:21 -Total Time: 00h:20m:39s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 243/243 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 2e81377b87..f3c8e7df2c 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,31 +1,31 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +316fa2afafdaabcdf9c024689e0f5f117395bce5 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,375 +36,374 @@ 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-20240730 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1562821 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2147705 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [12:11, 11:47] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:02, 08:22](2123 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:11, 17:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:25, 14:45](2014 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:52, 14:22](2300 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:40, 06:51](1319 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:50, 15:33](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:11, 20:06] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:26, 13:32](1999 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:11, 06:18] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [22:10, 20:54](1983 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:40] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:53, 08:23](2180 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:00, 08:42](2185 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:09, 04:18](1989 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:53, 08:30](2199 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:09, 04:24](1742 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:59, 09:59](2550 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:53, 08:33](2178 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:56, 06:58](2096 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:01, 08:41](2183 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:41, 15:48](2986 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [08:18, 05:51](2931 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [16:54, 10:19](3813 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:52, 06:34](3646 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:57, 06:05](2147 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 10:02] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [14:43, 10:29](2025 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:50, 04:25](2085 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:17] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [08:59, 07:43](2216 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:10, 06:11] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:51, 05:35](2054 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:49, 04:48](2078 MB) - -PASS -- COMPILE 's2s_intel' [09:11, 08:44] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [07:41, 07:03](3114 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:39, 02:11](3098 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:42, 02:10](2538 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:11, 16:26] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:05, 07:26](2179 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:48, 13:55](2043 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:57, 07:03](1405 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:57, 15:36](1960 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:50] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:50, 23:01](2037 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:10, 08:34] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:22, 03:32](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:30, 02:27](1601 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:34, 02:36](1617 MB) -PASS -- TEST 'control_latlon_intel' [03:30, 02:32](1609 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:37, 02:28](1616 MB) -PASS -- TEST 'control_c48_intel' [07:33, 06:51](1735 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 05:51](865 MB) -PASS -- TEST 'control_c192_intel' [10:42, 09:16](1772 MB) -PASS -- TEST 'control_c384_intel' [11:35, 09:27](2053 MB) -PASS -- TEST 'control_c384gdas_intel' [11:49, 09:43](1519 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:44](663 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:27, 01:03](541 MB) -PASS -- TEST 'control_lndp_intel' [02:21, 01:40](667 MB) -PASS -- TEST 'control_iovr4_intel' [03:20, 02:37](667 MB) -PASS -- TEST 'control_iovr5_intel' [04:19, 02:42](664 MB) -PASS -- TEST 'control_p8_intel' [03:47, 02:43](1913 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:47, 02:43](1898 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 03:05](1906 MB) -PASS -- TEST 'control_restart_p8_intel' [02:46, 01:33](1165 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:46, 02:35](1907 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:47, 01:35](1182 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:36, 02:43](1903 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:37, 03:24](1995 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:28, 05:23](1909 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:53, 04:17](1988 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:53, 03:39](1916 MB) -PASS -- TEST 'merra2_thompson_intel' [06:55, 04:48](1910 MB) -PASS -- TEST 'regional_control_intel' [07:27, 05:39](1197 MB) -PASS -- TEST 'regional_restart_intel' [03:30, 02:42](1181 MB) -PASS -- TEST 'regional_decomp_intel' [07:23, 05:52](1198 MB) -PASS -- TEST 'regional_2threads_intel' [04:24, 03:04](1155 MB) -PASS -- TEST 'regional_noquilt_intel' [06:24, 05:20](1530 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:28, 04:44](1195 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:22, 04:51](1198 MB) -PASS -- TEST 'regional_wofs_intel' [08:26, 07:24](2094 MB) - -PASS -- COMPILE 'rrfs_intel' [08:10, 07:46] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [13:40, 06:42](1205 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:45, 03:42](1408 MB) -PASS -- TEST 'rap_decomp_intel' [14:37, 07:01](1157 MB) -PASS -- TEST 'rap_2threads_intel' [13:40, 06:16](1384 MB) -PASS -- TEST 'rap_restart_intel' [04:59, 03:40](1134 MB) -PASS -- TEST 'rap_sfcdiff_intel' [14:43, 06:53](1209 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:43, 07:05](1151 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:54, 05:12](1219 MB) -PASS -- TEST 'hrrr_control_intel' [10:39, 03:33](1069 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [10:39, 03:36](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:39, 03:12](1125 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:27, 01:54](1022 MB) -PASS -- TEST 'rrfs_v1beta_intel' [15:01, 06:47](1194 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [14:25, 07:40](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:23, 07:37](2208 MB) - -PASS -- COMPILE 'csawmg_intel' [07:10, 07:03] -PASS -- TEST 'control_csawmg_intel' [14:29, 07:00](1074 MB) -PASS -- TEST 'control_ras_intel' [07:21, 02:57](843 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:10, 04:11] -PASS -- TEST 'control_csawmg_gnu' [07:36, 06:59](1073 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 07:18] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:32, 10:25](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [18:10, 13:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [03:48, 02:21](1908 MB) -PASS -- TEST 'regional_control_faster_intel' [06:25, 05:23](1198 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 05:35] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:27, 02:23](1638 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:31, 02:16](1646 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:18, 02:32](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:18, 02:19](837 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:25, 04:17](1164 MB) -PASS -- TEST 'control_ras_debug_intel' [03:21, 02:42](848 MB) -PASS -- TEST 'control_diag_debug_intel' [03:33, 02:25](1703 MB) -PASS -- TEST 'control_debug_p8_intel' [03:30, 02:44](1936 MB) -PASS -- TEST 'regional_debug_intel' [16:26, 16:00](1165 MB) -PASS -- TEST 'rap_control_debug_intel' [04:18, 04:06](1230 MB) -PASS -- TEST 'hrrr_control_debug_intel' [04:20, 04:00](1221 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [04:19, 04:03](1236 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [04:18, 04:06](1235 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:18, 04:05](1234 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 04:16](1318 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:20, 04:22](1234 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:26](1239 MB) -PASS -- TEST 'rap_lndp_debug_intel' [04:23, 04:05](1240 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:18, 04:04](1241 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:18, 04:09](1227 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 04:23](1226 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:18, 07:05](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:22, 04:45](1229 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 05:24](1232 MB) -PASS -- TEST 'rap_flake_debug_intel' [04:28, 04:06](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:54, 07:13](1224 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:10, 05:01] -PASS -- TEST 'control_csawmg_debug_gnu' [02:31, 01:58](1058 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 03:29] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 07:44] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 03:44](1267 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:43, 07:20](1180 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:51, 03:28](1051 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:31, 06:03](1285 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:12](1044 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 03:47](1019 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:48, 05:19](1133 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:19, 02:01](977 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:10, 12:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:36, 01:52](1313 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:45](1214 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:27, 01:02](1178 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:10, 07:51] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:29, 03:45](1099 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 03:29] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:18, 04:01](1111 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:22, 03:55](1112 MB) -PASS -- TEST 'conus13km_debug_intel' [18:33, 12:50](1360 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:33, 12:58](1011 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:26, 08:52](1256 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:28, 12:58](1436 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 03:31] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:20, 04:30](1172 MB) - -PASS -- COMPILE 'hafsw_intel' [10:11, 09:52] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:06, 05:29](871 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:26, 05:02](1275 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:10, 06:26](935 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:01, 13:52](994 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:09, 15:23](1007 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:52, 05:35](614 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:13, 07:07](623 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:39, 02:44](443 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:52, 08:00](556 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:41, 04:08](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:40, 03:40](622 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:45, 04:52](679 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:25, 01:09](454 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:10, 03:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:39, 16:32](650 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:10, 15:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:43, 15:27](750 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [17:53, 16:27](849 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:10, 09:29] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:52, 10:08](830 MB) - -PASS -- COMPILE 'hafs_all_intel' [10:11, 10:02] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:05, 05:51](953 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:03, 05:40](938 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:46, 16:35](1348 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [07:10, 07:02] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:16, 02:11](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:16, 01:21](1113 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 02:06](1016 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:09](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 02:12](1019 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:09](1145 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 02:11](1136 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 02:09](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:55, 04:54](1166 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:49, 04:55](1157 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 02:09](1138 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:15, 03:06](2458 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:15, 03:05](2407 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 04:12] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:15, 05:11](1086 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 07:07] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:15, 02:11](1129 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:26, 00:56](335 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:22, 00:50](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:26, 00:42](572 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:11, 08:20] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:47, 04:01](2028 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:10, 08:00] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:46, 03:54](1995 MB) - -PASS -- COMPILE 'atml_intel' [09:11, 09:08] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:56, 07:20](1900 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:52, 07:37](1905 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:42, 03:40](1144 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:10, 04:13] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 05:27](1938 MB) - -PASS -- COMPILE 'atmw_intel' [10:10, 09:44] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 01:48](1957 MB) - -PASS -- COMPILE 'atmaero_intel' [08:10, 07:54] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:46, 04:27](2024 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:47, 04:29](1801 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:37, 04:38](1822 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 03:14] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [18:28, 17:00](4584 MB) - -PASS -- COMPILE 'atm_gnu' [06:10, 05:43] -PASS -- TEST 'control_c48_gnu' [10:41, 09:20](1562 MB) -PASS -- TEST 'control_stochy_gnu' [03:24, 02:20](734 MB) -PASS -- TEST 'control_ras_gnu' [05:21, 03:52](731 MB) -PASS -- TEST 'control_p8_gnu' [05:44, 04:42](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:36, 04:26](1718 MB) -PASS -- TEST 'control_flake_gnu' [06:21, 04:37](810 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:10, 05:42] -PASS -- TEST 'rap_control_gnu' [08:48, 08:03](1085 MB) -PASS -- TEST 'rap_decomp_gnu' [09:47, 07:55](1084 MB) -PASS -- TEST 'rap_2threads_gnu' [08:45, 07:13](1150 MB) -PASS -- TEST 'rap_restart_gnu' [05:56, 03:59](885 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:43, 08:06](1084 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:34, 08:04](1083 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [06:49, 06:03](882 MB) -PASS -- TEST 'hrrr_control_gnu' [05:33, 04:09](1074 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:34, 04:17](1134 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:44, 03:38](1027 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 04:13](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:19, 02:09](878 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:18, 02:12](935 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [09:49, 08:17](1082 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 11:17] -PASS -- TEST 'control_diag_debug_gnu' [02:35, 01:18](1631 MB) -PASS -- TEST 'regional_debug_gnu' [07:30, 06:38](1126 MB) -PASS -- TEST 'rap_control_debug_gnu' [02:20, 02:04](1104 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [02:20, 02:04](1097 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [02:16, 02:02](1098 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:06](1101 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:10](1275 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:17, 03:11](1103 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 02:05](1103 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:20, 02:00](1098 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:16, 01:10](729 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:17, 01:17](729 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:30, 01:25](1709 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](1103 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 02:16](1106 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:47, 03:20](1114 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:11, 04:34] -PASS -- TEST 'control_wam_debug_gnu' [06:29, 05:28](1580 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:11, 06:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:43, 07:58](966 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:55, 03:55](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:32, 06:52](998 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:36, 03:37](875 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 03:59](954 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:54, 05:53](862 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:11](858 MB) -PASS -- TEST 'conus13km_control_gnu' [04:36, 02:49](1267 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:32, 01:09](1177 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:32, 01:41](936 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:10, 14:35] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:30, 04:35](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [13:10, 12:31] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:25, 02:11](983 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 02:05](975 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:34, 06:09](1289 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [07:31, 06:18](979 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:31, 03:44](1195 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:30, 06:01](1356 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [16:10, 13:27] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:21, 02:14](1004 MB) - -PASS -- COMPILE 's2swa_gnu' [24:11, 22:09] - -PASS -- COMPILE 's2s_gnu' [21:11, 18:55] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [06:54, 04:55](2735 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [14:11, 12:50] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:11, 20:15] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:19, 25:47](3033 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [13:10, 10:43] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:59, 12:04](2940 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [15:10, 14:20] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:16, 02:17](764 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:51, 12:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:27, 07:45](2117 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [41:47, 41:47] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:51, 13:16](2006 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [14:44, 13:55](2282 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:22, 06:29](1316 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:42, 14:56](1920 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:17, 16:17] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:35, 13:07](1984 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [04:40, 04:40] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:51, 21:02](1975 MB) + +PASS -- COMPILE 's2swa_intel' [10:52, 10:52] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:34, 07:50](2175 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [08:34, 07:46](2182 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:59, 04:22](1980 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:40, 07:53](2197 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:13, 04:30](1743 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [09:47, 09:08](2547 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:12, 07:34](2174 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [07:03, 06:34](2089 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:34, 07:50](2179 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [16:32, 15:22](2993 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [07:30, 05:59](2918 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [14:22, 10:05](3834 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [11:25, 05:59](3642 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:20, 05:51](2159 MB) + +PASS -- COMPILE 's2sw_intel' [10:23, 10:23] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:01, 07:26](2018 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [04:50, 04:11](2087 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:30, 05:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [07:55, 07:16](2221 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:19, 05:19] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [05:22, 04:50](2043 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:42, 12:42] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:41, 04:03](2080 MB) + +PASS -- COMPILE 's2s_intel' [09:43, 09:43] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:27, 07:01](3055 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:23, 01:57](3031 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:40, 01:07](2490 MB) + +PASS -- COMPILE 's2swa_faster_intel' [12:54, 12:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:11, 07:26](2182 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:27, 15:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:17, 13:49](2039 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:14, 06:48](1381 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [15:54, 15:18](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [03:59, 03:59] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [23:06, 22:36](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:10, 08:10] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:07, 03:58](714 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:44, 03:24](1607 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:24](1610 MB) +PASS -- TEST 'control_latlon_intel' [03:32, 03:21](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:49, 03:29](1606 MB) +PASS -- TEST 'control_c48_intel' [07:35, 07:09](1713 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 06:05](837 MB) +PASS -- TEST 'control_c192_intel' [13:52, 13:25](1744 MB) +PASS -- TEST 'control_c384_intel' [14:02, 13:07](2007 MB) +PASS -- TEST 'control_c384gdas_intel' [11:39, 10:17](1492 MB) +PASS -- TEST 'control_stochy_intel' [02:05, 01:56](663 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:10](552 MB) +PASS -- TEST 'control_lndp_intel' [01:49, 01:41](663 MB) +PASS -- TEST 'control_iovr4_intel' [03:06, 02:55](673 MB) +PASS -- TEST 'control_iovr5_intel' [02:57, 02:50](665 MB) +PASS -- TEST 'control_p8_intel' [04:12, 03:40](1904 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:20, 03:42](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:14, 03:32](1902 MB) +PASS -- TEST 'control_restart_p8_intel' [02:29, 02:05](1162 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:13, 03:39](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:19, 01:58](1211 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:41, 04:04](1880 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:41, 03:08](1978 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:36, 06:22](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:25, 04:44](1965 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:46, 03:11](1924 MB) +PASS -- TEST 'merra2_thompson_intel' [04:40, 04:02](1902 MB) +PASS -- TEST 'regional_control_intel' [06:42, 06:29](1198 MB) +PASS -- TEST 'regional_restart_intel' [03:49, 03:35](1156 MB) +PASS -- TEST 'regional_decomp_intel' [06:50, 06:36](1175 MB) +PASS -- TEST 'regional_2threads_intel' [04:26, 04:13](1160 MB) +PASS -- TEST 'regional_noquilt_intel' [06:54, 06:41](1518 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:56, 06:38](1190 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:45, 06:30](1189 MB) +PASS -- TEST 'regional_wofs_intel' [08:29, 08:16](2078 MB) + +PASS -- COMPILE 'rrfs_intel' [08:33, 08:33] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:47, 08:12](1239 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:57, 04:26](1347 MB) +PASS -- TEST 'rap_decomp_intel' [09:33, 09:01](1158 MB) +PASS -- TEST 'rap_2threads_intel' [08:34, 07:56](1373 MB) +PASS -- TEST 'rap_restart_intel' [04:56, 04:22](1166 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:43, 08:11](1239 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:31, 08:59](1167 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:55, 06:17](1236 MB) +PASS -- TEST 'hrrr_control_intel' [05:04, 04:26](1104 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:10, 04:35](1055 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:25, 03:52](1112 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:35, 02:28](1047 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:38, 09:01](1226 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:04, 08:55](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:52, 08:42](2196 MB) + +PASS -- COMPILE 'csawmg_intel' [07:37, 07:37] +PASS -- TEST 'control_csawmg_intel' [05:47, 05:33](1045 MB) +PASS -- TEST 'control_ras_intel' [03:04, 02:57](827 MB) + +PASS -- COMPILE 'csawmg_gnu' [03:53, 03:53] +PASS -- TEST 'control_csawmg_gnu' [07:34, 07:19](1073 MB) + +PASS -- COMPILE 'wam_intel' [12:15, 12:15] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:15, 09:51](1669 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:54, 07:54] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [02:58, 02:24](1891 MB) +PASS -- TEST 'regional_control_faster_intel' [04:35, 04:18](1198 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:34, 05:34] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:47, 02:25](1635 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:49, 02:30](1653 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:00, 02:53](849 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](848 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:07, 03:46](1150 MB) +PASS -- TEST 'control_ras_debug_intel' [02:39, 02:28](847 MB) +PASS -- TEST 'control_diag_debug_intel' [02:42, 02:26](1696 MB) +PASS -- TEST 'control_debug_p8_intel' [03:15, 03:00](1942 MB) +PASS -- TEST 'regional_debug_intel' [16:05, 15:46](1150 MB) +PASS -- TEST 'rap_control_debug_intel' [04:35, 04:23](1227 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:32, 04:22](1230 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:28, 04:19](1237 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:46, 04:38](1226 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:52, 04:43](1247 MB) +PASS -- TEST 'rap_diag_debug_intel' [04:58, 04:37](1316 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:41, 04:29](1240 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:57, 04:42](1233 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:43, 04:36](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:34, 04:27](1236 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:16](1233 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:31, 04:21](1247 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:13, 07:06](1235 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:29, 04:22](1225 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:30, 05:20](1234 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:39, 04:29](1235 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:23, 07:45](1231 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:02, 04:02] +PASS -- TEST 'control_csawmg_debug_gnu' [02:53, 02:33](1050 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:29, 03:29] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:24, 08:23] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:53, 03:15](1243 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:58, 05:22](1146 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:31, 02:52](1020 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:32, 05:01](1261 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:24, 02:37](1028 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:48, 03:02](1001 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:38, 04:01](1079 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:59, 01:37](944 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:31, 08:30] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:11, 01:44](1279 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:04, 00:43](1196 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:18, 01:04](1145 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:58, 07:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:30, 04:12](1098 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:47, 04:47] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:49, 04:35](1099 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:20, 04:08](1098 MB) +PASS -- TEST 'conus13km_debug_intel' [13:23, 13:00](1340 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [13:35, 13:12](991 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [08:21, 07:58](1248 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:47, 12:22](1401 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:23, 03:22] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:19, 04:08](1168 MB) + +PASS -- COMPILE 'hafsw_intel' [09:29, 09:29] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:17](857 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:09, 04:51](1259 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:25, 06:24](938 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:04, 14:15](979 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:35, 15:31](981 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:58, 05:23](595 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:44, 06:46](602 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:01, 02:33](436 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [08:49, 07:26](547 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:47](601 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:08, 03:35](611 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:23, 04:45](659 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:27, 01:11](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [03:59, 03:59] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:09, 11:29](633 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:44, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [16:58, 16:21](763 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [16:28, 15:37](845 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:04, 13:04] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:47, 10:03](815 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:08, 11:08] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:17, 05:28](949 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:20, 05:31](908 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:06, 16:32](1338 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:48, 07:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:18, 02:12](1149 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:52, 01:45](1102 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:11, 04:06](1025 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:18, 02:09](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:54, 02:51](1028 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:39, 03:32](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:18, 02:13](1155 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:10, 02:05](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:30, 04:53](1164 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:22, 04:50](1157 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:58, 02:55](1146 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:13, 03:07](2384 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:12, 03:06](2402 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:16, 03:15] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:12, 05:08](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:04, 06:04] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:43, 02:38](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:46, 00:46] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:07, 00:53](327 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:02, 00:50](558 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [09:03, 09:02] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:07, 03:30](2018 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:15, 09:15] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:22, 03:36](1989 MB) + +PASS -- COMPILE 'atml_intel' [08:39, 08:39] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:19, 05:33](1901 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [06:40, 05:52](1891 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:39, 03:12](1139 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:11, 04:11] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:40, 05:53](1921 MB) + +PASS -- COMPILE 'atmw_intel' [09:55, 09:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:18, 01:38](1939 MB) + +PASS -- COMPILE 'atmaero_intel' [08:33, 08:33] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:33, 03:54](2026 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:18, 04:37](1806 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:05, 04:36](1815 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:21, 04:21] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:07, 16:01](4575 MB) + +PASS -- COMPILE 'atm_gnu' [04:40, 04:40] +PASS -- TEST 'control_c48_gnu' [09:52, 09:28](1529 MB) +PASS -- TEST 'control_stochy_gnu' [02:37, 02:26](721 MB) +PASS -- TEST 'control_ras_gnu' [04:05, 03:56](734 MB) +PASS -- TEST 'control_p8_gnu' [04:45, 04:02](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:30, 03:55](1729 MB) +PASS -- TEST 'control_flake_gnu' [05:07, 04:54](802 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:05, 04:05] +PASS -- TEST 'rap_control_gnu' [09:58, 09:27](1080 MB) +PASS -- TEST 'rap_decomp_gnu' [10:05, 09:29](1082 MB) +PASS -- TEST 'rap_2threads_gnu' [08:52, 08:14](1138 MB) +PASS -- TEST 'rap_restart_gnu' [05:21, 04:51](887 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:10, 09:36](1082 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [09:27, 08:55](1083 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:50, 07:08](883 MB) +PASS -- TEST 'hrrr_control_gnu' [05:41, 05:03](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:06, 04:41](1135 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:56, 04:24](1045 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:14, 04:44](1068 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:49, 02:30](883 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:38, 02:19](933 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:46, 09:02](1076 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:59, 05:58] +PASS -- TEST 'control_diag_debug_gnu' [01:31, 01:14](1625 MB) +PASS -- TEST 'regional_debug_gnu' [06:48, 06:27](1122 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:18, 02:05](1098 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:01, 01:55](1086 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:07, 01:58](1094 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:03, 01:57](1093 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:18, 02:04](1266 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:23, 03:14](1094 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:06, 01:59](1095 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:03, 01:57](1089 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:17, 01:09](721 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:22, 01:17](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:45, 01:24](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:21, 02:08](1096 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:20, 02:13](1105 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [03:50, 03:16](1098 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:34, 02:34] +PASS -- TEST 'control_wam_debug_gnu' [05:47, 05:25](1565 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:50, 04:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:20, 08:46](962 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:08, 04:21](950 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:35, 08:04](994 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:47, 04:04](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:09, 04:28](954 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:10, 06:32](862 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:46, 02:22](863 MB) +PASS -- TEST 'conus13km_control_gnu' [03:28, 03:01](1271 MB) +PASS -- TEST 'conus13km_2threads_gnu' [01:32, 01:13](1176 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:59, 01:41](928 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:15, 09:14] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:52, 04:33](990 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:02, 06:02] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:15, 02:05](977 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:06, 01:59](969 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:55, 05:34](1285 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:10, 05:49](962 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [03:33, 03:19](1195 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:56, 05:36](1354 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:12, 06:12] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:19, 02:13](1001 MB) + +PASS -- COMPILE 's2swa_gnu' [15:34, 15:34] + +PASS -- COMPILE 's2s_gnu' [14:31, 14:31] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [05:47, 05:07](3117 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:31, 04:31] + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:49, 20:49] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:04, 27:04](2921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:27, 04:27] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:45, 12:02](2924 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [24:37, 24:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:59, 02:49](770 MB) SYNOPSIS: -Starting Date/Time: 20240805 08:20:40 -Ending Date/Time: 20240805 09:59:14 -Total Time: 01h:38m:59s +Starting Date/Time: 20240807 07:47:32 +Ending Date/Time: 20240807 11:55:23 +Total Time: 04h:08m:40s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index ffa39feaa2..97fb2cfbbc 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,31 +1,31 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +b40a0f095bb14723f1a8be990d19a22972f356d6 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -35,261 +35,259 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448 +BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240806 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [42:15, 41:49] ( 1 warnings 1384 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [36:07, 07:52](2022 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:16, 49:06] ( 1 warnings 1428 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [43:32, 21:50](1900 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:30, 23:29](2010 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:46, 11:03](1129 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [46:17, 24:54](1855 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:16, 49:32] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [40:15, 21:36](1881 MB) - -PASS -- COMPILE 's2swa_intel' [42:16, 41:29] ( 1382 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [35:36, 08:28](2063 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [36:08, 08:20](2057 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:23, 05:15](1717 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [35:39, 08:26](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:26, 05:33](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [35:31, 08:06](2316 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [35:31, 08:22](2011 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [35:00, 07:16](1961 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [36:00, 08:17](2064 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [35:49, 07:54](2040 MB) - -PASS -- COMPILE 's2sw_intel' [39:15, 38:50] ( 1280 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [38:06, 06:52](1903 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [37:23, 06:42](1947 MB) - -PASS -- COMPILE 's2swa_debug_intel' [36:19, 06:04] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [13:43, 11:16](2080 MB) - -PASS -- COMPILE 's2sw_debug_intel' [32:21, 05:47] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:00, 07:45](1937 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [02:24, 35:31] ( 1011 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:12, 07:19](1973 MB) - -PASS -- COMPILE 's2s_intel' [55:22, 35:44] ( 1016 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [19:18, 12:49](3075 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [11:15, 04:12](3059 MB) -PASS -- TEST 'cpld_restart_c48_intel' [05:06, 02:50](2515 MB) - -PASS -- COMPILE 's2swa_faster_intel' [53:30, 34:28] ( 1610 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:23, 09:37](2055 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [48:15, 47:17] ( 1340 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:46, 23:39](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:35, 12:58](1142 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:09, 27:39](1887 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:40] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [34:47, 33:01](1942 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:22] ( 1 warnings 1148 remarks ) -PASS -- TEST 'control_flake_intel' [06:38, 04:56](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:19, 04:42](1545 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:25, 05:11](1558 MB) -PASS -- TEST 'control_latlon_intel' [06:18, 04:28](1552 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:29, 04:51](1549 MB) -PASS -- TEST 'control_c48_intel' [14:26, 12:03](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:45, 10:14](852 MB) -PASS -- TEST 'control_c192_intel' [17:51, 15:31](1692 MB) -PASS -- TEST 'control_c384_intel' [24:27, 20:39](1818 MB) -PASS -- TEST 'control_c384gdas_intel' [20:44, 14:59](1018 MB) -PASS -- TEST 'control_stochy_intel' [03:35, 02:44](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:44](442 MB) -PASS -- TEST 'control_lndp_intel' [03:33, 02:37](605 MB) -PASS -- TEST 'control_iovr4_intel' [04:50, 03:44](602 MB) -PASS -- TEST 'control_iovr5_intel' [05:35, 03:59](605 MB) -PASS -- TEST 'control_p8_intel' [07:40, 05:39](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:57, 05:41](1843 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:54, 05:29](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [05:15, 02:53](1065 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:47, 05:37](1842 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:10, 03:00](1070 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:49, 05:42](1828 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:36, 05:54](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:29, 08:23](1852 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:56, 06:40](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:55, 05:42](1855 MB) -PASS -- TEST 'merra2_thompson_intel' [08:12, 05:28](1856 MB) -PASS -- TEST 'regional_control_intel' [11:06, 09:36](1013 MB) -PASS -- TEST 'regional_restart_intel' [07:45, 06:19](1016 MB) -PASS -- TEST 'regional_decomp_intel' [12:06, 09:54](1014 MB) -PASS -- TEST 'regional_2threads_intel' [10:14, 07:57](1008 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:17, 09:54](1020 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:06, 09:54](1014 MB) - -PASS -- COMPILE 'rrfs_intel' [42:15, 35:57] ( 3 warnings 1115 remarks ) -PASS -- TEST 'rap_control_intel' [13:14, 11:05](997 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:06, 05:43](1213 MB) -PASS -- TEST 'rap_decomp_intel' [15:01, 11:45](985 MB) -PASS -- TEST 'rap_2threads_intel' [12:40, 10:25](1093 MB) -PASS -- TEST 'rap_restart_intel' [09:24, 07:11](987 MB) -PASS -- TEST 'rap_sfcdiff_intel' [13:35, 11:11](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:54, 11:53](991 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:12, 08:50](999 MB) -PASS -- TEST 'hrrr_control_intel' [08:46, 06:20](991 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [12:19, 05:26](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [13:11, 04:55](1060 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 03:03](919 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:47, 11:20](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:45, 14:36](1944 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [15:46, 14:05](1940 MB) - -PASS -- COMPILE 'csawmg_intel' [39:15, 32:59] ( 1095 remarks ) -PASS -- TEST 'control_csawmg_intel' [13:09, 10:20](960 MB) -PASS -- TEST 'control_ras_intel' [07:37, 05:20](668 MB) - -PASS -- COMPILE 'wam_intel' [33:15, 32:49] ( 995 remarks ) -PASS -- TEST 'control_wam_intel' [20:03, 18:11](1625 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [54:18, 53:30] ( 1297 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:56, 04:37](1840 MB) -PASS -- TEST 'regional_control_faster_intel' [08:52, 07:50](1017 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:47, 03:29](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [07:31, 03:25](1573 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:30, 04:05](772 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:33, 03:30](776 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:52, 06:57](1093 MB) -PASS -- TEST 'control_ras_debug_intel' [04:30, 03:33](799 MB) -PASS -- TEST 'control_diag_debug_intel' [07:50, 03:39](1638 MB) -PASS -- TEST 'control_debug_p8_intel' [09:36, 04:44](1879 MB) -PASS -- TEST 'regional_debug_intel' [27:59, 24:12](1041 MB) -PASS -- TEST 'rap_control_debug_intel' [10:43, 06:46](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:52, 06:55](1160 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:34, 07:19](1159 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:52, 06:46](1167 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 07:18](1166 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:46, 06:54](1250 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:27, 06:17](1165 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:26, 06:30](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:32, 06:13](1163 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:28, 06:25](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 06:22](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:31, 06:20](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:15, 11:00](1165 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:36, 06:12](1159 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:34, 07:48](1167 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:28, 06:15](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:14, 10:48](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 04:53] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:59, 17:44](1659 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:16, 30:54] ( 3 warnings 1028 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:32, 05:52](1082 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:06, 09:43](901 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:56, 04:25](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:06, 09:26](946 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:50, 04:07](911 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:27, 05:13](861 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:36, 06:49](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:28, 03:03](852 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:17, 48:54] ( 3 warnings 1198 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:32, 03:32](1107 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:45, 01:29](1051 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:39](1021 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [35:13, 30:37] ( 3 warnings 1048 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:17, 07:13](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 05:57] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 06:10](1041 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:34, 06:05](1044 MB) -PASS -- TEST 'conus13km_debug_intel' [20:07, 18:44](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:16, 19:11](872 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:59, 10:52](1105 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:59, 18:46](1234 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:51] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:29, 06:21](1084 MB) - -PASS -- COMPILE 'hafsw_intel' [40:15, 38:56] ( 1 warnings 1428 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:43, 07:12](705 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:43, 06:47](1091 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:11, 09:29](768 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [20:03, 17:45](801 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:30, 19:07](822 MB) -PASS -- TEST 'gnv1_nested_intel' [11:46, 07:30](1684 MB) - -PASS -- COMPILE 'hafs_all_intel' [35:15, 34:20] ( 1269 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:51, 09:26](769 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:46, 09:32](754 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:38] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:26, 04:02](1066 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1037 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:26, 03:57](931 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:35, 04:02](929 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:26, 03:52](925 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:26, 03:53](1071 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:26, 03:42](1063 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:26, 03:46](944 MB) -FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_mx025_cfsr_intel' [, ]( MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:29, 08:13](844 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:23, 03:45](1065 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 05:15](2370 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:43, 05:31](2356 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:52] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 08:06](1013 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:12, 08:30] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:22, 04:10](1055 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:16] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:41, 01:40](233 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:39, 01:27](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:55](256 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:14, 34:38] ( 1016 remarks ) -FAILED: TEST TIMED OUT -- TEST 'atm_ds2s_docn_pcice_intel' [, ]( MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [34:14, 33:41] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:59, 06:04](1885 MB) - -PASS -- COMPILE 'atml_intel' [38:15, 37:47] ( 8 warnings 1186 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [12:51, 10:11](1858 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [12:48, 10:31](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:07, 06:27](1073 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:16] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:23, 08:39](1890 MB) - -PASS -- COMPILE 'atmw_intel' [37:14, 35:19] ( 1261 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:42, 03:18](1860 MB) - -PASS -- COMPILE 'atmaero_intel' [35:15, 34:01] ( 1099 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:46, 06:39](1951 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:00, 07:11](1732 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:41, 07:30](1746 MB) +PASS -- COMPILE 's2swa_32bit_intel' [45:17, 44:24] ( 1 warnings 1378 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:47, 08:34](2013 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:22, 50:00] ( 1 warnings 1425 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [37:36, 22:06](1886 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [44:10, 24:03](2009 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [33:06, 13:32](1112 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [38:50, 24:50](1846 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:19, 54:44] ( 1 warnings 1422 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:21, 21:36](1884 MB) + +PASS -- COMPILE 's2swa_intel' [43:17, 42:35] ( 1379 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:26, 09:19](2048 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [21:02, 09:42](2050 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:13, 05:39](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:35, 09:52](2065 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:17, 05:39](1735 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:17, 09:42](2320 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [20:31, 09:14](2061 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:48, 08:21](1998 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:00, 09:26](2050 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:47, 08:51](2037 MB) + +PASS -- COMPILE 's2sw_intel' [42:17, 41:49] ( 1277 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [20:00, 07:44](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:16, 08:09](1968 MB) + +PASS -- COMPILE 's2swa_debug_intel' [27:25, 07:44] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:39, 11:17](2083 MB) + +PASS -- COMPILE 's2sw_debug_intel' [26:20, 07:20] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [16:01, 08:21](1933 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [55:22, 38:13] ( 1008 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:59, 07:09](1951 MB) + +PASS -- COMPILE 's2s_intel' [51:25, 38:23] ( 1013 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [15:14, 12:43](3021 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:06, 04:01](3008 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:18, 02:33](2460 MB) + +PASS -- COMPILE 's2swa_faster_intel' [43:29, 34:13] ( 1607 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [42:19, 08:42](2043 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [53:16, 47:35] ( 1337 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:40, 22:29](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [55:24, 11:06](1132 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [56:42, 25:27](1882 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 06:37] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:35, 33:59](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [43:15, 38:37] ( 1 warnings 1124 remarks ) +PASS -- TEST 'control_flake_intel' [10:43, 04:43](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [48:34, 04:16](1550 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:34, 04:12](1548 MB) +PASS -- TEST 'control_latlon_intel' [10:16, 04:27](1546 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [39:34, 04:35](1547 MB) +PASS -- TEST 'control_c48_intel' [17:32, 11:47](1698 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:52, 10:22](830 MB) +PASS -- TEST 'control_c192_intel' [59:09, 14:49](1672 MB) +PASS -- TEST 'control_c384_intel' [01:08, 19:50](1800 MB) +PASS -- TEST 'control_c384gdas_intel' [59:24, 14:03](1008 MB) +PASS -- TEST 'control_stochy_intel' [08:39, 02:47](602 MB) +PASS -- TEST 'control_stochy_restart_intel' [48:46, 01:21](436 MB) +PASS -- TEST 'control_lndp_intel' [08:38, 02:38](599 MB) +PASS -- TEST 'control_iovr4_intel' [09:41, 03:58](604 MB) +PASS -- TEST 'control_iovr5_intel' [09:41, 03:52](600 MB) +PASS -- TEST 'control_p8_intel' [45:04, 06:11](1842 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [01:18, 04:43](1830 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [13:17, 05:07](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [27:20, 02:57](1052 MB) +PASS -- TEST 'control_noqr_p8_intel' [43:05, 05:13](1835 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [27:31, 02:57](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [41:17, 05:44](1831 MB) +PASS -- TEST 'control_2threads_p8_intel' [41:16, 05:15](1920 MB) +PASS -- TEST 'control_p8_lndp_intel' [14:25, 08:10](1836 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [42:22, 06:27](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [34:06, 04:46](1850 MB) +PASS -- TEST 'merra2_thompson_intel' [42:29, 05:54](1842 MB) +PASS -- TEST 'regional_control_intel' [37:18, 08:09](1002 MB) +PASS -- TEST 'regional_restart_intel' [11:55, 04:39](986 MB) +PASS -- TEST 'regional_decomp_intel' [13:12, 09:13](1002 MB) +PASS -- TEST 'regional_2threads_intel' [09:16, 07:30](992 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:22, 08:50](1012 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [17:14, 08:14](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [39:16, 38:18] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [02:39, 10:47](986 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [58:48, 06:06](1164 MB) +PASS -- TEST 'rap_decomp_intel' [56:39, 11:01](974 MB) +PASS -- TEST 'rap_2threads_intel' [58:19, 09:54](1074 MB) +PASS -- TEST 'rap_restart_intel' [10:00, 05:20](986 MB) +PASS -- TEST 'rap_sfcdiff_intel' [03:35, 11:01](985 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [59:01, 11:07](982 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:24, 08:24](998 MB) +PASS -- TEST 'hrrr_control_intel' [57:23, 05:32](989 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:23, 05:33](978 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 05:05](1053 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 03:19](918 MB) +PASS -- TEST 'rrfs_v1beta_intel' [04:00, 10:37](980 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [03:44, 13:06](1945 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [00:46, 13:03](1939 MB) + +PASS -- COMPILE 'csawmg_intel' [38:17, 35:54] ( 1089 remarks ) +PASS -- TEST 'control_csawmg_intel' [56:55, 09:41](960 MB) +PASS -- TEST 'control_ras_intel' [30:31, 04:43](657 MB) + +PASS -- COMPILE 'wam_intel' [36:16, 35:46] ( 992 remarks ) +FAILED: TEST TIMED OUT -- TEST 'control_wam_intel' [, ]( MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [39:17, 38:01] ( 1292 remarks ) +PASS -- TEST 'control_p8_faster_intel' [29:57, 04:34](1838 MB) +PASS -- TEST 'regional_control_faster_intel' [10:47, 07:58](997 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [26:15, 09:38] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [28:59, 03:41](1576 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [24:02, 03:27](1574 MB) +PASS -- TEST 'control_stochy_debug_intel' [23:33, 04:01](772 MB) +PASS -- TEST 'control_lndp_debug_intel' [20:32, 03:36](772 MB) +PASS -- TEST 'control_csawmg_debug_intel' [18:43, 06:12](1082 MB) +PASS -- TEST 'control_ras_debug_intel' [14:32, 03:36](786 MB) +PASS -- TEST 'control_diag_debug_intel' [14:54, 03:32](1632 MB) +PASS -- TEST 'control_debug_p8_intel' [13:01, 04:11](1853 MB) +PASS -- TEST 'regional_debug_intel' [32:51, 23:12](1036 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 06:16](1157 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:27, 06:05](1158 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 06:18](1161 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:25](1160 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 06:20](1156 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:44, 06:47](1242 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:29, 06:36](1160 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:34](1165 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:28, 06:20](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:35, 06:27](1162 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:36, 06:11](1158 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:27, 06:17](1157 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:32, 10:11](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:29, 06:07](1153 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 07:33](1160 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:25, 06:14](1157 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:52, 10:54](1163 MB) + +PASS -- COMPILE 'wam_debug_intel' [33:19, 05:25] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [21:02, 16:59](1651 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [05:17, 31:55] ( 3 warnings 1024 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:18, 05:33](1042 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:11, 09:00](890 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:22, 04:46](867 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:11, 08:40](935 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:20, 04:24](899 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:20, 05:03](854 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 06:46](895 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:32, 02:32](840 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [06:18, 33:24] ( 3 warnings 1197 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:04, 03:15](1095 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:50, 01:33](1042 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:48, 01:43](1011 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [58:17, 32:29] ( 3 warnings 1044 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:51, 05:52](904 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [31:13, 05:51] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:29, 06:10](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:30, 06:01](1036 MB) +PASS -- TEST 'conus13km_debug_intel' [22:05, 19:03](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:50, 19:09](859 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:44, 11:04](1093 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:52, 18:57](1222 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [28:14, 05:40] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:31, 06:32](1082 MB) + +PASS -- COMPILE 'hafsw_intel' [41:17, 40:27] ( 1 warnings 1416 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:31, 07:11](695 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 07:15](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:44, 10:14](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:05, 17:02](789 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:03, 19:07](801 MB) +PASS -- TEST 'gnv1_nested_intel' [12:15, 07:43](1682 MB) + +PASS -- COMPILE 'hafs_all_intel' [38:15, 37:10] ( 1263 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:41, 09:12](744 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:37, 09:00](735 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:32] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:27, 03:38](1072 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:11](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:27, 03:31](926 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:29, 03:35](924 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 03:39](920 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:29, 03:36](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:29, 03:54](1065 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:29, 03:32](928 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 08:01](889 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:23, 08:00](845 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:24, 03:37](1062 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:44, 05:28](2359 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:41, 05:08](2411 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 03:41] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:25, 07:59](1025 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:24] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 03:41](1074 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:54] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:39, 01:58](232 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:34, 02:05](270 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:33, 01:12](254 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:16, 37:27] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:51, 08:06](1896 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:15, 36:37] ( 1013 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:12, 07:57](1891 MB) + +PASS -- COMPILE 'atml_intel' [38:16, 38:01] ( 8 warnings 1165 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [17:14, 11:50](1854 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [17:35, 12:10](1846 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:55, 06:15](1064 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 06:52] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:02, 08:14](1886 MB) + +PASS -- COMPILE 'atmw_intel' [39:28, 38:11] ( 1258 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:19, 03:47](1851 MB) + +PASS -- COMPILE 'atmaero_intel' [38:23, 36:43] ( 1096 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:52, 06:36](1939 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:04, 06:53](1725 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:37, 07:05](1730 MB) SYNOPSIS: -Starting Date/Time: 20240805 00:16:01 -Ending Date/Time: 20240805 05:47:53 -Total Time: 05h:32m:33s +Starting Date/Time: 20240807 03:37:26 +Ending Date/Time: 20240807 09:38:56 +Total Time: 06h:02m:12s Compiles Completed: 36/36 -Tests Completed: 162/164 +Tests Completed: 163/164 Failed Tests: -* TEST datm_cdeps_mx025_cfsr_intel: FAILED: TEST TIMED OUT --- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/datm_cdeps_mx025_cfsr_intel/err -* TEST atm_ds2s_docn_pcice_intel: FAILED: TEST TIMED OUT --- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3949448/atm_ds2s_docn_pcice_intel/err +* TEST control_wam_intel: FAILED: TEST TIMED OUT +-- LOG: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_529651/control_wam_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -302,31 +300,31 @@ Result: FAILURE ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +f53391f8414a033e03d4d59c3362d7bb8ff66d9f Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -337,25 +335,22 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240730 -COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1849630 +COMPARISON DIRECTORY: /lfs4/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4088889 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems -* (-b) - NEW BASELINES FROM FILE: test_changes.list +* (-n) - RUN SINGLE TEST: control_wam * (-e) - USE ECFLOW -PASS -- COMPILE 'datm_cdeps_intel' [09:12, 08:39] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:15, 08:04](894 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [35:18, 34:20] ( 1016 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:00, 06:19](1916 MB) +PASS -- COMPILE 'wam_intel' [18:40, 35:42] ( 992 remarks ) +PASS -- TEST 'control_wam_intel' [24:20, 15:03](1616 MB) SYNOPSIS: -Starting Date/Time: 20240805 15:51:58 -Ending Date/Time: 20240805 16:42:30 -Total Time: 00h:50m:51s -Compiles Completed: 2/2 -Tests Completed: 2/2 +Starting Date/Time: 20240807 15:58:18 +Ending Date/Time: 20240807 19:42:39 +Total Time: 03h:44m:40s +Compiles Completed: 1/1 +Tests Completed: 1/1 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 7a67ef80ad..b08d50a9ee 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,31 +1,31 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -2c5fe7d612bee0ccb9005bd4f6b178d7ccb93ba3 +c34693f57b7804adb9fae55d41f8519a32801059 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (remotes/origin/feature/chunked_array_support_use_it) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5296-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,284 +36,284 @@ 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-20240730 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2194935 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2683135 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [17:11, 16:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:42, 14:21](2093 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:33] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 17:57](1965 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:16, 18:56](2127 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:07, 08:50](1211 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:45, 20:12](1873 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:21] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:42, 17:37](1953 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:10, 08:06] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:43, 27:11](1932 MB) - -PASS -- COMPILE 's2swa_intel' [16:11, 15:42] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:29](2152 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:41, 14:09](2143 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:45, 07:55](1815 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:32](2163 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:45, 08:03](1711 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:35, 13:24](2439 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:31, 14:33](2130 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:32](2047 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:40, 14:27](2148 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:21](2713 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:51, 08:57](2737 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:03, 11:22](3664 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [14:27, 07:05](3506 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:24, 05:54](2111 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 15:14] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:22, 13:49](1984 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:27, 04:41](2038 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:10, 08:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:21, 08:50](2173 MB) - -PASS -- COMPILE 's2sw_debug_intel' [08:11, 07:47] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:03, 06:09](2017 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:11, 13:54] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:10, 04:40](2049 MB) - -PASS -- COMPILE 's2s_intel' [13:11, 12:51] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:52](3109 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:58, 03:20](3087 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:51, 02:09](2538 MB) - -PASS -- COMPILE 's2swa_faster_intel' [25:11, 24:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:29, 14:45](2138 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 20:21] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 18:06](1998 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:20, 08:59](1256 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:07, 20:22](1905 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:10, 06:54] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:00, 28:37](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:26, 03:37](688 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:43, 03:04](1590 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:46, 03:09](1589 MB) -PASS -- TEST 'control_latlon_intel' [03:41, 03:04](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:47, 03:11](1591 MB) -PASS -- TEST 'control_c48_intel' [10:49, 09:11](1742 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 07:55](848 MB) -PASS -- TEST 'control_c192_intel' [11:57, 11:09](1736 MB) -PASS -- TEST 'control_c384_intel' [14:53, 12:11](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [12:34, 09:30](1356 MB) -PASS -- TEST 'control_stochy_intel' [02:22, 01:47](646 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:47, 01:05](475 MB) -PASS -- TEST 'control_lndp_intel' [02:22, 01:41](643 MB) -PASS -- TEST 'control_iovr4_intel' [03:28, 02:39](643 MB) -PASS -- TEST 'control_iovr5_intel' [03:23, 02:39](643 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:31](1886 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:08, 03:25](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 03:18](1882 MB) -PASS -- TEST 'control_restart_p8_intel' [03:14, 01:55](1101 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:13, 03:22](1879 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:21, 01:58](1130 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:08, 03:26](1873 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:11, 03:35](1972 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:48, 05:48](1882 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:31, 04:48](1948 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:24, 03:26](1899 MB) -PASS -- TEST 'merra2_thompson_intel' [05:34, 03:41](1894 MB) -PASS -- TEST 'regional_control_intel' [07:37, 06:19](1084 MB) -PASS -- TEST 'regional_restart_intel' [04:47, 03:20](1082 MB) -PASS -- TEST 'regional_decomp_intel' [07:34, 06:38](1084 MB) -PASS -- TEST 'regional_2threads_intel' [05:32, 04:37](1077 MB) -PASS -- TEST 'regional_noquilt_intel' [06:37, 06:09](1381 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:46, 06:12](1086 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 06:16](1093 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:31](1906 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 12:31] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:19, 08:14](1052 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:55, 05:13](1306 MB) -PASS -- TEST 'rap_decomp_intel' [09:54, 08:29](1022 MB) -PASS -- TEST 'rap_2threads_intel' [10:16, 08:15](1160 MB) -PASS -- TEST 'rap_restart_intel' [06:34, 04:20](1044 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:58, 08:11](1055 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:58, 08:29](1024 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:33, 06:09](1078 MB) -PASS -- TEST 'hrrr_control_intel' [06:08, 04:16](1031 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:54, 04:23](1020 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:15, 04:04](1097 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:18](953 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:18, 08:07](1049 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:40](1985 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:27, 09:25](2020 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:36] -PASS -- TEST 'control_csawmg_intel' [07:42, 06:28](1024 MB) -PASS -- TEST 'control_ras_intel' [04:26, 03:24](718 MB) - -PASS -- COMPILE 'wam_intel' [12:10, 11:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:45, 12:07](1670 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [21:11, 20:19] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:18, 03:09](1888 MB) -PASS -- TEST 'regional_control_faster_intel' [06:39, 05:56](1091 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:55] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:51, 02:45](1619 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:56, 02:40](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:27, 03:06](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:27, 02:47](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:47, 04:22](1138 MB) -PASS -- TEST 'control_ras_debug_intel' [03:28, 02:49](825 MB) -PASS -- TEST 'control_diag_debug_intel' [03:53, 02:48](1683 MB) -PASS -- TEST 'control_debug_p8_intel' [03:53, 03:08](1918 MB) -PASS -- TEST 'regional_debug_intel' [18:49, 17:36](1116 MB) -PASS -- TEST 'rap_control_debug_intel' [05:26, 04:56](1215 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:49](1200 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:28, 04:57](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 05:00](1206 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:26, 04:55](1208 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:34, 05:06](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:27, 05:01](1209 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:27, 05:01](1211 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:57](1202 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:58](1215 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:44](1200 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:52](1213 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1207 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:23, 04:49](1202 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:57](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:22, 04:56](1211 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:25, 08:23](1204 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 05:02] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:45, 13:31](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 11:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:46](1169 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:14, 06:57](1003 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:24, 03:42](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:56, 07:07](1078 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:34](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:11, 03:49](903 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 05:14](978 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:44, 02:00](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [18:12, 17:36] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:56, 02:38](1181 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:47, 01:11](1134 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:46, 01:29](1079 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:11, 11:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:43, 04:27](979 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:21, 04:50](1089 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:39](1083 MB) -PASS -- TEST 'conus13km_debug_intel' [15:58, 14:22](1245 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:55, 14:14](946 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:40, 08:44](1174 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:46, 14:23](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 05:22] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:31, 04:58](1136 MB) - -PASS -- COMPILE 'hafsw_intel' [14:10, 13:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:14, 05:54](763 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 06:11](1139 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:23, 07:23](836 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:12, 24:19](874 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:18, 28:18](894 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 06:57](514 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:30, 08:14](523 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:53, 03:24](380 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:22, 09:29](491 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:50, 04:40](536 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:47, 04:23](540 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 05:37](591 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:29, 01:31](409 MB) -PASS -- TEST 'gnv1_nested_intel' [07:11, 04:18](1737 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:10, 05:42] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:02, 13:22](603 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [22:11, 21:46] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [14:09, 12:45](674 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:08, 12:50](739 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 13:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:03, 08:53](727 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 12:22] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:20, 07:20](828 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:24, 07:21](813 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:16](1204 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:55] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:21, 02:57](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:56](1116 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:17, 02:49](1028 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:18, 02:52](1022 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:54](1021 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:18, 02:57](1163 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:17, 02:59](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:51](1016 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:27](1026 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:10, 06:24](998 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:20, 02:57](1133 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:18, 04:27](2400 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:18, 04:20](2390 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:36] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:19, 06:22](1085 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:23] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:58](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:32] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:28, 01:01](255 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:55](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:36](323 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 11:54] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:06, 04:06](1973 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:11, 11:46] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:05, 03:55](1956 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:34] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:27, 04:51](1870 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:25, 04:48](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:54, 02:39](1082 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 06:17] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:28, 06:01](1897 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 12:25] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:20, 02:10](1917 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 11:58] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:15, 04:32](2001 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:11, 05:16](1769 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:23](1797 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 05:22] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [23:05, 20:53](4560 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:11, 17:48] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:45, 14:17](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:11, 23:57] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:50, 18:00](1954 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 18:58](2136 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:55](1208 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:50, 20:22](1865 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 21:51] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:46, 17:44](1944 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 09:46] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:53, 27:32](1937 MB) + +PASS -- COMPILE 's2swa_intel' [18:11, 17:31] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:33, 14:18](2131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:45, 14:38](2131 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:46, 07:52](1818 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [16:33, 14:34](2155 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:46, 07:51](1707 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:40, 13:22](2421 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [16:33, 14:43](2124 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:36, 12:12](2042 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:46, 14:20](2126 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:30, 16:45](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:25, 08:52](2721 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [18:44, 11:59](3717 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:23, 07:25](3506 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:29, 05:57](2103 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 15:01] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [15:15, 14:00](1972 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:25, 04:50](2050 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 09:08] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:45, 08:42](2163 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:10, 08:53] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:09, 06:12](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:18] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:29, 04:42](2042 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 15:06] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [11:01, 10:00](3051 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:03, 03:18](3027 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:02, 02:18](2474 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:10, 16:51] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:31, 14:47](2131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [19:11, 18:30] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:13, 18:19](1984 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:25, 09:04](1230 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:13, 20:31](1921 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:10, 07:38] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:23, 29:28](1976 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [14:11, 13:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:27, 03:43](687 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:47, 03:13](1587 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:52, 03:18](1583 MB) +PASS -- TEST 'control_latlon_intel' [04:41, 03:11](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:52, 03:15](1584 MB) +PASS -- TEST 'control_c48_intel' [10:52, 09:27](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:36, 08:07](840 MB) +PASS -- TEST 'control_c192_intel' [13:02, 11:49](1727 MB) +PASS -- TEST 'control_c384_intel' [15:02, 12:55](1961 MB) +PASS -- TEST 'control_c384gdas_intel' [12:39, 09:55](1342 MB) +PASS -- TEST 'control_stochy_intel' [02:25, 01:51](641 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:07](476 MB) +PASS -- TEST 'control_lndp_intel' [02:25, 01:46](644 MB) +PASS -- TEST 'control_iovr4_intel' [03:28, 02:45](639 MB) +PASS -- TEST 'control_iovr5_intel' [03:29, 02:43](642 MB) +PASS -- TEST 'control_p8_intel' [05:14, 03:30](1884 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:21, 03:34](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:36, 03:25](1891 MB) +PASS -- TEST 'control_restart_p8_intel' [03:20, 02:00](1091 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:19, 03:23](1877 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:25, 02:00](1133 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:19, 03:29](1865 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:09, 03:35](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:55, 05:54](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:34, 04:52](1939 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:33, 03:30](1890 MB) +PASS -- TEST 'merra2_thompson_intel' [05:42, 03:51](1879 MB) +PASS -- TEST 'regional_control_intel' [07:41, 06:27](1078 MB) +PASS -- TEST 'regional_restart_intel' [04:40, 03:35](1076 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 06:46](1072 MB) +PASS -- TEST 'regional_2threads_intel' [05:41, 04:36](1070 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 06:26](1382 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:35, 06:26](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 06:30](1078 MB) +PASS -- TEST 'regional_wofs_intel' [08:34, 07:51](1903 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:57] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:05, 08:29](1051 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:03, 05:15](1256 MB) +PASS -- TEST 'rap_decomp_intel' [10:05, 08:45](1030 MB) +PASS -- TEST 'rap_2threads_intel' [10:05, 08:33](1156 MB) +PASS -- TEST 'rap_restart_intel' [06:35, 04:27](1042 MB) +PASS -- TEST 'rap_sfcdiff_intel' [10:06, 08:20](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:06, 08:39](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:16](1073 MB) +PASS -- TEST 'hrrr_control_intel' [06:03, 04:23](1031 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:03, 04:28](1025 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:03, 04:11](1094 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:45, 02:18](945 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:28, 08:19](1046 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 10:02](1986 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:30, 09:47](2029 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 12:44] +PASS -- TEST 'control_csawmg_intel' [07:40, 06:32](1018 MB) +PASS -- TEST 'control_ras_intel' [04:26, 03:29](718 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 12:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:45, 12:40](1664 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 13:04] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:21, 03:13](1880 MB) +PASS -- TEST 'regional_control_faster_intel' [07:36, 06:13](1077 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 09:54] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 03:14](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:44, 02:39](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:26, 03:05](821 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:46](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:37, 04:21](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [03:20, 02:53](825 MB) +PASS -- TEST 'control_diag_debug_intel' [03:46, 02:48](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [04:43, 03:09](1918 MB) +PASS -- TEST 'regional_debug_intel' [17:41, 17:07](1083 MB) +PASS -- TEST 'rap_control_debug_intel' [05:25, 04:59](1208 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:31, 04:50](1204 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:27, 04:57](1203 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:28, 04:58](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:53](1210 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:15](1293 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:26, 05:02](1213 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:24, 05:01](1210 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:25, 04:56](1207 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:25, 04:56](1211 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:57](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:20, 04:55](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:22, 07:58](1199 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 04:54](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:24, 06:07](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:26, 04:57](1206 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:28, 08:42](1211 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 06:22] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [13:43, 13:08](1685 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:26] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:56, 04:54](1130 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:21, 07:14](996 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:47](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:02, 07:20](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:06, 03:41](940 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:46, 03:56](897 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [27:33, 05:23](977 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:11, 02:10](874 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:54, 02:42](1165 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:15](1121 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:49, 01:34](1071 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:10, 12:19] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:48, 04:35](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 06:35] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:26, 04:55](1086 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:45](1081 MB) +PASS -- TEST 'conus13km_debug_intel' [15:55, 14:53](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:44](934 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:45, 08:18](1171 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 14:40](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:13] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:04](1135 MB) + +PASS -- COMPILE 'hafsw_intel' [16:11, 15:41] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:13, 06:24](744 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:30, 07:23](1113 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:29, 07:44](820 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [26:18, 24:37](848 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:21, 28:09](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:07, 07:15](496 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:29, 08:36](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:06, 03:36](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:24, 09:57](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 04:59](526 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:48, 04:48](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:53, 06:04](571 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:39](408 MB) +PASS -- TEST 'gnv1_nested_intel' [26:26, 04:24](1716 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [08:11, 08:06] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:14, 13:05](584 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:11, 15:09] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [33:17, 13:02](641 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [34:27, 13:20](733 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:58] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [29:09, 08:46](713 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 14:28] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [29:19, 07:34](816 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [29:23, 07:31](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:12, 16:22](1198 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [23:30, 02:58](1153 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:54](1107 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [23:19, 02:50](1020 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [22:19, 02:55](1019 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [22:24, 02:53](1019 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [22:20, 02:59](1138 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [21:19, 02:59](1145 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [23:20, 04:21](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:13, 06:31](1027 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [25:15, 06:28](1005 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [23:21, 04:33](1156 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:23, 04:25](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [22:21, 04:20](2442 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 04:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [24:21, 06:31](1078 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:41] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [19:20, 02:59](1142 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:24] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [14:34, 01:01](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [14:26, 00:56](321 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:32, 00:37](319 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:11, 13:04] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [17:16, 04:08](1978 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:11, 12:52] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [17:08, 03:56](1944 MB) + +PASS -- COMPILE 'atml_intel' [14:12, 13:27] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [18:34, 04:49](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [16:33, 04:50](1861 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:49](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:11, 08:14] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:34, 05:53](1889 MB) + +PASS -- COMPILE 'atmw_intel' [13:12, 12:55] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:23, 02:07](1908 MB) + +PASS -- COMPILE 'atmaero_intel' [13:12, 12:50] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:36](1990 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:20](1775 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:01, 05:25](1787 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 06:39] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [23:11, 21:06](4568 MB) SYNOPSIS: -Starting Date/Time: 20240805 07:55:58 -Ending Date/Time: 20240805 09:26:43 -Total Time: 01h:31m:48s +Starting Date/Time: 20240806 15:14:51 +Ending Date/Time: 20240806 17:05:39 +Total Time: 01h:51m:39s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 55875c3ebc..1be8a7287f 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,31 +1,31 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -1d72e10c471068cdf993bc535757009c7d8230d0 +e875df6009b3d0da5f8808467e1127a1740672e1 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 503991a4ae44ee3c36690cd5761b9a230620aa4b CICE-interface/CICE (CICE6.0.0-451-g503991a) + 2ffee5cd48e0c389bdf75c0d910b3f6d53263563 CICE-interface/CICE (CICE6.0.0-451-g2ffee5c) f6ff8f7c4d4cb6feabe3651b13204cf43fc948e3 CICE-interface/CICE/icepack (Icepack1.1.0-182-gf6ff8f7) - f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e4) + f13e16e414e115e268b2dd300b665e628e5f2429 CMEPS-interface/CMEPS (cmeps_v0.4.1-2308-gf13e16e) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 0495c19204325401ccba2943f99e65ee9190f07d FV3 (heads/develop-64-g0495c19) - 1720f85e54765251f869756e67c93ef7acefac0d FV3/atmos_cubed_sphere (201912_public_release-402-g1720f85) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 2a50cccd916cceafaf031f4cd14f2ecef277be8f FV3/ccpp/physics (EP4-840-g2a50cccd) + 80134e94003c4604f2133dab2ab67e8b72660731 FV3 (remotes/origin/feature/chunked_array_support_use_it) + 55182e9baf0c67e8b5beca801b924aea6237f278 FV3/atmos_cubed_sphere (201912_public_release-415-g55182e9) + 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (v0.1.0-1698-g0f82327) + 9e736da10c58ea10b93c9e6ec26a588b0bb78b60 FV3/ccpp/physics (EP4-850-g9e736da1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) be0410ece28f2b5b9c089f8ca09ce0c80c79fe6c FV3/upp (upp_v10.2.0-191-gbe0410ec) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd -7476b8f2790a47d788f79cebfdbb551567ae7cf8 FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 8d05f394d31f63d08970d7c4899447d70b63f1b1 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10052-g8d05f394d) + 4b8777eb08b065d8a95e5317b6270a7a67ccf93e MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10053-g4b8777eb0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 72fe2ad6fb4fa10e6e39e7e1163766545c4dc4fe WW3 (6.07.1-346-g72fe2ad6) + 7f548c795a348bbb0fe4967dd25692c79036dc73 WW3 (6.07.1-346-g7f548c79) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,238 +36,238 @@ 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-20240730 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_46672 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_24943 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [12:30, 11:18] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [39:29, 01:41](3099 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:30, 12:07] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [39:29, 02:01](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:14, 01:51](1836 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [21:14, 02:11](985 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [39:30, 01:31](1801 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [17:34, 17:10] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [34:25, 01:06](1820 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:19, 04:42] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [46:40, 01:40](1836 MB) - -PASS -- COMPILE 's2swa_intel' [11:29, 11:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:34](3135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 01:52](3133 MB) -PASS -- TEST 'cpld_restart_p8_intel' [32:17, 01:01](3064 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:31](3152 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [32:16, 00:56](3082 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:08](3369 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:34](3128 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:40](3077 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:53](3129 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [40:39, 04:31](4129 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:38, 05:44](4273 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 01:53](3114 MB) - -PASS -- COMPILE 's2sw_intel' [14:36, 13:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [51:12, 00:52](1830 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [51:12, 00:59](1896 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:41, 21:51] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [29:17, 01:10](1899 MB) - -PASS -- COMPILE 's2s_intel' [11:29, 10:18] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [40:29, 01:04](2925 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [40:29, 01:28](2935 MB) -PASS -- TEST 'cpld_restart_c48_intel' [36:27, 01:04](2347 MB) - -PASS -- COMPILE 's2swa_faster_intel' [27:47, 27:26] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [24:11, 01:53](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:45, 21:13] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [44:08, 00:54](1837 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [26:43, 01:18](1000 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:44, 01:19](1806 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:29, 16:02] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:10, 01:50](1863 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [21:35, 21:16] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [18:53, 00:23](571 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [18:53, 00:28](1463 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:53, 00:24](1475 MB) -PASS -- TEST 'control_latlon_intel' [18:53, 00:24](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [18:53, 00:32](1468 MB) -PASS -- TEST 'control_c48_intel' [18:52, 01:00](1592 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:52, 00:51](716 MB) -PASS -- TEST 'control_c192_intel' [18:53, 00:28](1584 MB) -PASS -- TEST 'control_c384_intel' [18:57, 01:25](1900 MB) -PASS -- TEST 'control_c384gdas_intel' [18:57, 02:04](1086 MB) -PASS -- TEST 'control_stochy_intel' [17:46, 00:26](529 MB) -PASS -- TEST 'control_stochy_restart_intel' [15:18, 01:02](332 MB) -PASS -- TEST 'control_lndp_intel' [17:46, 00:27](524 MB) -PASS -- TEST 'control_iovr4_intel' [17:46, 00:42](525 MB) -PASS -- TEST 'control_iovr5_intel' [17:34, 00:43](522 MB) -PASS -- TEST 'control_p8_intel' [17:14, 02:02](1767 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [16:48, 02:04](1767 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [15:34, 01:56](1778 MB) -PASS -- TEST 'control_restart_p8_intel' [11:38, 00:40](919 MB) -PASS -- TEST 'control_noqr_p8_intel' [15:19, 01:34](1768 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:18, 01:05](922 MB) -PASS -- TEST 'control_decomp_p8_intel' [15:11, 01:30](1762 MB) -PASS -- TEST 'control_2threads_p8_intel' [15:07, 00:50](1850 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:05, 01:16](1773 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [15:00, 02:01](1829 MB) -PASS -- TEST 'control_p8_mynn_intel' [14:27, 01:47](1774 MB) -PASS -- TEST 'merra2_thompson_intel' [14:21, 01:43](1770 MB) -PASS -- TEST 'regional_control_intel' [14:13, 01:14](851 MB) -PASS -- TEST 'regional_restart_intel' [07:27, 00:26](852 MB) -PASS -- TEST 'regional_decomp_intel' [14:04, 00:53](861 MB) -PASS -- TEST 'regional_2threads_intel' [13:51, 00:53](908 MB) -PASS -- TEST 'regional_noquilt_intel' [13:50, 00:19](1174 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [13:25, 01:15](851 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [13:16, 01:13](851 MB) -PASS -- TEST 'regional_wofs_intel' [13:16, 00:56](1576 MB) - -PASS -- COMPILE 'rrfs_intel' [17:33, 16:31] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [22:56, 01:36](911 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [22:57, 01:07](1098 MB) -PASS -- TEST 'rap_decomp_intel' [22:56, 01:23](913 MB) -PASS -- TEST 'rap_2threads_intel' [22:56, 01:41](998 MB) -PASS -- TEST 'rap_restart_intel' [13:13, 01:15](783 MB) -PASS -- TEST 'rap_sfcdiff_intel' [22:56, 02:14](909 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [22:56, 02:00](913 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:13, 01:40](782 MB) -PASS -- TEST 'hrrr_control_intel' [22:56, 01:03](906 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [22:56, 00:56](908 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [22:57, 01:23](990 MB) -PASS -- TEST 'hrrr_control_restart_intel' [12:51, 01:09](739 MB) -PASS -- TEST 'rrfs_v1beta_intel' [22:56, 02:11](906 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [22:56, 00:55](1872 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [22:56, 01:08](1859 MB) - -PASS -- COMPILE 'csawmg_intel' [14:29, 14:07] -PASS -- TEST 'control_csawmg_intel' [24:59, 00:30](875 MB) -PASS -- TEST 'control_ras_intel' [24:59, 00:56](564 MB) - -PASS -- COMPILE 'wam_intel' [14:30, 13:25] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [24:58, 00:55](1565 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:30, 16:15] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [12:09, 01:56](1761 MB) -PASS -- TEST 'regional_control_faster_intel' [12:00, 00:27](847 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [23:38, 23:17] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:30, 01:19](1498 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:30, 01:25](1504 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:30, 00:47](700 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:30, 01:05](701 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 00:24](1009 MB) -PASS -- TEST 'control_ras_debug_intel' [06:30, 01:03](710 MB) -PASS -- TEST 'control_diag_debug_intel' [06:30, 01:18](1562 MB) -PASS -- TEST 'control_debug_p8_intel' [06:30, 00:56](1794 MB) -PASS -- TEST 'regional_debug_intel' [06:29, 01:05](890 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 00:46](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:30, 00:56](1077 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 00:47](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:30, 00:47](1088 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:06, 00:45](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:00, 00:28](1166 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:50, 00:34](1082 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:23, 00:30](1087 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:14, 00:37](1087 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:08, 00:41](1084 MB) -PASS -- TEST 'rap_noah_debug_intel' [04:57, 00:48](1080 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [04:30, 00:41](1084 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [04:29, 00:26](1078 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [03:30, 00:45](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [03:17, 00:29](1093 MB) -PASS -- TEST 'rap_flake_debug_intel' [03:12, 00:42](1088 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [02:58, 01:54](1090 MB) - -PASS -- COMPILE 'wam_debug_intel' [23:46, 23:14] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [02:30, 01:13](1595 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:30, 13:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:16, 01:29](957 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:59, 01:29](787 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:54, 02:10](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:14, 01:35](858 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:10, 02:25](847 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:00, 01:52](789 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [02:20, 01:41](692 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [01:55, 00:19](670 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:44, 14:38] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [09:12, 01:11](1005 MB) -PASS -- TEST 'conus13km_2threads_intel' [01:56, 00:50](1011 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [01:54, 00:40](884 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:32, 15:14] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:38, 01:44](809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [29:05, 28:07] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [53:50, 00:57](962 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [53:50, 01:00](958 MB) -PASS -- TEST 'conus13km_debug_intel' [53:50, 01:08](1049 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [53:50, 00:43](723 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [53:50, 00:21](1051 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [53:50, 01:06](1122 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:26, 10:24] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 00:50](996 MB) - -PASS -- COMPILE 'hafsw_intel' [16:33, 15:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [01:22, 01:58](616 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [01:23, 00:58](964 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [01:20, 01:34](661 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [01:20, 01:30](703 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [00:54, 01:25](715 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [00:37, 01:23](396 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [59:53, 01:58](403 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [59:42, 01:25](287 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [59:45, 02:00](374 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [59:40, 01:17](426 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [59:28, 01:10](417 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [59:27, 00:59](496 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [59:20, 00:55](318 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:42, 09:07] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [01:36, 01:13](523 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:41, 18:52] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [49:35, 00:47](534 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [49:35, 01:39](713 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:30, 14:54] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [53:10, 00:57](705 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:42, 18:15] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [48:45, 01:16](660 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [48:45, 02:09](647 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [48:43, 00:26](882 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:38, 09:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [55:51, 01:35](1827 MB) - -PASS -- COMPILE 'atml_intel' [21:52, 21:07] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [14:30, 13:53] ( 868 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [22:36, 21:56] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [38:44, 01:21](3025 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [38:44, 01:51](2906 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [38:44, 01:43](2921 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:22, 08:54] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [46:29, 00:53](4438 MB) +PASS -- COMPILE 's2swa_32bit_intel' [38:03, 31:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [52:01, 02:24](3103 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:41, 12:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:09, 02:46](1817 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:26, 02:11](1846 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:37, 02:25](974 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:10, 03:01](1782 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:48, 18:38] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [06:01, 02:02](1808 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:33, 05:58] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [18:17, 02:42](1838 MB) + +PASS -- COMPILE 's2swa_intel' [30:55, 24:35] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [59:55, 02:10](3131 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [59:55, 02:39](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [49:22, 02:39](3057 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [59:55, 01:57](3151 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [49:24, 02:05](3076 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [59:55, 02:38](3374 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [59:55, 02:13](3126 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [59:56, 02:05](3075 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [59:55, 02:24](3138 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [00:04, 06:43](4129 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [28:33, 05:13](4264 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [59:55, 02:26](3108 MB) + +PASS -- COMPILE 's2sw_intel' [22:45, 16:06] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:04, 01:46](1822 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:04, 02:57](1894 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:41, 10:43] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:08, 02:51](1887 MB) + +PASS -- COMPILE 's2s_intel' [16:40, 10:29] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [14:08, 02:18](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [14:08, 01:56](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:54, 02:03](2285 MB) + +PASS -- COMPILE 's2swa_faster_intel' [32:58, 26:57] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [57:51, 02:14](3132 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:53, 23:58] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [59:56, 02:33](1816 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [39:28, 02:29](999 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:00, 02:30](1804 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [26:43, 22:50] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [49:24, 02:06](1854 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [20:41, 15:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [53:28, 02:09](569 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [53:28, 02:20](1466 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [49:19, 01:42](1481 MB) +PASS -- TEST 'control_latlon_intel' [49:15, 01:34](1476 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [49:11, 01:53](1473 MB) +PASS -- TEST 'control_c48_intel' [48:57, 01:41](1561 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [48:07, 01:56](689 MB) +PASS -- TEST 'control_c192_intel' [47:45, 02:21](1578 MB) +PASS -- TEST 'control_c384_intel' [47:26, 02:49](1873 MB) +PASS -- TEST 'control_c384gdas_intel' [47:26, 04:00](1071 MB) +PASS -- TEST 'control_stochy_intel' [47:22, 02:11](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [40:49, 02:00](326 MB) +PASS -- TEST 'control_lndp_intel' [47:19, 02:13](524 MB) +PASS -- TEST 'control_iovr4_intel' [46:43, 01:45](525 MB) +PASS -- TEST 'control_iovr5_intel' [45:55, 01:24](520 MB) +PASS -- TEST 'control_p8_intel' [45:14, 02:18](1758 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [43:53, 02:44](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [43:53, 02:45](1761 MB) +PASS -- TEST 'control_restart_p8_intel' [38:36, 02:24](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [43:46, 02:23](1751 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [36:36, 01:55](921 MB) +PASS -- TEST 'control_decomp_p8_intel' [43:46, 02:17](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [43:25, 02:34](1836 MB) +PASS -- TEST 'control_p8_lndp_intel' [43:23, 01:58](1769 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [43:19, 02:50](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [42:53, 02:14](1761 MB) +PASS -- TEST 'merra2_thompson_intel' [42:52, 03:08](1760 MB) +PASS -- TEST 'regional_control_intel' [42:27, 01:25](844 MB) +PASS -- TEST 'regional_restart_intel' [34:44, 01:19](841 MB) +PASS -- TEST 'regional_decomp_intel' [42:20, 02:11](840 MB) +PASS -- TEST 'regional_2threads_intel' [41:14, 01:41](895 MB) +PASS -- TEST 'regional_noquilt_intel' [40:49, 01:18](1170 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [40:20, 02:27](844 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [40:05, 01:19](840 MB) +PASS -- TEST 'regional_wofs_intel' [39:42, 02:13](1572 MB) + +PASS -- COMPILE 'rrfs_intel' [18:33, 14:31] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [54:35, 02:33](911 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [54:36, 02:36](1059 MB) +PASS -- TEST 'rap_decomp_intel' [54:35, 02:27](909 MB) +PASS -- TEST 'rap_2threads_intel' [54:35, 02:54](992 MB) +PASS -- TEST 'rap_restart_intel' [38:21, 02:21](779 MB) +PASS -- TEST 'rap_sfcdiff_intel' [54:35, 02:17](910 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [54:35, 02:32](909 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [37:22, 02:46](778 MB) +PASS -- TEST 'hrrr_control_intel' [54:35, 02:21](908 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [54:35, 02:21](906 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [54:36, 02:48](982 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:21, 02:15](734 MB) +PASS -- TEST 'rrfs_v1beta_intel' [54:35, 02:18](904 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [54:35, 02:02](1870 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [54:35, 02:23](1856 MB) + +PASS -- COMPILE 'csawmg_intel' [30:54, 27:28] +PASS -- TEST 'control_csawmg_intel' [36:49, 01:29](864 MB) +PASS -- TEST 'control_ras_intel' [36:36, 01:54](561 MB) + +PASS -- COMPILE 'wam_intel' [14:34, 12:43] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [53:30, 01:39](1558 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:36, 16:57] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [36:26, 02:58](1751 MB) +PASS -- TEST 'regional_control_faster_intel' [36:21, 01:21](835 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:32, 11:25] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [36:18, 02:15](1499 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [36:17, 02:21](1495 MB) +PASS -- TEST 'control_stochy_debug_intel' [35:39, 01:49](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [35:20, 02:01](705 MB) +PASS -- TEST 'control_csawmg_debug_intel' [35:07, 01:30](1006 MB) +PASS -- TEST 'control_ras_debug_intel' [34:54, 02:08](707 MB) +PASS -- TEST 'control_diag_debug_intel' [34:37, 02:34](1561 MB) +PASS -- TEST 'control_debug_p8_intel' [34:12, 01:36](1786 MB) +PASS -- TEST 'regional_debug_intel' [33:41, 02:11](884 MB) +PASS -- TEST 'rap_control_debug_intel' [33:07, 01:36](1084 MB) +PASS -- TEST 'hrrr_control_debug_intel' [32:31, 01:53](1080 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [32:24, 01:49](1081 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [32:22, 01:44](1080 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [32:20, 01:43](1084 MB) +PASS -- TEST 'rap_diag_debug_intel' [31:30, 01:28](1166 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [31:17, 01:32](1084 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [31:08, 01:39](1084 MB) +PASS -- TEST 'rap_lndp_debug_intel' [31:06, 01:42](1088 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [30:31, 01:40](1085 MB) +PASS -- TEST 'rap_noah_debug_intel' [30:28, 01:48](1082 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [30:27, 01:40](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [30:25, 01:25](1080 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [30:07, 01:45](1080 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [30:04, 01:23](1084 MB) +PASS -- TEST 'rap_flake_debug_intel' [30:02, 01:38](1088 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [29:53, 02:43](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:26, 07:27] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:40, 01:40](1580 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:29, 07:54] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [29:13, 01:59](923 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [29:01, 02:16](786 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [28:42, 02:52](781 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [28:23, 02:25](843 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [28:18, 03:03](830 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:00, 02:41](780 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:57, 03:03](677 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:51, 01:20](664 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:29, 09:27] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [27:38, 01:47](998 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:40, 01:58](996 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [22:30, 01:43](866 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:30, 10:58] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [26:57, 02:14](814 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:23, 06:32] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [25:34, 01:50](962 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [24:36, 01:50](960 MB) +PASS -- TEST 'conus13km_debug_intel' [24:36, 01:49](1052 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:36, 01:38](716 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:37, 01:35](1047 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:46, 02:11](1114 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [30:53, 28:52] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [21:25, 01:52](982 MB) + +PASS -- COMPILE 'hafsw_intel' [14:29, 12:50] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [23:41, 03:05](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [23:32, 02:07](943 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [23:29, 03:00](648 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [22:53, 02:49](674 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:53, 02:43](695 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [22:52, 02:07](377 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [22:30, 03:12](388 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [20:56, 02:34](282 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [20:56, 04:52](370 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:42, 01:42](401 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:07, 01:52](411 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:51, 01:56](479 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:05, 01:55](315 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [19:33, 16:58] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 02:28](517 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:50, 20:07] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:44, 02:29](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:04, 02:14](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:31, 13:23] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:31, 03:41](701 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:29, 11:12] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [17:26, 02:28](651 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [17:22, 04:02](627 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:02, 02:13](878 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:38, 12:01] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [16:29, 01:44](1816 MB) + +PASS -- COMPILE 'atml_intel' [17:37, 14:56] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [11:25, 09:03] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [17:46, 14:43] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:55, 02:59](3028 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:50, 02:22](2907 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:39, 02:22](2925 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [11:27, 10:01] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [14:30, 02:45](4443 MB) SYNOPSIS: -Starting Date/Time: 20240805 16:07:37 -Ending Date/Time: 20240805 17:54:48 -Total Time: 01h:47m:56s +Starting Date/Time: 20240807 17:28:56 +Ending Date/Time: 20240807 19:15:26 +Total Time: 01h:47m:05s Compiles Completed: 33/33 Tests Completed: 156/156 diff --git a/tests/rt.conf b/tests/rt.conf index be3a401f72..07fa091e1b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -429,7 +429,7 @@ COMPILE | s2sw_pdlib | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DP RUN | cpld_control_pdlib_p8 | + hera hercules | baseline | COMPILE | s2sw_pdlib_debug | gnu | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DPDLIB=ON -DDEBUG=ON | + hera hercules | fv3 | -RUN | cpld_debug_pdlib_p8 | + hera hercules | baseline | +RUN | cpld_debug_pdlib_p8 | + hercules | baseline | ### CDEPS Data Atmosphere test ### COMPILE | datm_cdeps | gnu | -DAPP=NG-GODAS | + hera hercules | fv3 | diff --git a/tests/test_changes.list b/tests/test_changes.list index c413127f2a..e498af5875 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,77 +1 @@ -cpld_control_p8_mixedmode intel -cpld_control_gfsv17 intel -cpld_control_gfsv17_iau intel -cpld_restart_gfsv17 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_bmark_p8 intel -cpld_restart_bmark_p8 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_c48 intel -cpld_warmstart_c48 intel -cpld_restart_c48 intel -cpld_control_p8_faster intel -cpld_control_pdlib_p8 intel -cpld_restart_pdlib_p8 intel -cpld_mpi_pdlib_p8 intel -cpld_debug_pdlib_p8 intel -control_CubedSphereGrid intel -control_CubedSphereGrid_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel intel -control_c48 intel -control_c192 intel -control_c384 intel -control_p8 intel -control_p8.v2.sfc intel -control_p8_ugwpv1 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 -control_wam intel -control_p8_faster intel -control_CubedSphereGrid_debug intel -control_wrtGauss_netcdf_parallel_debug intel -control_diag_debug intel -control_debug_p8 intel -atm_ds2s_docn_pcice intel -atm_ds2s_docn_dice intel -control_p8_atmlnd_sbs 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 -control_c48 gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_diag_debug gnu -control_debug_p8 gnu -control_wam_debug gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu cpld_debug_pdlib_p8 gnu - diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 7cfe2f8489..30783d3b52 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -97,7 +97,7 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 - WLCLK=45 + WLCLK=60 elif [[ $MACHINE_ID = gaea ]]; then TPN=16 fi