diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index fbdf6843d6..1f9eaaa142 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit fbdf6843d6bde852d97f1547591d90136103f669 +Subproject commit 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index bec4d6c235..321b9d84c5 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -41,14 +41,11 @@ list(APPEND cdeps_dshr_files list(APPEND cdeps_datm_files CDEPS/datm/atm_comp_nuopc.F90 - CDEPS/datm/datm_datamode_cfsr_mod.F90 CDEPS/datm/datm_datamode_clmncep_mod.F90 CDEPS/datm/datm_datamode_core2_mod.F90 CDEPS/datm/datm_datamode_cplhist_mod.F90 CDEPS/datm/datm_datamode_era5_mod.F90 CDEPS/datm/datm_datamode_gefs_mod.F90 - CDEPS/datm/datm_datamode_gfs_mod.F90 - CDEPS/datm/datm_datamode_gfs_hafs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 CDEPS/datm/datm_datamode_simple_mod.F90 ) diff --git a/FV3 b/FV3 index ee3378b9d5..70b306581b 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ee3378b9d56d5d4fa1b9e1cd16b06760ad810601 +Subproject commit 70b306581b24ab5e6b21e0a2b16b95f3a980660c diff --git a/build.sh b/build.sh index c1cfe43d8d..3f82a882da 100755 --- a/build.sh +++ b/build.sh @@ -1,17 +1,10 @@ #!/bin/bash set -eu -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - UFS_MODEL_DIR=$(greadlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -else - UFS_MODEL_DIR=$(readlink -f -n "${BASH_SOURCE[0]}") - UFS_MODEL_DIR=$(dirname "${UFS_MODEL_DIR}") - UFS_MODEL_DIR=$(cd "${UFS_MODEL_DIR}" && pwd -P) -fi -echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" + +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +UFS_MODEL_DIR=$(dirname "${SCRIPT_REALPATH}") readonly UFS_MODEL_DIR +echo "UFS MODEL DIR: ${UFS_MODEL_DIR}" export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} @@ -26,4 +19,4 @@ for i in ${CMAKE_FLAGS}; do ARR_CMAKE_FLAGS+=("${i}") ; done cmake "${UFS_MODEL_DIR}" "${ARR_CMAKE_FLAGS[@]}" # Turn off OpenMP threading for parallel builds # to avoid exhausting the number of user processes -OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" \ No newline at end of file +OMP_NUM_THREADS=1 make -j "${BUILD_JOBS:-4}" "VERBOSE=${BUILD_VERBOSE:-}" diff --git a/tests/ci/Jenkinsfile.combined b/tests/ci/Jenkinsfile.combined index e0b86d6bea..18e67f1104 100644 --- a/tests/ci/Jenkinsfile.combined +++ b/tests/ci/Jenkinsfile.combined @@ -312,14 +312,6 @@ def generateStage(nodeLabel) { echo "Testing concluded...removing labels for $machine from $GIT_URL" git remote -v | grep -w sshorigin > /dev/null 2>&1 && git remote remove sshorigin > /dev/null 2>&1 git remote add sshorigin $SSH_ORIGIN > /dev/null 2>&1 - - if [[ -f $WORKSPACE/tests/logs/RT-run-$machine.log ]] ; then - git add $WORKSPACE/tests/logs/RT-run-$machine.log - fi - git commit --allow-empty -m "[AutoRT] $machine Job Failed!\n\n\n on-behalf-of @ufs-community " - - git pull sshorigin $FORK_BRANCH - git push sshorigin HEAD:$FORK_BRANCH tar --create --gzip --verbose --dereference --file "${machine_name_logs}.tgz" ${WORKSPACE}/tests/logs/*.log diff --git a/tests/compile.sh b/tests/compile.sh index 458d985a88..8ab0f60b82 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -12,14 +12,8 @@ function trim { SECONDS=0 -uname_s=$(uname -s) -if [[ ${uname_s} == Darwin ]]; then - greadlnk=$(greadlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${greadlnk}" )" && pwd -P) -else - readlnk=$(readlink -f -n "${BASH_SOURCE[0]}" ) - MYDIR=$(cd "$(dirname "${readlnk}" )" && pwd -P) -fi +SCRIPT_REALPATH=$(realpath "${BASH_SOURCE[0]}") +MYDIR=$(dirname "${SCRIPT_REALPATH}") readonly MYDIR # ---------------------------------------------------------------------- diff --git a/tests/default_vars.sh b/tests/default_vars.sh index bfa6815354..18bd2e1e11 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -559,6 +559,7 @@ export MODEL_INITIALIZATION=false export WARM_START=.false. export READ_INCREMENT=.false. export RES_LATLON_DYNAMICS="''" +export INCREMENT_FILE_ON_NATIVE_GRID=.false. export NGGPS_IC=.true. export EXTERNAL_IC=.true. export MAKE_NH=.true. @@ -1332,10 +1333,10 @@ export_datm_cdeps () export INPUT_NML=input.mom6.nml.IN export DIAG_TABLE=diag_table_template export DATM_SRC=CFSR - export FILENAME_BASE=cfsr. - export MESH_ATM=${FILENAME_BASE//.}_mesh.nc - export atm_datamode=${DATM_SRC} - export stream_files=INPUT/${FILENAME_BASE}201110.nc + export FILEBASE_DATM=cfsr + export MESH_ATM=${FILEBASE_DATM}_mesh.nc + export atm_datamode=GEFS + export stream_files=INPUT/${FILEBASE_DATM}.201110.nc export EXPORT_ALL=.false. export STREAM_OFFSET=0 diff --git a/tests/error-test.conf b/tests/error-test.conf index 2382c59a9e..3e931e67dc 100644 --- a/tests/error-test.conf +++ b/tests/error-test.conf @@ -11,6 +11,9 @@ COMPILE | atm_dyn32 | intel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_fl # This should succeed RUN | control_c48.v2.sfc | | baseline | +# This should fail due to wall clock timeout +RUN | control_c48.v2.sfc_timeout | | baseline | + # These tests should always fail, and prevent the workflow from completing. RUN | fail_to_copy | | baseline | RUN | fail_to_run | | baseline | diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index ee8e4842f2..e383c64f58 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Aug 21 22:05:02 UTC 2024 +Mon Aug 26 19:59:54 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_3986824/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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.831970 - 0: The maximum resident set size (KB) = 1448916 + 0: The total amount of wall time = 282.094574 + 0: The maximum resident set size (KB) = 1459728 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_3986824/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 992.336985 - 0: The maximum resident set size (KB) = 1437772 + 0: The total amount of wall time = 985.479617 + 0: The maximum resident set size (KB) = 1417884 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_3986824/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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.618968 - 0: The maximum resident set size (KB) = 1425456 + 0: The total amount of wall time = 248.873990 + 0: The maximum resident set size (KB) = 1437132 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_3986824/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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.392410 - 0: The maximum resident set size (KB) = 1437096 + 0: The total amount of wall time = 252.449329 + 0: The maximum resident set size (KB) = 1422488 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_3986824/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 257.380091 - 0: The maximum resident set size (KB) = 1423788 + 0: The total amount of wall time = 252.763505 + 0: The maximum resident set size (KB) = 1423640 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_3986824/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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 = 267.250624 - 0: The maximum resident set size (KB) = 1421992 + 0: The total amount of wall time = 253.485325 + 0: The maximum resident set size (KB) = 1438440 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_3986824/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_255239/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.163548 - 0: The maximum resident set size (KB) = 1434436 + 0: The total amount of wall time = 247.766378 + 0: The maximum resident set size (KB) = 1411920 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 23:13:54 UTC 2024 -Elapsed time: 01h:08m:53s. Have a nice day! +Mon Aug 26 21:14:01 UTC 2024 +Elapsed time: 01h:14m: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 6bf6a5ff37..dbc9db8a9d 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 Aug 21 20:56:23 UTC 2024 +Mon Aug 26 18:51:21 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_3387682/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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 = 1337.925051 - 0: The maximum resident set size (KB) = 1527960 + 0: The total amount of wall time = 1361.846982 + 0: The maximum resident set size (KB) = 1537900 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_3387682/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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.025844 - 0: The maximum resident set size (KB) = 1528532 + 0: The total amount of wall time = 715.515398 + 0: The maximum resident set size (KB) = 1525500 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_3387682/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2593550/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 = 441.109791 - 0: The maximum resident set size (KB) = 1516924 + 0: The total amount of wall time = 435.784809 + 0: The maximum resident set size (KB) = 1528568 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 22:05:01 UTC 2024 -Elapsed time: 01h:08m:39s. Have a nice day! +Mon Aug 26 19:59:54 UTC 2024 +Elapsed time: 01h:08m:34s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index d06a471ae6..e232f0ce00 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Aug 21 18:19:56 UTC 2024 +Mon Aug 26 16:17:09 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_65311/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 1391.521656 - 0: The maximum resident set size (KB) = 777236 + 0: The total amount of wall time = 1404.274425 + 0: The maximum resident set size (KB) = 769724 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_65311/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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.925001 - 0: The maximum resident set size (KB) = 743380 + 0: The total amount of wall time = 2178.286214 + 0: The maximum resident set size (KB) = 751032 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_65311/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 2169.154728 - 0: The maximum resident set size (KB) = 733176 + 0: The total amount of wall time = 2198.737097 + 0: The maximum resident set size (KB) = 734276 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_65311/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3681501/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 = 2203.506465 - 0: The maximum resident set size (KB) = 733136 + 0: The total amount of wall time = 2321.006507 + 0: The maximum resident set size (KB) = 742260 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Aug 21 20:56:22 UTC 2024 -Elapsed time: 02h:36m:27s. Have a nice day! +Mon Aug 26 18:51:20 UTC 2024 +Elapsed time: 02h:34m:14s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 1538677c9c..e7c85ee865 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,18 +1,18 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,345 +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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2126453 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1945026 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:23, 10:42] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [40:32, 02:36](3318 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:30, 16:18] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [34:26, 03:00](2096 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [13:22, 02:53](2130 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [13:14, 03:10](1249 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:27, 01:53](2174 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:30, 16:07] ( 2 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [35:26, 01:22](2101 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:46] ( 1526 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [45:38, 03:00](2168 MB) - -PASS -- COMPILE 's2swa_intel' [11:26, 10:14] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [40:30, 01:59](3324 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [40:30, 02:26](3338 MB) -PASS -- TEST 'cpld_restart_p8_intel' [26:43, 02:09](3260 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [40:30, 01:50](3343 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [26:44, 02:06](3279 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [40:30, 01:45](3624 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [40:30, 01:20](3333 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [40:31, 01:37](3452 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [40:30, 01:48](3341 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [40:30, 02:04](3253 MB) - -PASS -- COMPILE 's2sw_intel' [10:25, 09:59] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [41:31, 01:46](2023 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [41:31, 02:09](2041 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [10:24, 09:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:32, 02:05](2040 MB) - -PASS -- COMPILE 's2s_intel' [10:23, 09:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [41:32, 01:06](2889 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [41:32, 01:32](2899 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:03, 01:42](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [15:29, 15:16] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [36:26, 02:27](3324 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:31, 16:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [35:24, 01:04](2088 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:43, 01:23](1269 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:40, 01:19](2176 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:31] ( 1561 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:19, 01:38](2206 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:23, 09:04] ( 2 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:10, 00:51](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [32:10, 01:12](1547 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:10, 01:03](1554 MB) -PASS -- TEST 'control_latlon_intel' [32:10, 01:00](1549 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:10, 01:06](1555 MB) -PASS -- TEST 'control_c48_intel' [32:09, 00:35](1573 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:09, 01:13](712 MB) -PASS -- TEST 'control_c192_intel' [32:10, 00:54](1777 MB) -PASS -- TEST 'control_c384_intel' [32:14, 02:41](3086 MB) -PASS -- TEST 'control_c384gdas_intel' [32:14, 03:17](2305 MB) -PASS -- TEST 'control_stochy_intel' [32:10, 01:00](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [23:34, 00:35](413 MB) -PASS -- TEST 'control_lndp_intel' [31:53, 01:14](610 MB) -PASS -- TEST 'control_iovr4_intel' [31:30, 01:20](602 MB) -PASS -- TEST 'control_iovr5_intel' [31:21, 01:06](601 MB) -PASS -- TEST 'control_p8_intel' [31:15, 02:29](1826 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [29:33, 02:02](1819 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [28:15, 02:12](1849 MB) -PASS -- TEST 'control_restart_p8_intel' [11:41, 02:19](993 MB) -PASS -- TEST 'control_noqr_p8_intel' [27:21, 01:44](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [11:39, 02:24](1001 MB) -PASS -- TEST 'control_decomp_p8_intel' [26:15, 01:49](1833 MB) -PASS -- TEST 'control_2threads_p8_intel' [26:13, 01:50](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [25:11, 00:49](1840 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [24:26, 02:37](1877 MB) -PASS -- TEST 'control_p8_mynn_intel' [21:14, 02:32](1835 MB) -PASS -- TEST 'merra2_thompson_intel' [20:30, 03:12](1811 MB) -PASS -- TEST 'regional_control_intel' [18:01, 00:53](869 MB) -PASS -- TEST 'regional_restart_intel' [07:04, 01:04](862 MB) -PASS -- TEST 'regional_decomp_intel' [17:19, 00:24](863 MB) -PASS -- TEST 'regional_2threads_intel' [17:03, 01:04](1177 MB) -PASS -- TEST 'regional_noquilt_intel' [16:14, 00:56](1188 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:48, 00:57](863 MB) -PASS -- TEST 'regional_wofs_intel' [15:44, 00:38](1596 MB) - -PASS -- COMPILE 'ifi_intel' [08:22, 07:49] ( 1 warnings ) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_control_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_decomp_intel' [, ]( MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'regional_ifi_2threads_intel' [, ]( MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:24] ( 4 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [14:34, 02:57](993 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:04, 00:51](1656 MB) -PASS -- TEST 'rap_decomp_intel' [13:34, 02:30](990 MB) -PASS -- TEST 'rap_2threads_intel' [12:56, 02:08](1084 MB) -PASS -- TEST 'rap_restart_intel' [03:02, 02:53](836 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:02, 02:42](989 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:47, 02:13](987 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [00:38, 02:28](839 MB) -PASS -- TEST 'hrrr_control_intel' [11:41, 02:25](985 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [11:20, 02:13](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [10:27, 02:11](1214 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:16, 00:45](785 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:26, 03:04](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:09, 00:56](1949 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:16, 00:40](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 08:16] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:01, 00:28](941 MB) -PASS -- TEST 'control_ras_intel' [09:00, 00:24](639 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [08:19, 01:09](1636 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:24] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:39, 02:48](1836 MB) -PASS -- TEST 'regional_control_faster_intel' [07:34, 00:43](860 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:25, 07:15] ( 885 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:30, 01:12](1588 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 00:52](1585 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:48, 00:27](793 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:22, 01:01](792 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:50, 01:18](1077 MB) -PASS -- TEST 'control_ras_debug_intel' [03:54, 01:12](797 MB) -PASS -- TEST 'control_diag_debug_intel' [03:22, 00:52](1653 MB) -PASS -- TEST 'control_debug_p8_intel' [03:22, 00:45](1861 MB) -PASS -- TEST 'regional_debug_intel' [03:01, 01:05](938 MB) -PASS -- TEST 'rap_control_debug_intel' [02:24, 00:59](1173 MB) -PASS -- TEST 'hrrr_control_debug_intel' [01:40, 01:12](1168 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [01:29, 01:01](1170 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [00:43, 00:19](1169 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:35, 00:36](1176 MB) -PASS -- TEST 'rap_diag_debug_intel' [00:16, 00:41](1262 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [00:15, 00:37](1175 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [59:47, 00:52](1174 MB) -PASS -- TEST 'rap_lndp_debug_intel' [59:13, 00:36](1177 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [59:04, 00:49](1173 MB) -PASS -- TEST 'rap_noah_debug_intel' [58:49, 01:04](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [58:41, 00:53](1170 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [58:07, 00:38](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [57:30, 01:10](1168 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [57:29, 00:58](1173 MB) -PASS -- TEST 'rap_flake_debug_intel' [57:22, 00:50](1173 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [57:21, 02:56](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:21, 04:50] ( 840 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [57:13, 01:03](1677 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:28, 08:08] ( 4 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [57:05, 01:03](1528 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [56:37, 02:30](866 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:58, 03:29](862 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [53:54, 02:36](945 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [53:52, 02:40](1065 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [53:36, 03:04](864 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [43:45, 02:01](764 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [45:09, 00:15](746 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [52:06, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [42:20, 00:46](1068 MB) -PASS -- TEST 'conus13km_2threads_intel' [38:20, 00:39](1399 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [38:19, 01:16](913 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [53:11, 08:17] ( 4 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [39:59, 01:29](895 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [48:06, 04:48] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [44:03, 00:46](1055 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:03, 01:00](1051 MB) -PASS -- TEST 'conus13km_debug_intel' [44:03, 00:42](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [44:03, 00:32](828 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [44:04, 01:07](1476 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [44:03, 00:26](1232 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [49:08, 04:42] ( 788 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:00, 00:36](1074 MB) - -PASS -- COMPILE 'hafsw_intel' [53:08, 09:28] ( 2 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [38:05, 02:16](1665 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [38:05, 00:37](2015 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [38:03, 01:38](1199 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [38:03, 01:25](1224 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [38:04, 01:55](1377 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [38:03, 01:38](920 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [38:04, 01:36](1211 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [38:04, 01:41](1101 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [38:07, 03:02](1947 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [38:03, 01:00](954 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [38:03, 00:47](960 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [38:05, 01:38](1549 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [38:04, 00:57](1129 MB) -PASS -- TEST 'gnv1_nested_intel' [38:02, 03:05](1898 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [49:07, 05:30] ( 1468 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:01, 01:21](1640 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [51:06, 09:16] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [37:33, 01:41](1586 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [37:31, 01:21](1762 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [49:05, 09:23] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [37:03, 01:40](1760 MB) - -PASS -- COMPILE 'hafs_all_intel' [47:08, 09:00] ( 1 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [36:26, 01:46](1183 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [36:31, 01:53](1174 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [36:11, 00:33](896 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [43:00, 09:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [36:05, 00:22](756 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [29:39, 00:40](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [32:47, 00:33](649 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [32:07, 00:15](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [31:42, 00:46](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [29:25, 01:04](756 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [26:44, 00:36](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [26:41, 00:28](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [26:38, 01:26](814 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [26:38, 01:20](799 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [25:15, 00:23](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [25:14, 00:24](2038 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [24:16, 01:10](2038 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:23, 09:21] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [24:12, 00:28](770 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 01:04] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [40:46, 00:37](609 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [40:46, 00:31](747 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [24:04, 00:57](751 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:23, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:31, 00:51](1963 MB) - -PASS -- COMPILE 'atml_intel' [09:22, 09:04] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [22:05, 02:06](2169 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [21:15, 02:54](2151 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:39, 00:59](1296 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:21, 05:41] ( 883 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [21:21, 02:29](2201 MB) - -PASS -- COMPILE 'atmw_intel' [10:23, 08:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [20:58, 02:15](1940 MB) - -PASS -- COMPILE 'atmaero_intel' [10:23, 08:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [20:17, 01:33](3217 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [20:09, 01:46](2994 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [19:50, 01:35](3009 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [28:42, 04:50] ( 885 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [09:16, 01:38](4817 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:28, 10:46] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:33, 03:27](3318 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:34, 16:21] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:27, 04:20](2081 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [50:19, 03:59](2117 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [49:40, 04:19](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [12:28, 03:27](2190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [18:34, 16:24] ( 2 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:27, 01:34](2080 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:51] ( 1526 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:42, 03:33](2155 MB) + +PASS -- COMPILE 's2swa_intel' [12:28, 10:24] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:33, 02:32](3341 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 03:26](3339 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:37, 03:07](3265 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:33, 02:35](3360 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:37, 02:50](3280 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [18:33, 03:01](3622 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:33, 02:39](3315 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [18:34, 03:23](3451 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:33, 03:27](3309 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [18:33, 03:02](3267 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:25] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:33, 02:48](2007 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:33, 03:13](2042 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:25, 09:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:36, 03:09](2015 MB) + +PASS -- COMPILE 's2s_intel' [11:27, 09:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:33, 02:04](2888 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:33, 02:22](2893 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:06, 02:39](2310 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:26] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:29, 03:05](3324 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:32, 15:58] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [13:29, 02:09](2108 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [52:48, 02:13](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [51:53, 02:19](2199 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:30] ( 1561 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [16:22, 02:08](2215 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 09:03] ( 2 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:13, 01:43](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:13, 01:45](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:13, 01:48](1554 MB) +PASS -- TEST 'control_latlon_intel' [09:13, 01:33](1548 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:13, 02:02](1548 MB) +PASS -- TEST 'control_c48_intel' [09:12, 01:41](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:12, 02:29](712 MB) +PASS -- TEST 'control_c192_intel' [09:13, 02:12](1777 MB) +PASS -- TEST 'control_c384_intel' [09:17, 03:09](3085 MB) +PASS -- TEST 'control_c384gdas_intel' [09:17, 04:04](2306 MB) +PASS -- TEST 'control_stochy_intel' [08:37, 01:32](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [50:51, 01:35](413 MB) +PASS -- TEST 'control_lndp_intel' [08:37, 01:55](609 MB) +PASS -- TEST 'control_iovr4_intel' [08:29, 01:49](604 MB) +PASS -- TEST 'control_iovr5_intel' [08:15, 02:03](604 MB) +PASS -- TEST 'control_p8_intel' [06:38, 02:55](1839 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:24, 03:05](1840 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:21, 03:16](1829 MB) +PASS -- TEST 'control_restart_p8_intel' [47:08, 03:34](957 MB) +PASS -- TEST 'control_noqr_p8_intel' [02:38, 02:56](1840 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [45:57, 02:32](1000 MB) +PASS -- TEST 'control_decomp_p8_intel' [02:21, 02:15](1832 MB) +PASS -- TEST 'control_2threads_p8_intel' [02:15, 02:31](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [02:12, 02:15](1826 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [01:27, 02:55](1858 MB) +PASS -- TEST 'control_p8_mynn_intel' [59:16, 02:48](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [58:57, 04:13](1849 MB) +PASS -- TEST 'regional_control_intel' [56:02, 02:11](868 MB) +PASS -- TEST 'regional_restart_intel' [44:06, 01:41](866 MB) +PASS -- TEST 'regional_decomp_intel' [55:12, 01:12](864 MB) +PASS -- TEST 'regional_2threads_intel' [54:23, 01:39](1175 MB) +PASS -- TEST 'regional_noquilt_intel' [53:17, 01:23](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [53:15, 01:56](861 MB) +PASS -- TEST 'regional_wofs_intel' [53:01, 01:36](1596 MB) + +PASS -- COMPILE 'ifi_intel' [09:22, 07:51] ( 1 warnings ) +PASS -- TEST 'regional_ifi_control_intel' [10:09, 01:31](873 MB) +PASS -- TEST 'regional_ifi_decomp_intel' [10:09, 02:04](861 MB) +PASS -- TEST 'regional_ifi_2threads_intel' [10:10, 01:43](1174 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:29] ( 4 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [50:52, 03:48](991 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [50:42, 01:48](1664 MB) +PASS -- TEST 'rap_decomp_intel' [49:25, 03:07](991 MB) +PASS -- TEST 'rap_2threads_intel' [49:03, 02:21](1090 MB) +PASS -- TEST 'rap_restart_intel' [37:11, 03:32](834 MB) +PASS -- TEST 'rap_sfcdiff_intel' [46:55, 03:20](990 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:35, 02:22](987 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [35:29, 03:54](837 MB) +PASS -- TEST 'hrrr_control_intel' [46:30, 04:00](985 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [46:13, 03:46](982 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [46:14, 03:45](1207 MB) +PASS -- TEST 'hrrr_control_restart_intel' [37:05, 02:12](782 MB) +PASS -- TEST 'rrfs_v1beta_intel' [45:58, 03:54](982 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [45:28, 01:38](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:16, 02:03](1936 MB) + +PASS -- COMPILE 'csawmg_intel' [10:23, 08:16] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [44:34, 01:26](941 MB) +PASS -- TEST 'control_ras_intel' [43:34, 01:26](640 MB) + +PASS -- COMPILE 'wam_intel' [10:24, 08:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [43:26, 01:24](1635 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:23, 08:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [42:58, 02:54](1836 MB) +PASS -- TEST 'regional_control_faster_intel' [42:36, 01:20](856 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:24, 07:09] ( 885 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [42:03, 01:59](1587 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [41:54, 01:56](1591 MB) +PASS -- TEST 'control_stochy_debug_intel' [40:59, 01:32](797 MB) +PASS -- TEST 'control_lndp_debug_intel' [39:53, 01:55](797 MB) +PASS -- TEST 'control_csawmg_debug_intel' [39:53, 01:32](1099 MB) +PASS -- TEST 'control_ras_debug_intel' [38:16, 02:13](804 MB) +PASS -- TEST 'control_diag_debug_intel' [38:00, 01:52](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [37:28, 01:37](1884 MB) +PASS -- TEST 'regional_debug_intel' [37:27, 01:52](941 MB) +PASS -- TEST 'rap_control_debug_intel' [37:05, 01:41](1177 MB) +PASS -- TEST 'hrrr_control_debug_intel' [36:00, 01:55](1169 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [35:09, 01:34](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [35:05, 01:31](1173 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [34:51, 01:42](1177 MB) +PASS -- TEST 'rap_diag_debug_intel' [34:24, 02:15](1261 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [34:31, 01:29](1177 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [34:27, 01:24](1178 MB) +PASS -- TEST 'rap_lndp_debug_intel' [33:49, 01:31](1180 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [33:41, 01:21](1177 MB) +PASS -- TEST 'rap_noah_debug_intel' [33:36, 01:36](1171 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [33:13, 01:35](1173 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [32:38, 02:06](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [32:12, 01:54](1171 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [32:11, 01:34](1175 MB) +PASS -- TEST 'rap_flake_debug_intel' [32:03, 02:17](1176 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [32:03, 04:02](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:22, 04:52] ( 840 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [31:44, 01:48](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:24, 08:09] ( 4 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [31:34, 01:45](1526 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [30:46, 03:14](868 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [30:30, 04:45](863 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:10, 02:49](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:43, 04:25](1067 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [28:53, 03:47](862 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [18:24, 03:43](766 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [19:02, 01:21](744 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:25, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [28:29, 01:36](1068 MB) +PASS -- TEST 'conus13km_2threads_intel' [22:18, 02:11](1398 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:35, 01:44](912 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:16] ( 4 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [27:44, 02:19](894 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:24, 04:48] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [27:24, 01:57](1056 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [27:19, 01:45](1051 MB) +PASS -- TEST 'conus13km_debug_intel' [26:54, 01:32](1148 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:35, 01:27](815 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:32, 02:05](1476 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:18, 02:18](1232 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:26, 04:47] ( 788 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [25:46, 02:13](1077 MB) + +PASS -- COMPILE 'hafsw_intel' [17:33, 09:29] ( 2 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [25:57, 03:04](1670 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:16, 02:10](2013 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [25:08, 03:06](1199 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [25:03, 02:34](1224 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:01, 03:09](1376 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:40, 02:34](919 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [24:20, 02:42](1205 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [24:03, 02:02](1102 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [23:42, 03:43](1944 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [20:19, 02:23](957 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [20:26, 02:00](958 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [19:54, 02:24](1546 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [19:04, 01:32](1126 MB) +PASS -- TEST 'gnv1_nested_intel' [18:58, 04:24](1904 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:28, 05:25] ( 1468 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:53, 02:03](1643 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [16:30, 09:14] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:27, 01:51](1588 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:42, 02:36](1765 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [51:07, 09:06] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:02, 02:37](1760 MB) + +PASS -- COMPILE 'hafs_all_intel' [50:04, 09:03] ( 1 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:32, 02:26](1182 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:28, 02:46](1169 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [09:56, 01:14](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [51:08, 09:26] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:36, 01:38](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [00:08, 01:12](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:06, 01:47](651 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:21, 02:01](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:00, 02:08](649 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:22, 01:29](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:15, 01:20](771 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [01:13, 01:31](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [01:00, 02:00](815 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [00:29, 01:55](795 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [59:31, 01:42](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [58:58, 01:35](2039 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [57:50, 01:27](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [50:06, 09:23] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [57:40, 01:24](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [46:03, 01:04] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [13:43, 02:09](609 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [13:43, 01:54](747 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [56:51, 01:36](751 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [55:11, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [56:56, 02:50](1973 MB) + +PASS -- COMPILE 'atml_intel' [55:10, 09:08] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [56:37, 04:00](2171 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [56:13, 03:57](2150 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [43:34, 02:05](1318 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:26, 05:32] ( 883 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [45:15, 03:02](2221 MB) + +PASS -- COMPILE 'atmw_intel' [08:24, 08:47] ( 1 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [42:13, 03:20](1940 MB) + +PASS -- COMPILE 'atmaero_intel' [06:22, 08:36] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [42:03, 02:49](3200 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [42:03, 03:17](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [42:03, 03:09](3008 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [28:41, 04:50] ( 885 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [45:00, 02:32](4802 MB) SYNOPSIS: -Starting Date/Time: 20240823 14:07:45 -Ending Date/Time: 20240823 16:17:33 -Total Time: 02h:10m:16s +Starting Date/Time: 20240826 16:28:40 +Ending Date/Time: 20240826 18:42:51 +Total Time: 02h:14m:37s Compiles Completed: 38/38 -Tests Completed: 176/179 -Failed Tests: -* TEST regional_ifi_control_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_control_intel.log -* TEST regional_ifi_decomp_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_decomp_intel.log -* TEST regional_ifi_2threads_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /lfs/h1/emc/nems/noscrub/brian.curtis/git/SamuelTrahanNOAA/ufs-weather-model/tests/logs/log_acorn/run_regional_ifi_2threads_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: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d - -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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 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) - - -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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2781112 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-e) - USE ECFLOW - -PASS -- COMPILE 'ifi_intel' [08:21, 07:53] ( 1 warnings ) -PASS -- TEST 'regional_ifi_control_intel' [15:14, 00:20](864 MB) -PASS -- TEST 'regional_ifi_decomp_intel' [15:14, 00:49](859 MB) -PASS -- TEST 'regional_ifi_2threads_intel' [15:15, 00:52](1173 MB) - -SYNOPSIS: -Starting Date/Time: 20240823 16:36:26 -Ending Date/Time: 20240823 16:52:46 -Total Time: 00h:16m:23s -Compiles Completed: 1/1 -Tests Completed: 3/3 +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 954908d2f9..a7ef72b6eb 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,18 +1,18 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -97b1ccdffe7d4378da4e279e2f2fb73d1539d227 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -36,283 +36,283 @@ 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-20240821 -COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_107803 +COMPARISON DIRECTORY: /glade/derecho/scratch/zshrader/FV3_RT/rt_127037 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: scsg0002 * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:19, 21:06] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:18, 05:28](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:19, 23:09] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [16:42, 14:35](1917 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:00, 15:42](1936 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:50, 07:35](1061 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:41, 16:18](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:19, 23:08] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:12, 14:09](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:16, 11:34] ( 1530 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:41, 22:48](1934 MB) - -PASS -- COMPILE 's2swa_intel' [22:19, 20:59] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:30, 06:18](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:37, 06:13](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:07, 04:00](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:30, 06:15](3253 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:07, 03:54](3180 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:19, 05:52](3738 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:19, 06:06](3219 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:17, 05:07](3538 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:39, 06:21](3235 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:22, 09:24](3822 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:42, 06:11](3619 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [23:30, 10:09](4524 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:27, 06:50](4666 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:14, 05:53](3208 MB) - -PASS -- COMPILE 's2sw_intel' [20:17, 19:34] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [06:20, 04:26](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:32, 04:32](1982 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:16, 11:35] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:14, 08:11](3304 MB) - -PASS -- COMPILE 's2sw_debug_intel' [11:16, 10:51] ( 1455 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:24, 05:56](1954 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:15, 15:54] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:54, 04:24](1989 MB) - -PASS -- COMPILE 's2s_intel' [17:17, 15:59] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:03, 06:31](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:02, 02:07](2886 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:57, 01:16](2306 MB) - -PASS -- COMPILE 's2swa_faster_intel' [24:17, 23:29] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:04, 06:14](3234 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 22:11] ( 5 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:38, 14:40](1926 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:50, 07:51](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:32, 16:43](1891 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:15, 10:55] ( 1565 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:27, 24:02](1946 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [15:18, 13:59] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:39, 03:23](666 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:57, 02:23](1559 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:09, 02:25](1566 MB) -PASS -- TEST 'control_latlon_intel' [03:53, 02:22](1562 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:01, 02:24](1565 MB) -PASS -- TEST 'control_c48_intel' [07:59, 06:06](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:37, 05:16](707 MB) -PASS -- TEST 'control_c192_intel' [10:46, 08:42](1666 MB) -PASS -- TEST 'control_c384_intel' [14:20, 08:44](1948 MB) -PASS -- TEST 'control_c384gdas_intel' [15:31, 07:03](1189 MB) -PASS -- TEST 'control_stochy_intel' [02:36, 01:25](618 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 00:51](435 MB) -PASS -- TEST 'control_lndp_intel' [02:33, 01:18](621 MB) -PASS -- TEST 'control_iovr4_intel' [03:37, 02:04](615 MB) -PASS -- TEST 'control_iovr5_intel' [03:37, 02:04](620 MB) -PASS -- TEST 'control_p8_intel' [05:25, 02:54](1851 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:22, 02:59](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:35, 03:02](1863 MB) -PASS -- TEST 'control_restart_p8_intel' [04:16, 01:50](1004 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:33, 03:09](1845 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:21, 01:57](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:22, 03:05](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:22, 02:57](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:11, 04:39](1856 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:29, 03:58](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:31, 03:12](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [05:22, 03:09](1863 MB) -PASS -- TEST 'regional_control_intel' [05:52, 04:42](861 MB) -PASS -- TEST 'regional_restart_intel' [03:44, 02:42](859 MB) -PASS -- TEST 'regional_decomp_intel' [05:48, 04:49](870 MB) -PASS -- TEST 'regional_noquilt_intel' [05:56, 04:34](1182 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:58, 04:38](860 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:35](857 MB) -PASS -- TEST 'regional_wofs_intel' [06:44, 05:39](1590 MB) - -PASS -- COMPILE 'rrfs_intel' [13:16, 12:34] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:19, 06:07](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:57, 03:37](1160 MB) -PASS -- TEST 'rap_decomp_intel' [08:19, 06:22](1007 MB) -PASS -- TEST 'rap_2threads_intel' [07:27, 05:38](1084 MB) -PASS -- TEST 'rap_restart_intel' [05:04, 03:12](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:21, 06:05](1006 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:21, 06:20](1005 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:07, 04:34](880 MB) -PASS -- TEST 'hrrr_control_intel' [05:02, 03:12](1003 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:02, 03:16](1000 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:02, 02:50](1080 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:39, 01:44](829 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:23, 06:00](1000 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:59, 07:20](1953 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:58, 07:11](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [12:14, 11:29] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:59, 06:33](959 MB) -PASS -- TEST 'control_ras_intel' [04:42, 02:50](657 MB) - -PASS -- COMPILE 'wam_intel' [12:14, 11:20] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:24, 10:12](1652 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:14, 11:37] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:31, 03:04](1854 MB) -PASS -- TEST 'regional_control_faster_intel' [05:57, 04:32](859 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [15:15, 13:57] ( 889 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:04, 02:36](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:05, 02:32](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:38, 02:53](812 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:28, 02:40](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:51, 04:41](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [03:26, 02:41](812 MB) -PASS -- TEST 'control_diag_debug_intel' [04:47, 02:38](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [04:45, 03:16](1893 MB) -PASS -- TEST 'regional_debug_intel' [17:49, 16:32](930 MB) -PASS -- TEST 'rap_control_debug_intel' [06:30, 04:45](1189 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:38, 04:33](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:35, 04:41](1188 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:36, 04:46](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:34, 04:44](1187 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:35, 04:53](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:38, 04:56](1189 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:38, 04:47](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:35, 04:49](1191 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:37, 04:48](1192 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:35, 04:36](1187 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:33, 04:44](1192 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:26, 07:50](1185 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 04:43](1181 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:38, 05:46](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:36, 04:49](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:04, 08:12](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:12, 07:07] ( 844 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:10, 12:24](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:19, 11:09] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:14, 03:27](1016 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:58, 05:04](879 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:54, 02:43](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:42](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:00, 02:22](929 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:58, 02:50](876 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:50, 03:51](790 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:31](768 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:14, 11:12] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:46, 01:50](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:16, 00:53](1072 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:13, 01:06](962 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:21, 11:24] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:53, 03:37](900 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:19, 07:27] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:29](1065 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:26, 04:24](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [15:15, 13:38](1144 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:21, 13:38](830 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:20, 08:08](1141 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:20, 13:44](1212 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:17, 07:11] ( 792 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:34, 04:35](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [18:20, 17:16] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:10, 04:28](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:38, 04:56](1053 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:47, 06:21](753 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:30, 10:49](769 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:29, 11:57](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:05, 04:35](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:30, 05:38](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:56, 02:14](387 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:55, 05:59](456 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:57, 03:13](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:00, 03:00](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:09, 03:47](571 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:27, 01:09](421 MB) -PASS -- TEST 'gnv1_nested_intel' [07:06, 03:53](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:18, 08:42] ( 1472 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:13, 11:56](629 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:19, 16:44] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:19, 07:07](617 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:31, 07:14](676 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [19:15, 18:10] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:10, 05:17](671 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:20, 15:26] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:26, 05:36](740 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:27, 05:45](726 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:09, 16:15](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:18, 08:19] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:34, 02:29](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:32, 01:31](757 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:28, 02:21](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:26, 02:25](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:37, 02:23](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:34, 02:28](768 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:39, 02:28](769 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:31, 02:20](650 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:11, 05:39](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:19, 05:37](680 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 02:27](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:32, 03:50](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 03:50](2035 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:18, 05:51] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:28, 05:16](751 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:18, 08:22] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:28, 02:26](765 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 02:34] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:54, 01:04](309 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:33, 01:00](450 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:42](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:19, 13:13] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:35, 03:34](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:19, 12:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:28, 03:43](1899 MB) - -PASS -- COMPILE 'atml_intel' [15:21, 14:32] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:23, 06:38](1877 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 06:21](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:49, 03:29](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:22, 10:43] ( 887 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:32, 06:10](1923 MB) - -PASS -- COMPILE 'atmw_intel' [14:18, 13:39] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:13, 02:09](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [13:20, 12:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:28, 04:09](3126 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:33, 04:16](3005 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:08, 04:19](3015 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [09:17, 08:03] ( 889 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:36, 21:45](4537 MB) +PASS -- COMPILE 's2swa_32bit_intel' [27:22, 25:36] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:18, 06:11](3202 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [29:23, 26:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:53, 15:13](1912 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:15, 16:31](1940 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:57, 08:39](1066 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:50, 16:54](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [29:28, 27:21] ( 6 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [25:06, 15:05](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:21, 15:36] ( 1530 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:47, 23:22](1940 MB) + +PASS -- COMPILE 's2swa_intel' [27:23, 24:56] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:15, 06:59](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:33, 06:56](3221 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:43, 04:57](3151 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:32, 06:54](3250 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:31, 04:49](3177 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:43, 06:35](3733 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 06:59](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:02, 06:09](3537 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:29, 06:41](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:51, 10:16](3821 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [20:05, 07:20](3618 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [52:37, 11:45](4516 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:31, 08:16](4664 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:31, 06:38](3207 MB) + +PASS -- COMPILE 's2sw_intel' [25:24, 23:03] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:01, 05:33](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:16, 05:40](1983 MB) + +PASS -- COMPILE 's2swa_debug_intel' [17:18, 14:58] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:12, 08:41](3303 MB) + +PASS -- COMPILE 's2sw_debug_intel' [16:20, 14:16] ( 1455 warnings 1209 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:21, 06:29](1955 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [22:20, 19:22] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:33, 05:19](1982 MB) + +PASS -- COMPILE 's2s_intel' [22:20, 19:12] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:42, 07:19](2880 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [08:40, 02:59](2895 MB) +PASS -- TEST 'cpld_restart_c48_intel' [09:30, 02:12](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [31:19, 28:20] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:08, 06:47](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [30:27, 26:41] ( 5 warnings 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:19, 15:27](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:56, 08:43](1090 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:23, 17:09](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [20:17, 14:53] ( 1565 warnings 1948 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:06, 24:43](1946 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [18:18, 16:07] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [13:50, 03:38](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [15:15, 02:59](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:45, 02:41](1571 MB) +PASS -- TEST 'control_latlon_intel' [14:25, 02:58](1563 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:19, 02:54](1563 MB) +PASS -- TEST 'control_c48_intel' [09:18, 06:12](1570 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:56, 05:25](710 MB) +PASS -- TEST 'control_c192_intel' [18:38, 09:07](1675 MB) +PASS -- TEST 'control_c384_intel' [22:39, 09:28](1942 MB) +PASS -- TEST 'control_c384gdas_intel' [28:03, 07:33](1166 MB) +PASS -- TEST 'control_stochy_intel' [05:53, 01:40](619 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:52, 01:00](437 MB) +PASS -- TEST 'control_lndp_intel' [04:50, 01:38](619 MB) +PASS -- TEST 'control_iovr4_intel' [05:06, 02:15](617 MB) +PASS -- TEST 'control_iovr5_intel' [06:01, 02:14](615 MB) +PASS -- TEST 'control_p8_intel' [07:01, 03:30](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:13, 03:24](1854 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:07, 03:29](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [06:49, 02:21](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [10:09, 03:27](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:57, 02:27](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:48, 03:33](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:44, 03:26](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:57, 05:33](1856 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [10:59, 04:11](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:08, 03:24](1856 MB) +PASS -- TEST 'merra2_thompson_intel' [11:05, 03:48](1860 MB) +PASS -- TEST 'regional_control_intel' [08:21, 05:26](859 MB) +PASS -- TEST 'regional_restart_intel' [06:16, 03:26](859 MB) +PASS -- TEST 'regional_decomp_intel' [10:16, 05:44](864 MB) +PASS -- TEST 'regional_noquilt_intel' [15:11, 05:10](1189 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:01, 05:31](863 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [13:13, 05:27](862 MB) +PASS -- TEST 'regional_wofs_intel' [14:09, 05:44](1593 MB) + +PASS -- COMPILE 'rrfs_intel' [17:17, 14:45] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [15:03, 06:23](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [10:21, 04:02](1160 MB) +PASS -- TEST 'rap_decomp_intel' [16:22, 06:56](1003 MB) +PASS -- TEST 'rap_2threads_intel' [13:43, 05:52](1083 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 03:21](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:19, 06:12](1003 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [15:32, 06:34](1005 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:30, 04:47](878 MB) +PASS -- TEST 'hrrr_control_intel' [14:25, 03:25](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:25, 03:28](1002 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [18:13, 03:20](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:01, 01:56](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [14:49, 06:15](1006 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [12:50, 07:36](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:53, 07:20](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [16:24, 13:32] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [11:14, 06:59](960 MB) +PASS -- TEST 'control_ras_intel' [06:49, 02:57](658 MB) + +PASS -- COMPILE 'wam_intel' [16:17, 13:23] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:02, 10:22](1650 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:17, 13:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:11, 03:21](1852 MB) +PASS -- TEST 'regional_control_faster_intel' [09:23, 05:10](861 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [19:18, 16:44] ( 889 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:24, 02:43](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:17, 02:44](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:41, 02:58](805 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:49, 02:43](804 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:35, 04:58](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [05:40, 02:45](810 MB) +PASS -- TEST 'control_diag_debug_intel' [09:12, 02:44](1660 MB) +PASS -- TEST 'control_debug_p8_intel' [08:32, 03:47](1891 MB) +PASS -- TEST 'regional_debug_intel' [20:27, 17:07](914 MB) +PASS -- TEST 'rap_control_debug_intel' [08:51, 04:47](1191 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:49, 04:47](1181 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:55, 05:03](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:53, 04:49](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:55, 04:56](1190 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:27, 05:06](1270 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:49, 04:56](1186 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:48, 05:01](1186 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:47, 04:58](1189 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:56, 04:57](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:55, 04:48](1187 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:52, 04:54](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:51, 07:38](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:53, 04:52](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:57, 05:35](1191 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:49, 04:54](1186 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:22](1192 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:20, 09:27] ( 844 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [16:36, 12:18](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [16:20, 14:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:35, 03:47](1013 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:16, 05:19](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:28, 02:55](879 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:33, 04:54](934 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:12, 02:37](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:14, 03:06](876 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:23, 04:01](786 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:46, 01:36](771 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:22, 13:21] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:00, 02:07](1076 MB) +PASS -- TEST 'conus13km_2threads_intel' [07:29, 01:18](1073 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [06:15, 01:20](962 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:18, 13:28] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:16, 03:47](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:19, 09:52] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:49, 04:44](1069 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:49, 04:38](1063 MB) +PASS -- TEST 'conus13km_debug_intel' [19:20, 14:00](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:21, 14:13](826 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:42, 08:03](1139 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:22, 14:22](1228 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:19, 10:01] ( 792 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:57, 04:44](1091 MB) + +PASS -- COMPILE 'hafsw_intel' [25:20, 20:46] ( 6 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:00, 04:58](698 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [11:00, 05:53](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:13, 06:51](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:50, 11:32](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:36, 12:32](795 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:13, 04:57](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:06, 06:06](477 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:30, 02:31](386 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:52, 06:41](743 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [12:18, 03:38](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:16, 03:16](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:09, 04:08](573 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:45, 01:27](419 MB) +PASS -- TEST 'gnv1_nested_intel' [10:45, 04:40](1714 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [16:18, 11:28] ( 1472 warnings 1481 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:44, 12:24](628 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [23:27, 20:02] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:19, 07:47](617 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [12:29, 07:53](679 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [25:24, 22:05] ( 5 warnings 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [12:10, 05:39](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [22:17, 19:01] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:11, 06:07](739 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:49, 06:09](723 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:03, 16:38](895 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:20, 10:52] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:54, 02:38](757 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:06, 01:45](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:30](655 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:59, 02:31](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:49, 02:34](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:49, 02:53](769 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:54, 02:56](769 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 02:29](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [13:44, 05:58](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [13:56, 06:01](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:33, 02:39](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:03, 04:09](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:04, 04:04](2037 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:19, 08:03] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:39, 05:26](751 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [23:23, 11:03] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:53, 02:33](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [15:17, 03:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:06, 01:53](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:02, 01:39](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:00, 01:08](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [26:23, 16:08] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:34, 04:21](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:22, 14:54] ( 5 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:34, 04:12](1899 MB) + +PASS -- COMPILE 'atml_intel' [24:22, 16:43] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:31, 09:17](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [14:32, 09:13](1880 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:29, 05:04](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [17:18, 12:50] ( 887 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:12, 06:36](1927 MB) + +PASS -- COMPILE 'atmw_intel' [19:17, 16:16] ( 5 warnings 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:03, 02:32](1876 MB) + +PASS -- COMPILE 'atmaero_intel' [18:18, 15:16] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:40, 04:51](3122 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:21, 04:27](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 04:38](3017 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [13:21, 10:50] ( 889 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [32:06, 22:46](4550 MB) SYNOPSIS: -Starting Date/Time: 20240822 07:13:47 -Ending Date/Time: 20240822 08:47:42 -Total Time: 01h:34m:55s +Starting Date/Time: 20240826 10:16:30 +Ending Date/Time: 20240826 12:28:53 +Total Time: 02h:13m:54s Compiles Completed: 41/41 Tests Completed: 184/184 diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log index ac864bfc2d..66aa06f2a1 100644 --- a/tests/logs/RegressionTests_gaea.log +++ b/tests/logs/RegressionTests_gaea.log @@ -1,18 +1,18 @@ ====START OF GAEA REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 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-20240821 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_17706 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_218269 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [20:12, 20:02] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:57, 07:42](3205 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 23:22] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:58, 14:26](1915 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:39, 14:42](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:00, 06:55](1073 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:42, 15:32](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 24:01] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:05, 13:54](1908 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [16:13, 15:45] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:38, 25:37](1942 MB) - -PASS -- COMPILE 's2swa_intel' [21:14, 20:12] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:12, 08:39](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:19, 08:37](3222 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:46, 05:50](3157 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:24, 08:21](3246 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:44, 05:31](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:10, 07:16](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [21:03, 08:38](3223 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 07:29](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:29, 08:41](3224 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:38, 10:38](3450 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [09:45, 06:40](3604 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [27:57, 10:57](4211 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:14, 06:44](4360 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:18, 08:18](3212 MB) - -PASS -- COMPILE 's2sw_intel' [20:12, 19:59] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:54, 05:10](1926 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:01, 05:42](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [16:13, 15:27] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:54, 10:35](3283 MB) - -PASS -- COMPILE 's2sw_debug_intel' [15:14, 14:41] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:31, 06:09](1950 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:15, 17:01] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:53, 05:30](1994 MB) - -PASS -- COMPILE 's2s_intel' [18:15, 17:40] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:17, 06:31](2873 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:31, 02:01](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [13:24, 01:17](2288 MB) - -PASS -- COMPILE 's2swa_faster_intel' [22:11, 21:43] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [13:55, 08:10](3223 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:57] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:04, 15:46](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:58, 07:46](1087 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:06, 17:45](1906 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 15:22] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:52, 26:44](1945 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 15:05] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:46, 04:03](665 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:17, 03:36](1561 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [08:48, 03:32](1566 MB) -PASS -- TEST 'control_latlon_intel' [08:42, 03:31](1566 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:59, 03:40](1564 MB) -PASS -- TEST 'control_c48_intel' [13:05, 06:40](1569 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:53, 05:49](699 MB) -PASS -- TEST 'control_c192_intel' [13:53, 10:06](1671 MB) -PASS -- TEST 'control_c384_intel' [23:27, 18:50](1929 MB) -PASS -- TEST 'control_c384gdas_intel' [20:39, 14:30](1152 MB) -PASS -- TEST 'control_stochy_intel' [03:29, 02:02](620 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:33, 01:00](426 MB) -PASS -- TEST 'control_lndp_intel' [04:34, 02:11](620 MB) -PASS -- TEST 'control_iovr4_intel' [04:35, 02:43](616 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 03:02](616 MB) -PASS -- TEST 'control_p8_intel' [05:08, 03:49](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:26, 03:30](1850 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:15, 03:30](1852 MB) -PASS -- TEST 'control_restart_p8_intel' [03:10, 01:46](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:06, 03:25](1846 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:10, 01:57](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:09, 03:22](1851 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:04, 02:52](1927 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:47, 05:23](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:21, 04:15](1905 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:29, 03:18](1864 MB) -PASS -- TEST 'merra2_thompson_intel' [05:21, 03:38](1857 MB) -PASS -- TEST 'regional_control_intel' [05:41, 04:40](858 MB) -PASS -- TEST 'regional_restart_intel' [04:40, 03:01](837 MB) -PASS -- TEST 'regional_decomp_intel' [05:41, 04:50](859 MB) -PASS -- TEST 'regional_2threads_intel' [03:41, 02:55](1000 MB) -PASS -- TEST 'regional_noquilt_intel' [05:41, 04:27](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:49, 04:51](849 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 04:47](850 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 06:19](1581 MB) - -PASS -- COMPILE 'rrfs_intel' [15:12, 14:35] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [12:20, 07:26](1008 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:20, 03:46](1148 MB) -PASS -- TEST 'rap_decomp_intel' [13:24, 07:35](1005 MB) -PASS -- TEST 'rap_2threads_intel' [11:28, 06:12](1086 MB) -PASS -- TEST 'rap_restart_intel' [05:08, 03:22](876 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:23, 07:25](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:20, 07:38](1003 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:10, 05:17](875 MB) -PASS -- TEST 'hrrr_control_intel' [06:20, 04:06](999 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:20, 04:19](995 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:20, 03:21](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:41, 02:05](830 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:27, 06:48](998 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:54, 08:41](1959 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:54, 08:29](1945 MB) - -PASS -- COMPILE 'csawmg_intel' [15:16, 14:04] -PASS -- TEST 'control_csawmg_intel' [07:43, 06:47](957 MB) -PASS -- TEST 'control_ras_intel' [04:31, 03:24](653 MB) - -PASS -- COMPILE 'wam_intel' [14:20, 13:37] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:14, 11:56](1646 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:15, 14:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:21, 03:21](1847 MB) -PASS -- TEST 'regional_control_faster_intel' [05:48, 04:33](827 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 15:16] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:56, 03:03](1590 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:53, 03:03](1593 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:10](794 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 03:06](795 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:44, 04:25](1098 MB) -PASS -- TEST 'control_ras_debug_intel' [04:37, 03:06](802 MB) -PASS -- TEST 'control_diag_debug_intel' [04:49, 03:12](1660 MB) -PASS -- TEST 'control_debug_p8_intel' [04:42, 03:19](1887 MB) -PASS -- TEST 'regional_debug_intel' [17:38, 16:30](897 MB) -PASS -- TEST 'rap_control_debug_intel' [06:31, 05:12](1182 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:31, 05:07](1173 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:26, 05:23](1177 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:22](1177 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:30, 05:07](1182 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:37, 05:37](1261 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:21](1176 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:28, 05:16](1182 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:33, 05:11](1184 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:46, 05:13](1182 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:39, 05:04](1176 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:38, 05:09](1180 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:39, 07:56](1175 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:38, 04:58](1170 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:35, 06:11](1180 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:37, 05:11](1176 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:18, 08:51](1178 MB) - -PASS -- COMPILE 'wam_debug_intel' [12:11, 10:57] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:20, 13:22](1672 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:14, 14:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:27, 03:40](1014 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:16, 05:57](882 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:37, 03:52](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:13, 05:26](940 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:12, 02:49](925 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:16, 03:34](880 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:16, 04:15](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:43, 02:10](763 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [16:11, 15:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:38, 02:11](1088 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:11, 01:18](1064 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:05, 01:53](965 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 14:13] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:19, 04:48](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:41, 05:02](1048 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 05:00](1049 MB) -PASS -- TEST 'conus13km_debug_intel' [16:33, 14:46](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:32, 15:05](805 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [10:23, 08:30](1110 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:26, 14:26](1198 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [11:10, 10:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:38, 05:16](1079 MB) - -PASS -- COMPILE 'hafsw_intel' [18:13, 16:53] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:36, 04:51](685 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:54, 04:06](1035 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:42, 07:19](731 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:17, 11:37](760 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:49, 12:29](785 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:25, 05:16](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 06:16](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:36, 02:27](370 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 06:59](434 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:01, 03:42](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:18, 03:24](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:14, 04:13](558 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:50, 01:29](400 MB) -PASS -- TEST 'gnv1_nested_intel' [08:29, 05:15](1710 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:11, 12:37] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:20, 12:23](588 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [17:11, 16:30] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:23, 07:16](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:35, 07:22](782 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 17:32] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:49, 05:25](776 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:11, 16:25] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [08:25, 06:09](720 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:31, 06:22](712 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:24, 20:01](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [14:11, 13:35] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:36, 02:42](763 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:31, 01:36](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:29, 02:27](643 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:29, 02:27](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:30, 02:32](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:25, 02:34](763 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:30, 02:35](763 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:30, 02:26](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:23, 06:11](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:12, 06:06](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:24, 02:36](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:31, 04:40](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:28, 04:41](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:12, 08:44] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:32, 05:33](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [14:14, 13:24] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:34, 02:38](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [04:12, 03:31] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:14, 02:38](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:55, 01:35](454 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:56, 01:06](454 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 15:57] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:13, 04:14](1914 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 14:42] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:34, 04:06](1903 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 15:43] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:59, 08:13](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:02, 07:54](1883 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:52, 03:48](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [13:10, 12:30] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:50, 06:37](1920 MB) - -PASS -- COMPILE 'atmw_intel' [17:12, 16:34] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:31, 02:26](1884 MB) - -PASS -- COMPILE 'atmaero_intel' [15:13, 14:43] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:31, 06:24](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:29, 07:11](3009 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:20, 07:16](3019 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [13:12, 12:12] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [20:55, 18:21](4480 MB) +PASS -- COMPILE 's2swa_32bit_intel' [22:15, 20:27] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [26:50, 07:27](3205 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:13, 23:23] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [33:05, 13:45](1913 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 14:12](1935 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:29, 06:58](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [33:50, 15:00](1887 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:14, 23:42] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [33:13, 13:52](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 15:53] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [28:34, 25:21](1940 MB) + +PASS -- COMPILE 's2swa_intel' [21:11, 20:06] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [13:32, 08:20](3223 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:29, 08:48](3222 MB) +PASS -- TEST 'cpld_restart_p8_intel' [36:20, 05:39](3157 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:34, 08:58](3246 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [34:17, 05:41](3172 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:36, 06:50](3466 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [13:23, 08:26](3223 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [12:23, 07:30](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:39, 08:30](3224 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:50, 10:41](3444 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [30:26, 06:46](3602 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [35:48, 10:29](4211 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:37, 06:29](4360 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:29, 08:12](3212 MB) + +PASS -- COMPILE 's2sw_intel' [20:14, 19:08] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:53, 05:04](1929 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:03, 05:38](1988 MB) + +PASS -- COMPILE 's2swa_debug_intel' [16:11, 14:48] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:03, 10:11](3281 MB) + +PASS -- COMPILE 's2sw_debug_intel' [18:15, 16:51] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:41, 06:16](1950 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:15, 17:24] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:24](1994 MB) + +PASS -- COMPILE 's2s_intel' [19:15, 17:10] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:32, 06:28](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:18, 02:03](2877 MB) +PASS -- TEST 'cpld_restart_c48_intel' [06:26, 01:13](2289 MB) + +PASS -- COMPILE 's2swa_faster_intel' [23:16, 21:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [28:33, 08:08](3224 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:12, 22:47] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:30, 15:20](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:22, 07:57](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:09, 18:00](1906 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:15, 14:18] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [58:59, 28:17](1944 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [30:56, 03:56](665 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [32:02, 03:40](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [31:53, 03:37](1566 MB) +PASS -- TEST 'control_latlon_intel' [31:28, 03:38](1565 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [31:44, 03:37](1564 MB) +PASS -- TEST 'control_c48_intel' [34:57, 06:37](1569 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [17:53, 05:46](698 MB) +PASS -- TEST 'control_c192_intel' [37:53, 10:12](1671 MB) +PASS -- TEST 'control_c384_intel' [46:11, 18:43](1929 MB) +PASS -- TEST 'control_c384gdas_intel' [44:03, 14:44](1155 MB) +PASS -- TEST 'control_stochy_intel' [29:56, 02:10](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:50, 01:00](426 MB) +PASS -- TEST 'control_lndp_intel' [30:01, 02:11](619 MB) +PASS -- TEST 'control_iovr4_intel' [30:02, 03:01](617 MB) +PASS -- TEST 'control_iovr5_intel' [31:00, 03:07](617 MB) +PASS -- TEST 'control_p8_intel' [32:42, 03:43](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [33:19, 03:50](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [32:52, 03:52](1853 MB) +PASS -- TEST 'control_restart_p8_intel' [05:26, 01:47](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [32:42, 03:40](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:26, 01:42](1016 MB) +PASS -- TEST 'control_decomp_p8_intel' [29:49, 03:35](1849 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:05, 02:54](1928 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:21, 05:14](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:18, 04:07](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:41, 03:21](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [07:10, 03:36](1857 MB) +PASS -- TEST 'regional_control_intel' [07:18, 04:38](833 MB) +PASS -- TEST 'regional_restart_intel' [04:51, 02:34](850 MB) +PASS -- TEST 'regional_decomp_intel' [07:06, 04:48](852 MB) +PASS -- TEST 'regional_2threads_intel' [05:19, 02:53](991 MB) +PASS -- TEST 'regional_noquilt_intel' [07:27, 04:28](1174 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:29, 04:33](857 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:09, 04:34](851 MB) +PASS -- TEST 'regional_wofs_intel' [09:08, 06:06](1581 MB) + +PASS -- COMPILE 'rrfs_intel' [17:11, 15:27] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:40, 06:49](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:37, 03:43](1149 MB) +PASS -- TEST 'rap_decomp_intel' [09:50, 06:49](1005 MB) +PASS -- TEST 'rap_2threads_intel' [08:42, 05:58](1082 MB) +PASS -- TEST 'rap_restart_intel' [06:25, 03:24](875 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:27, 07:17](1002 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:27, 07:11](1003 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:55, 05:29](875 MB) +PASS -- TEST 'hrrr_control_intel' [06:21, 03:54](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:35, 03:57](995 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:28, 03:21](1076 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:53, 01:53](830 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:41, 07:04](998 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:48, 08:20](1959 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:52, 07:57](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [16:11, 14:14] +PASS -- TEST 'control_csawmg_intel' [09:08, 06:58](957 MB) +PASS -- TEST 'control_ras_intel' [05:54, 03:32](653 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [39:59, 12:10](1644 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:14, 14:06] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:45, 03:23](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [07:19, 04:30](848 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [17:11, 15:27] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:48, 03:03](1591 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:24, 03:09](1594 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:45, 03:13](794 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:54, 02:54](795 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:06, 04:22](1100 MB) +PASS -- TEST 'control_ras_debug_intel' [06:10, 03:07](801 MB) +PASS -- TEST 'control_diag_debug_intel' [06:11, 03:07](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [06:02, 03:26](1890 MB) +PASS -- TEST 'regional_debug_intel' [18:51, 16:08](891 MB) +PASS -- TEST 'rap_control_debug_intel' [07:44, 05:24](1184 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:37, 05:16](1173 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 05:12](1178 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:37, 05:24](1178 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:05, 05:12](1184 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:25, 05:22](1263 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:06, 05:11](1178 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:05, 05:19](1180 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:07, 05:10](1183 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:57, 05:28](1183 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:57, 05:11](1180 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:02, 05:23](1182 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:48, 08:00](1177 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:51, 05:31](1172 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:49, 06:35](1183 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:38, 05:18](1177 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:33, 08:41](1180 MB) + +PASS -- COMPILE 'wam_debug_intel' [13:13, 11:28] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:21, 14:00](1672 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:13, 12:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:17, 03:34](1012 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:20, 06:14](882 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:24, 03:48](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:21, 05:33](941 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:18, 02:41](925 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:13, 03:41](881 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:20, 04:26](775 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [20:48, 01:41](761 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [15:11, 13:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:40, 02:34](1086 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:15, 01:15](1062 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [21:14, 01:30](964 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:12, 14:17] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:28, 04:33](908 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [13:15, 11:10] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:36, 05:15](1048 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:37, 05:13](1049 MB) +PASS -- TEST 'conus13km_debug_intel' [18:25, 14:40](1135 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:04, 15:04](808 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 08:43](1111 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:13, 14:12](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [13:10, 11:08] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:46, 05:07](1080 MB) + +PASS -- COMPILE 'hafsw_intel' [18:12, 16:52] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:27, 04:43](685 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:47, 03:54](1033 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [14:02, 07:37](729 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:29, 11:25](760 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:57, 12:52](782 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:31, 05:04](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 06:16](480 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [15:31, 02:39](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:05, 07:05](441 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [23:18, 03:34](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [22:24, 03:15](496 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [22:25, 04:02](551 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:53, 01:16](398 MB) +PASS -- TEST 'gnv1_nested_intel' [27:32, 05:18](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [14:14, 12:42] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [33:21, 12:24](587 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:16, 17:07] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [27:26, 07:14](600 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [27:22, 07:09](777 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [19:12, 17:18] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [25:42, 05:25](776 MB) + +PASS -- COMPILE 'hafs_all_intel' [19:16, 17:03] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [26:23, 06:02](722 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [25:21, 06:07](706 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [38:21, 20:06](893 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:13, 12:36] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [18:30, 02:37](763 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:29, 01:34](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [19:30, 02:28](640 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [18:32, 02:28](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [17:25, 02:30](640 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [16:36, 02:35](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [15:30, 02:33](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [16:31, 02:26](647 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [20:22, 06:01](695 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [20:14, 05:57](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [16:28, 02:38](763 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 04:38](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [16:33, 04:41](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [13:11, 11:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [17:32, 05:45](747 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [14:12, 12:57] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [12:31, 02:36](763 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:15, 03:26] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [09:03, 02:33](308 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [07:55, 01:22](454 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:01, 00:57](454 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:12, 16:20] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:48, 04:02](1915 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:16, 15:44] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:19, 04:26](1903 MB) + +PASS -- COMPILE 'atml_intel' [17:15, 15:25] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:19, 07:20](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [13:12, 07:16](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:07, 03:47](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:15, 11:23] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:50, 06:27](1916 MB) + +PASS -- COMPILE 'atmw_intel' [17:12, 15:17] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:07, 02:49](1884 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:31] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:32, 06:22](3119 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:43, 06:55](3008 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:29, 07:10](3018 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [16:11, 14:32] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [33:38, 18:23](4485 MB) SYNOPSIS: -Starting Date/Time: 20240821 16:22:45 -Ending Date/Time: 20240821 18:02:09 -Total Time: 01h:40m:40s +Starting Date/Time: 20240826 12:28:28 +Ending Date/Time: 20240826 15:05:06 +Total Time: 02h:38m:09s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 1e3c9edb0e..e09b636b6f 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: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) @@ -25,431 +25,376 @@ 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-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/role.epic/FV3_RT/rt_3692277 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [25:14, 13:24] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:11, 06:19](3301 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:16, 17:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [27:17, 17:29](1983 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:28, 18:18](2174 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:23, 08:22](1229 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:59, 19:31](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [28:16, 16:50] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [25:47, 17:11](1963 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 06:15] ( 1525 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [41:16, 23:37](1933 MB) - -PASS -- COMPILE 's2swa_intel' [24:14, 13:00] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:16, 05:56](3326 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:29, 05:57](3350 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:28, 03:36](3252 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:16, 05:58](3359 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [05:28, 03:41](3278 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [16:18, 05:32](3635 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:13, 06:03](3313 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 04:53](3217 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:27, 06:00](3330 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:19, 10:38](3525 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:51, 06:36](3628 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [29:50, 10:16](4305 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:19, 06:48](4395 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [16:19, 05:27](3301 MB) - -PASS -- COMPILE 's2sw_intel' [24:14, 12:33] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [16:14, 05:01](1993 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:26, 04:30](2036 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:14, 06:12] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:24, 08:47](3361 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:14, 06:29] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [23:02, 05:57](1978 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:14, 11:32] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [17:16, 04:24](2038 MB) - -PASS -- COMPILE 's2s_intel' [22:14, 11:07] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [21:45, 09:03](3058 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:46, 02:40](3049 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:49, 01:35](2499 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:50] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [08:12, 05:49](3327 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 16:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:05, 17:38](2011 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [10:31, 08:26](1273 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:14, 20:05](1900 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [22:14, 06:09] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:16, 25:40](1960 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [23:17, 10:32] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [09:25, 03:23](710 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:45, 02:54](1598 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:46, 03:02](1608 MB) -PASS -- TEST 'control_latlon_intel' [08:42, 03:01](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:56, 03:00](1597 MB) -PASS -- TEST 'control_c48_intel' [12:55, 07:36](1714 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:31, 06:32](854 MB) -PASS -- TEST 'control_c192_intel' [15:10, 12:01](1757 MB) -PASS -- TEST 'control_c384_intel' [15:09, 10:46](1969 MB) -PASS -- TEST 'control_c384gdas_intel' [12:25, 08:03](1376 MB) -PASS -- TEST 'control_stochy_intel' [04:27, 01:38](661 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:28, 01:00](505 MB) -PASS -- TEST 'control_lndp_intel' [04:27, 01:33](659 MB) -PASS -- TEST 'control_iovr4_intel' [05:31, 02:29](659 MB) -PASS -- TEST 'control_iovr5_intel' [05:26, 02:29](654 MB) -PASS -- TEST 'control_p8_intel' [06:04, 03:06](1894 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [10:12, 03:03](1904 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:58, 02:57](1898 MB) -PASS -- TEST 'control_restart_p8_intel' [06:44, 01:44](1130 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:58, 03:02](1895 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [02:56, 01:44](1169 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:50, 03:12](1887 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:45, 02:55](1967 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:43, 05:21](1888 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:53, 04:03](1955 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:53, 03:06](1892 MB) -PASS -- TEST 'merra2_thompson_intel' [09:49, 03:24](1907 MB) -PASS -- TEST 'regional_control_intel' [11:36, 05:15](1087 MB) -PASS -- TEST 'regional_restart_intel' [03:45, 02:55](1091 MB) -PASS -- TEST 'regional_decomp_intel' [11:34, 05:38](1095 MB) -PASS -- TEST 'regional_2threads_intel' [09:37, 03:22](1084 MB) -PASS -- TEST 'regional_noquilt_intel' [10:41, 05:18](1395 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:41, 05:16](1100 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [09:35, 05:20](1097 MB) -PASS -- TEST 'regional_wofs_intel' [08:42, 06:48](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [23:16, 10:21] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:40, 07:51](1101 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:19, 04:04](1257 MB) -PASS -- TEST 'rap_decomp_intel' [09:37, 08:13](1041 MB) -PASS -- TEST 'rap_2threads_intel' [08:37, 07:24](1169 MB) -PASS -- TEST 'rap_restart_intel' [04:46, 04:04](1101 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:44, 07:46](1104 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:39, 08:13](1043 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [06:46, 05:55](1135 MB) -PASS -- TEST 'hrrr_control_intel' [05:42, 03:58](1034 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:34, 04:06](1036 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:37, 03:41](1101 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:10](1004 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:49, 07:40](1098 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:27, 09:17](1996 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:08](2068 MB) - -PASS -- COMPILE 'csawmg_intel' [20:16, 09:53] -PASS -- TEST 'control_csawmg_intel' [12:50, 06:09](1016 MB) -PASS -- TEST 'control_ras_intel' [06:30, 03:16](746 MB) - -PASS -- COMPILE 'csawmg_gnu' [15:14, 04:09] -PASS -- TEST 'control_csawmg_gnu' [09:44, 08:25](739 MB) - -PASS -- COMPILE 'wam_intel' [21:17, 09:53] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [12:54, 11:12](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [19:16, 09:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:01, 02:47](1886 MB) -PASS -- TEST 'regional_control_faster_intel' [05:47, 04:52](1086 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:15, 07:30] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:54, 02:45](1622 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [09:58, 02:35](1621 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:30, 03:05](836 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:30, 02:46](833 MB) -PASS -- TEST 'control_csawmg_debug_intel' [10:51, 04:15](1142 MB) -PASS -- TEST 'control_ras_debug_intel' [08:32, 02:52](841 MB) -PASS -- TEST 'control_diag_debug_intel' [11:11, 02:46](1685 MB) -PASS -- TEST 'control_debug_p8_intel' [11:01, 03:07](1888 MB) -PASS -- TEST 'regional_debug_intel' [25:50, 17:37](1102 MB) -PASS -- TEST 'rap_control_debug_intel' [09:30, 05:00](1220 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:34, 04:56](1212 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [10:33, 05:01](1225 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:32, 05:02](1218 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:29, 05:09](1225 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:52, 05:17](1305 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [12:26, 05:02](1219 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:25, 05:12](1208 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:25, 05:06](1223 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:24, 05:04](1218 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:26, 04:56](1217 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:03](1220 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:27, 08:04](1214 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:25, 04:59](1213 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:30, 06:00](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:25, 04:56](1220 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:45, 08:41](1221 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [07:11, 04:05] -PASS -- TEST 'control_csawmg_debug_gnu' [03:42, 02:28](723 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:55, 13:27](1664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:57] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 03:51](1128 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:35, 06:26](1054 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:42, 03:23](989 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:40, 06:09](1091 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:32, 03:09](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:33, 03:35](930 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:42, 04:56](1042 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:31, 01:52](930 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:13, 09:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:05, 02:08](1189 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:58, 00:52](1117 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:50, 01:13](1098 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:12, 10:03] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:41, 04:12](983 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:12, 05:05] ( 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' [06:24, 04:55](1091 MB) -PASS -- TEST 'conus13km_debug_intel' [19:50, 15:37](1244 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:50, 15:09](941 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:44, 08:25](1162 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:46, 14:47](1315 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:13, 04:40] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 04:59](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [15:13, 11:29] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:17, 04:55](728 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:31, 05:40](1101 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:23, 06:54](820 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:23, 13:37](843 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:27, 15:13](871 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:01, 05:27](488 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:24, 06:38](510 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:46, 02:38](375 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:04](483 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:48, 03:39](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:56, 03:30](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:53, 04:02](582 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:29, 01:10](407 MB) -PASS -- TEST 'gnv1_nested_intel' [05:37, 04:02](1734 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:13, 05:11] ( 1467 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:57, 13:07](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:13, 11:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:01, 08:34](646 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:11, 08:41](702 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:13, 11:27] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:40, 06:24](723 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:14, 10:51] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:22, 06:58](816 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 06:26](804 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:58, 16:07](1219 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [15:12, 06:25] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:43](1152 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:21, 01:36](1114 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:35](1036 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:39](1035 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:42](1013 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 02:42](1157 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 02:38](1161 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:19, 02:37](1034 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:38, 06:24](1074 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:26, 06:01](1050 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:15, 02:42](1169 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 03:54](2508 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:21, 03:54](2510 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [11:12, 03:26] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 06:23](1093 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:12, 06:39] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 02:43](1169 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 01:08] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:34, 00:45](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:25, 00:48](321 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:27, 00:33](329 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:13, 10:34] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:16, 03:40](1983 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:13, 10:17] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:06, 03:36](1962 MB) - -PASS -- COMPILE 'atml_intel' [18:12, 10:44] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:06, 04:23](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [10:03, 04:19](1862 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:57, 02:24](1097 MB) - -PASS -- COMPILE 'atml_debug_intel' [12:13, 05:51] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:57, 05:46](1891 MB) - -PASS -- COMPILE 'atmw_intel' [16:12, 10:53] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:50, 01:53](1895 MB) - -PASS -- COMPILE 'atmaero_intel' [15:13, 10:28] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:01, 04:22](3182 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:57, 04:55](3104 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:54, 05:05](3081 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:12, 04:52] ( 884 warnings 6 remarks ) - -PASS -- COMPILE 'atm_gnu' [07:12, 04:45] -PASS -- TEST 'control_c48_gnu' [12:40, 11:16](1510 MB) -PASS -- TEST 'control_stochy_gnu' [08:26, 03:29](490 MB) -PASS -- TEST 'control_ras_gnu' [09:23, 04:54](508 MB) -PASS -- TEST 'control_p8_gnu' [09:58, 04:53](1454 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [09:55, 04:37](1455 MB) -PASS -- TEST 'control_flake_gnu' [16:27, 10:24](533 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:12, 04:33] -PASS -- TEST 'rap_control_gnu' [16:42, 11:03](846 MB) -PASS -- TEST 'rap_decomp_gnu' [16:39, 11:00](844 MB) -PASS -- TEST 'rap_2threads_gnu' [14:43, 09:52](917 MB) -PASS -- TEST 'rap_restart_gnu' [07:48, 05:29](575 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [15:44, 10:48](810 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [16:43, 11:01](808 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:45, 08:08](576 MB) -PASS -- TEST 'hrrr_control_gnu' [11:48, 05:38](812 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [11:50, 05:35](797 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [10:42, 05:10](909 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:41, 05:39](811 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:33, 02:57](563 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:30, 02:51](657 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:55, 10:32](844 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:12, 06:38] -PASS -- TEST 'control_diag_debug_gnu' [06:55, 01:40](1269 MB) -PASS -- TEST 'regional_debug_gnu' [16:40, 11:28](740 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:24, 02:39](819 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:23, 02:34](819 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [06:24, 02:36](827 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:40](825 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:46, 02:55](905 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:35, 04:09](823 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:26, 02:40](820 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:22, 02:37](820 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:21, 01:35](456 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:21, 01:50](455 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:45, 01:50](1428 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:37, 03:22](822 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 03:07](826 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:42, 04:24](826 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:37] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 04:18] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:33, 09:35](705 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:37, 05:04](703 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:39, 08:40](750 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:34, 04:33](747 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [08:36, 05:09](706 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:42, 07:03](555 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:27, 02:36](540 MB) -PASS -- TEST 'conus13km_control_gnu' [07:10, 03:13](873 MB) -PASS -- TEST 'conus13km_2threads_gnu' [07:53, 06:15](876 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:51, 02:19](567 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:12, 09:49] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 05:45](724 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 06:39] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:24, 02:35](715 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:25, 02:31](710 MB) -PASS -- TEST 'conus13km_debug_gnu' [09:58, 07:09](892 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:52, 07:06](580 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [09:45, 08:00](891 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:47, 07:00](960 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:39] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:27, 02:36](734 MB) - -PASS -- COMPILE 's2swa_gnu' [17:12, 16:32] - -PASS -- COMPILE 's2s_gnu' [17:12, 16:05] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:45, 07:20](1518 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:13] - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:12, 16:17] -FAILED: TEST TIMED OUT -- TEST 'cpld_control_pdlib_p8_gnu' [, ]( MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 03:15] - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 15:56] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:24, 03:04](689 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [12:20, 12:20] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [06:29, 05:41](3309 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [16:17, 16:16] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:02, 17:19](1940 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:06, 18:07](2138 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [09:16, 08:21](1244 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:07, 19:26](1841 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:19, 16:18] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:34, 17:04](1950 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:42, 05:42] ( 1525 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [24:13, 23:31](1888 MB) + +PASS -- COMPILE 's2swa_intel' [12:26, 12:26] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [06:58, 06:07](3338 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [06:48, 05:57](3325 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:34, 03:47](3221 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:02, 06:13](3370 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:40, 03:38](3270 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [06:18, 05:34](3629 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [06:53, 06:10](3309 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:41, 04:49](3207 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:27, 06:33](3326 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [12:16, 10:41](3513 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:46, 06:32](3617 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [15:24, 09:51](4273 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [13:04, 05:57](4357 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [06:30, 05:42](3296 MB) + +PASS -- COMPILE 's2sw_intel' [11:38, 11:38] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [05:51, 05:05](1992 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [05:17, 04:32](2040 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:41, 05:41] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [09:45, 08:56](3396 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:22, 05:22] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:44, 05:58](1964 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [11:00, 11:00] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:10, 04:23](2017 MB) + +PASS -- COMPILE 's2s_intel' [11:03, 11:03] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:22, 08:56](3060 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:05, 02:36](3037 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:00, 01:29](2457 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:34, 17:33] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:28, 05:30](3332 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:06, 15:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:15, 17:41](1973 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:36, 08:35](1244 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:58, 20:09](1891 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:25, 05:25] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:50, 26:01](1937 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:38, 10:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [03:34, 03:20](695 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:26, 02:55](1601 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:30, 02:59](1583 MB) +PASS -- TEST 'control_latlon_intel' [03:25, 02:58](1571 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 02:59](1585 MB) +PASS -- TEST 'control_c48_intel' [08:22, 07:49](1706 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:42, 06:28](858 MB) +PASS -- TEST 'control_c192_intel' [11:24, 10:44](1727 MB) +PASS -- TEST 'control_c384_intel' [12:07, 10:45](1964 MB) +PASS -- TEST 'control_c384gdas_intel' [10:17, 08:04](1379 MB) +PASS -- TEST 'control_stochy_intel' [01:50, 01:38](658 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:20, 01:02](505 MB) +PASS -- TEST 'control_lndp_intel' [01:48, 01:33](661 MB) +PASS -- TEST 'control_iovr4_intel' [02:45, 02:28](655 MB) +PASS -- TEST 'control_iovr5_intel' [02:46, 02:28](652 MB) +PASS -- TEST 'control_p8_intel' [04:01, 03:15](1870 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:54, 03:09](1853 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:39, 02:57](1897 MB) +PASS -- TEST 'control_restart_p8_intel' [02:18, 01:45](1132 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:38, 03:04](1850 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:20, 01:43](1158 MB) +PASS -- TEST 'control_decomp_p8_intel' [03:46, 03:12](1856 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 02:55](1962 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:49, 05:26](1892 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:46, 04:06](1948 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:29, 03:11](1897 MB) +PASS -- TEST 'merra2_thompson_intel' [05:00, 03:26](1866 MB) +PASS -- TEST 'regional_control_intel' [06:02, 05:32](1086 MB) +PASS -- TEST 'regional_restart_intel' [03:18, 02:52](1084 MB) +PASS -- TEST 'regional_decomp_intel' [06:02, 05:35](1085 MB) +PASS -- TEST 'regional_2threads_intel' [03:51, 03:26](1081 MB) +PASS -- TEST 'regional_noquilt_intel' [05:42, 05:19](1393 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:46, 05:16](1089 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:26, 05:20](1078 MB) +PASS -- TEST 'regional_wofs_intel' [07:23, 06:56](1891 MB) + +PASS -- COMPILE 'rrfs_intel' [10:07, 10:06] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:17, 07:49](1109 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 04:03](1257 MB) +PASS -- TEST 'rap_decomp_intel' [08:39, 08:11](1032 MB) +PASS -- TEST 'rap_2threads_intel' [07:51, 07:24](1174 MB) +PASS -- TEST 'rap_restart_intel' [04:42, 04:06](1098 MB) +PASS -- TEST 'rap_sfcdiff_intel' [08:12, 07:44](1105 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 08:18](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:27, 05:53](1126 MB) +PASS -- TEST 'hrrr_control_intel' [04:29, 03:59](1042 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:33, 04:06](1036 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:06, 03:43](1103 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:32, 02:10](996 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:24, 07:52](1101 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:36, 09:21](1983 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:21, 09:07](2068 MB) + +PASS -- COMPILE 'csawmg_intel' [09:43, 09:42] +PASS -- TEST 'control_csawmg_intel' [06:33, 06:07](1021 MB) +PASS -- TEST 'control_ras_intel' [03:34, 03:18](739 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:17, 04:16] +PASS -- TEST 'control_csawmg_gnu' [09:11, 08:43](745 MB) + +PASS -- COMPILE 'wam_intel' [10:09, 10:08] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [11:39, 11:10](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:56, 09:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:25, 02:46](1887 MB) +PASS -- TEST 'regional_control_faster_intel' [05:21, 04:52](1086 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:25, 07:24] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:13, 02:47](1624 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:12, 02:39](1628 MB) +PASS -- TEST 'control_stochy_debug_intel' [03:24, 03:07](829 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:01, 02:49](826 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:43, 04:18](1139 MB) +PASS -- TEST 'control_ras_debug_intel' [03:11, 02:55](839 MB) +PASS -- TEST 'control_diag_debug_intel' [03:27, 02:52](1686 MB) +PASS -- TEST 'control_debug_p8_intel' [03:45, 03:12](1876 MB) +PASS -- TEST 'regional_debug_intel' [19:14, 18:44](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [05:34, 05:19](1230 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:32, 05:16](1212 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:37, 05:20](1221 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:25, 05:11](1219 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 05:06](1195 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:44, 05:17](1299 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:23, 05:09](1219 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 05:08](1217 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:20, 05:05](1220 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:15, 05:01](1221 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:11, 04:57](1221 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 05:00](1219 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:28, 09:13](1219 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:18, 06:03](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:06, 06:50](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:12, 05:55](1217 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 10:04](1224 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:16, 04:15] +PASS -- TEST 'control_csawmg_debug_gnu' [02:52, 02:23](735 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:40, 04:39] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:17, 13:40](1658 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:45, 09:44] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:32, 04:31](1129 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:22, 06:30](1052 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:06, 03:29](985 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:50, 06:23](1079 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:32, 03:10](966 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:04, 03:38](932 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:21, 04:51](1036 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:12, 01:52](930 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:55, 09:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:58, 02:12](1193 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:30, 00:57](1112 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:56, 01:21](1082 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:48, 09:47] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:43, 04:14](981 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:44, 04:44] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 05:03](1094 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:04, 04:50](1094 MB) +PASS -- TEST 'conus13km_debug_intel' [15:49, 15:10](1238 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:51, 15:16](909 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:03, 08:29](1155 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:31, 15:01](1305 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:27, 04:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:22, 05:10](1146 MB) + +PASS -- COMPILE 'hafsw_intel' [11:22, 11:22] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:12, 05:10](722 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 06:13](1094 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [08:12, 07:01](813 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:36, 13:35](855 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:29, 15:20](871 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:22, 05:39](487 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:01, 06:54](503 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:48](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:24, 07:38](469 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:18, 03:46](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:12, 03:36](520 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:49, 04:11](580 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:30, 01:12](409 MB) +PASS -- TEST 'gnv1_nested_intel' [05:19, 04:03](1719 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:16, 05:15] ( 1467 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:53, 13:02](593 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:16, 11:16] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [09:36, 08:51](630 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [09:42, 08:48](743 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:21, 11:20] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:09, 06:50](722 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:49, 10:48] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:33, 06:36](814 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:34, 06:36](802 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [16:39, 16:00](1219 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:46, 06:46] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:54, 02:43](1163 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:39](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:42, 02:34](1032 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:58, 02:51](1027 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:49, 02:42](1024 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:49, 02:39](1169 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:51, 02:44](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:39, 02:32](1022 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:17, 06:14](1073 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:14, 06:12](1048 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:18, 03:14](1141 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:36](2443 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:04, 03:53](2509 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:10, 03:10] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:22, 06:14](1095 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:27, 06:27] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:08, 03:00](1132 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [01:19, 01:19] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:09, 00:51](262 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:00, 00:48](328 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:47, 00:33](325 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:21, 10:21] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:34, 03:42](1951 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:06, 10:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:36, 03:41](1935 MB) + +PASS -- COMPILE 'atml_intel' [10:52, 10:51] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [05:10, 04:23](1862 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [05:10, 04:20](1831 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:02, 02:25](1108 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:34, 05:33] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:47, 05:50](1846 MB) + +PASS -- COMPILE 'atmw_intel' [10:30, 10:29] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:35, 01:55](1895 MB) + +PASS -- COMPILE 'atmaero_intel' [10:17, 10:17] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:01, 04:16](3182 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 05:00](3075 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 04:53](3113 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:37, 04:37] ( 884 warnings 6 remarks ) + +PASS -- COMPILE 'atm_gnu' [04:35, 04:34] +PASS -- TEST 'control_c48_gnu' [11:42, 11:14](1510 MB) +PASS -- TEST 'control_stochy_gnu' [03:40, 03:24](494 MB) +PASS -- TEST 'control_ras_gnu' [05:02, 04:46](504 MB) +PASS -- TEST 'control_p8_gnu' [05:43, 04:57](1450 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:23, 04:42](1452 MB) +PASS -- TEST 'control_flake_gnu' [10:42, 10:28](535 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:29, 04:29] +PASS -- TEST 'rap_control_gnu' [11:26, 10:59](813 MB) +PASS -- TEST 'rap_decomp_gnu' [11:27, 11:03](816 MB) +PASS -- TEST 'rap_2threads_gnu' [10:11, 09:49](921 MB) +PASS -- TEST 'rap_restart_gnu' [06:03, 05:33](574 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [11:16, 10:51](813 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:40, 11:14](814 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [08:35, 08:04](580 MB) +PASS -- TEST 'hrrr_control_gnu' [06:02, 05:33](846 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:00, 05:37](833 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:24, 05:01](916 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:03, 05:41](808 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:11, 02:54](564 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:08, 02:49](655 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [11:07, 10:36](840 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [06:38, 06:38] +PASS -- TEST 'control_diag_debug_gnu' [02:14, 01:41](1270 MB) +PASS -- TEST 'regional_debug_gnu' [11:11, 10:45](743 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:53, 02:41](819 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:48, 02:35](816 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:46, 02:33](826 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:48, 02:36](826 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:17, 02:51](905 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 04:07](819 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:49, 02:37](825 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:47, 02:35](815 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:45, 01:34](455 MB) +PASS -- TEST 'control_stochy_debug_gnu' [02:03, 01:53](448 MB) +PASS -- TEST 'control_debug_p8_gnu' [02:15, 01:47](1426 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:55, 02:42](820 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:10, 02:57](818 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:50, 04:22](824 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:40, 02:40] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:24, 04:23] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [09:46, 09:21](702 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:31, 05:02](708 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:05, 08:36](756 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:01, 04:36](741 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:28, 05:06](705 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [07:30, 07:02](551 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:53, 02:34](538 MB) +PASS -- TEST 'conus13km_control_gnu' [03:53, 03:14](873 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:53, 06:18](888 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:23, 01:51](558 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [09:41, 09:40] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:08, 05:42](727 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:25, 06:24] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:51, 02:34](716 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:45, 02:32](714 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:28, 06:55](890 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:40, 07:08](577 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [08:26, 07:57](889 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:29, 06:59](956 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:25, 06:24] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:56, 02:43](736 MB) + +PASS -- COMPILE 's2swa_gnu' [16:32, 16:32] + +PASS -- COMPILE 's2s_gnu' [15:52, 15:52] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:18, 07:23](1514 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:08, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:16, 16:16] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:54, 19:07](1467 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:21, 03:20] + +PASS -- COMPILE 'datm_cdeps_gnu' [15:36, 15:36] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:06, 02:59](697 MB) SYNOPSIS: -Starting Date/Time: 20240821 19:42:31 -Ending Date/Time: 20240821 22:11:33 -Total Time: 02h:29m:20s +Starting Date/Time: 20240826 16:21:26 +Ending Date/Time: 20240826 20:29:01 +Total Time: 04h:07m:50s Compiles Completed: 57/57 -Tests Completed: 242/243 -Failed Tests: -* TEST cpld_control_pdlib_p8_gnu: FAILED: TEST TIMED OUT --- LOG: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_1568042/cpld_control_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: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - fbdf6843d6bde852d97f1547591d90136103f669 CDEPS-interface/CDEPS (cdeps0.4.17-41-gfbdf684) - 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 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) - - -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-20240821 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_2832122 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: cpld_control_pdlib_p8 -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 16:24] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [25:03, 24:00](1446 MB) - -SYNOPSIS: -Starting Date/Time: 20240821 22:32:51 -Ending Date/Time: 20240821 23:16:19 -Total Time: 00h:43m:40s -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 c5a0f691c7..9093919749 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,18 +1,18 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) @@ -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-20240821 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3147877 +COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2935643 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:13] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:41, 08:33](2120 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:11, 16:30] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:11, 14:21](1994 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:30, 14:52](2318 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:30, 07:26](1297 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:11, 15:45](1906 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:11, 15:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:53, 13:58](1980 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 05:44] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [23:32, 21:59](1964 MB) - -PASS -- COMPILE 's2swa_intel' [12:11, 11:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [17:20, 08:54](2179 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [17:37, 08:35](2187 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:32, 04:52](1965 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [17:20, 09:04](2206 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:32, 05:14](1739 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:23, 10:11](2543 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [17:16, 08:38](2172 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [15:30, 07:10](2075 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [17:39, 08:41](2183 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [25:05, 15:43](2980 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2918 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:19, 11:31](3832 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:55, 07:59](3636 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [15:29, 06:29](2146 MB) - -PASS -- COMPILE 's2sw_intel' [11:11, 10:47] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [10:13, 08:13](2019 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:19, 05:21](2089 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:10, 06:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:29, 08:28](2201 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:10, 05:32] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:16, 05:51](2050 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:11, 10:10] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:18, 04:50](2075 MB) - -PASS -- COMPILE 's2s_intel' [11:11, 10:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:59, 08:16](3061 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:59, 03:08](3034 MB) -PASS -- TEST 'cpld_restart_c48_intel' [07:54, 02:18](2489 MB) - -PASS -- COMPILE 's2swa_faster_intel' [13:10, 12:34] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:06, 07:26](2173 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:11, 15:32] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:00, 14:51](2031 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:15, 07:32](1384 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:54, 15:53](1959 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:10, 04:49] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:04, 23:51](2022 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:37] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [10:25, 02:54](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [09:35, 02:31](1607 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:39, 02:36](1624 MB) -PASS -- TEST 'control_latlon_intel' [09:30, 02:30](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:38, 02:32](1609 MB) -PASS -- TEST 'control_c48_intel' [13:36, 06:56](1704 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:30, 05:49](831 MB) -PASS -- TEST 'control_c192_intel' [16:47, 09:08](1758 MB) -PASS -- TEST 'control_c384_intel' [15:37, 09:36](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [12:11, 07:43](1506 MB) -PASS -- TEST 'control_stochy_intel' [04:22, 01:28](670 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:35, 00:53](535 MB) -PASS -- TEST 'control_lndp_intel' [04:22, 01:22](666 MB) -PASS -- TEST 'control_iovr4_intel' [04:28, 02:11](661 MB) -PASS -- TEST 'control_iovr5_intel' [04:28, 02:07](657 MB) -PASS -- TEST 'control_p8_intel' [06:03, 03:16](1903 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:04, 03:25](1907 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:59, 03:14](1896 MB) -PASS -- TEST 'control_restart_p8_intel' [03:48, 01:33](1153 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:50, 03:34](1881 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [08:07, 02:27](1215 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:50, 03:35](1891 MB) -PASS -- TEST 'control_2threads_p8_intel' [08:44, 03:35](1975 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:39, 05:13](1907 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:17, 04:30](1970 MB) -PASS -- TEST 'control_p8_mynn_intel' [08:10, 03:42](1906 MB) -PASS -- TEST 'merra2_thompson_intel' [09:15, 03:51](1900 MB) -PASS -- TEST 'regional_control_intel' [09:37, 05:28](1197 MB) -PASS -- TEST 'regional_restart_intel' [06:34, 03:33](1173 MB) -PASS -- TEST 'regional_decomp_intel' [09:35, 05:34](1179 MB) -PASS -- TEST 'regional_2threads_intel' [04:39, 03:04](1157 MB) -PASS -- TEST 'regional_noquilt_intel' [08:41, 05:30](1515 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:44, 05:18](1198 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:30, 05:30](1200 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 05:49](2066 MB) - -PASS -- COMPILE 'rrfs_intel' [11:11, 09:28] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:58, 07:02](1222 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:54, 03:54](1350 MB) -PASS -- TEST 'rap_decomp_intel' [12:42, 07:00](1154 MB) -PASS -- TEST 'rap_2threads_intel' [11:38, 06:29](1359 MB) -PASS -- TEST 'rap_restart_intel' [07:56, 03:39](1134 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:41, 06:49](1215 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:51, 06:54](1152 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:01, 05:13](1207 MB) -PASS -- TEST 'hrrr_control_intel' [08:37, 03:45](1094 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:35, 03:36](1039 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:47, 03:18](1126 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:21, 02:16](1037 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:00, 07:01](1211 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 08:02](2005 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:22, 08:00](2177 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 08:59] -PASS -- TEST 'control_csawmg_intel' [15:42, 06:22](1050 MB) -PASS -- TEST 'control_ras_intel' [12:22, 02:54](821 MB) - -PASS -- COMPILE 'csawmg_gnu' [07:10, 04:52] -PASS -- TEST 'control_csawmg_gnu' [11:46, 07:59](1068 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:59] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [18:45, 09:54](1673 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:11, 08:37] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:59, 03:14](1907 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 05:28](1192 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 06:01] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:41, 02:15](1641 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [10:38, 02:29](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [10:20, 02:53](853 MB) -PASS -- TEST 'control_lndp_debug_intel' [10:20, 02:31](839 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:32, 04:55](1155 MB) -PASS -- TEST 'control_ras_debug_intel' [09:23, 02:30](849 MB) -PASS -- TEST 'control_diag_debug_intel' [09:39, 02:31](1703 MB) -PASS -- TEST 'control_debug_p8_intel' [10:37, 03:25](1936 MB) -PASS -- TEST 'regional_debug_intel' [21:37, 16:00](1149 MB) -PASS -- TEST 'rap_control_debug_intel' [07:20, 04:24](1240 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:22, 04:24](1231 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:18, 04:22](1244 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:20](1228 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:36](1236 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:30, 04:32](1325 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:24, 04:31](1236 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:20, 04:18](1238 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:19, 04:20](1233 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:20, 04:11](1243 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:22, 04:28](1225 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:18, 04:18](1241 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:19, 07:40](1235 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:19, 04:12](1232 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:21, 05:14](1231 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:19, 04:29](1232 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:23](1231 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:10, 04:01] -PASS -- TEST 'control_csawmg_debug_gnu' [03:36, 02:18](1052 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:10, 03:26] ( 839 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 07:54] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:46, 03:16](1234 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:50, 05:22](1142 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:59, 02:52](1034 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:35, 05:08](1280 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:40, 02:42](1038 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:39, 02:59](981 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:51, 04:05](1116 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:32, 01:42](967 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:11, 08:04] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [02:45, 01:43](1305 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:35, 00:54](1199 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [09:32, 01:08](1152 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 04:01](1090 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 03:38] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:19, 04:21](1104 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:19, 03:55](1107 MB) -PASS -- TEST 'conus13km_debug_intel' [19:35, 12:19](1355 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [19:35, 12:37](990 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:31, 07:25](1252 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:31, 12:24](1418 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 03:27] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [11:19, 04:24](1173 MB) - -PASS -- COMPILE 'hafsw_intel' [13:11, 10:27] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [07:05, 05:36](847 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:28, 05:53](1240 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:21, 07:20](921 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:04, 14:07](956 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:16, 15:08](979 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 06:17](598 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:25, 08:07](603 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [11:43, 03:24](434 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:03, 08:41](547 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:45, 04:19](601 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:45, 04:05](600 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:49, 05:03](654 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:26, 01:24](455 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:27] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:46, 11:30](645 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:11, 10:01] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [22:48, 16:24](758 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [23:01, 15:46](838 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 10:02] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:35, 09:44](817 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 10:34] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:08, 05:51](933 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:02, 06:04](916 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:47, 16:32](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 05:03] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:16, 02:13](1140 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [09:18, 01:26](1099 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:15, 02:09](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:16, 02:10](1012 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:16, 02:13](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:15, 02:15](1135 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:16](1139 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1017 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:02, 04:56](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:59, 04:58](1156 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:12](1158 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:03](2444 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:04](2461 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [07:11, 03:34] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:15, 05:13](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:11, 05:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:15, 02:15](1157 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:06] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:26, 00:58](337 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:20, 00:50](572 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:22, 00:34](563 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 09:36] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:52, 03:38](2020 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:18] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:57, 04:08](2001 MB) - -PASS -- COMPILE 'atml_intel' [11:10, 08:41] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:09, 05:43](1894 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:07, 05:39](1900 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:46, 03:34](1136 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:11, 04:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:59, 05:28](1918 MB) - -PASS -- COMPILE 'atmw_intel' [11:10, 09:18] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:55, 01:47](1950 MB) - -PASS -- COMPILE 'atmaero_intel' [09:11, 08:48] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:50, 05:07](2032 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:48, 04:37](1801 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:42, 04:37](1807 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:10, 03:33] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [19:38, 16:49](4601 MB) - -PASS -- COMPILE 'atm_gnu' [05:11, 04:08] -PASS -- TEST 'control_c48_gnu' [16:43, 09:27](1530 MB) -PASS -- TEST 'control_stochy_gnu' [09:23, 02:24](726 MB) -PASS -- TEST 'control_ras_gnu' [10:22, 03:58](732 MB) -PASS -- TEST 'control_p8_gnu' [11:52, 05:04](1729 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [11:47, 04:45](1725 MB) -PASS -- TEST 'control_flake_gnu' [11:25, 04:35](814 MB) - -PASS -- COMPILE 'rrfs_gnu' [09:11, 04:01] -PASS -- TEST 'rap_control_gnu' [14:36, 07:54](1083 MB) -PASS -- TEST 'rap_decomp_gnu' [14:34, 08:23](1082 MB) -PASS -- TEST 'rap_2threads_gnu' [13:51, 07:15](1121 MB) -PASS -- TEST 'rap_restart_gnu' [05:56, 04:29](884 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [13:53, 08:18](1082 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:35, 08:28](1080 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:57, 06:20](883 MB) -PASS -- TEST 'hrrr_control_gnu' [10:37, 04:19](1069 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [10:38, 04:04](1132 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:48, 03:42](1016 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:42, 04:14](1068 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:25, 02:12](883 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [02:30, 02:07](934 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:58, 07:54](1079 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [10:10, 06:05] -PASS -- TEST 'control_diag_debug_gnu' [07:37, 01:16](1625 MB) -PASS -- TEST 'regional_debug_gnu' [11:36, 07:22](1136 MB) -PASS -- TEST 'rap_control_debug_gnu' [05:21, 02:06](1097 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [05:19, 02:13](1087 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:23, 02:04](1096 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:19, 02:04](1097 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:36, 02:14](1270 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:19, 03:15](1093 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 02:17](1099 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [03:18, 02:05](1092 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:10](728 MB) -PASS -- TEST 'control_stochy_debug_gnu' [02:18, 01:16](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [02:36, 01:35](1700 MB) -PASS -- TEST 'rap_flake_debug_gnu' [02:22, 01:57](1096 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 02:20](1097 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:53, 03:24](1101 MB) - -PASS -- COMPILE 'wam_debug_gnu' [06:11, 03:00] -PASS -- TEST 'control_wam_debug_gnu' [06:53, 05:07](1565 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 04:03] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:38, 07:40](978 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:56, 04:03](952 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:46, 06:47](969 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:41, 03:36](889 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:40, 04:22](949 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:48, 05:59](865 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:25, 02:07](863 MB) -PASS -- TEST 'conus13km_control_gnu' [03:43, 02:50](1268 MB) -PASS -- TEST 'conus13km_2threads_gnu' [02:35, 01:28](1179 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [02:34, 01:41](940 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:53] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:34, 04:40](989 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:08] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:20, 02:08](977 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:25, 01:51](971 MB) -PASS -- TEST 'conus13km_debug_gnu' [06:36, 05:35](1286 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [06:35, 05:52](963 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [04:30, 03:19](1198 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [06:37, 05:32](1353 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:11, 06:42] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:32, 02:06](1005 MB) - -PASS -- COMPILE 's2swa_gnu' [22:11, 16:59] - -PASS -- COMPILE 's2s_gnu' [19:11, 15:24] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [07:20, 05:10](2730 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [06:11, 03:44] - -PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 17:48] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:03, 26:07](3048 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 04:11] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:07, 12:04](2929 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [17:10, 16:10] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [03:17, 02:34](767 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:10, 11:37] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [13:21, 08:30](2112 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:11, 18:32] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [16:36, 13:25](1999 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:32, 14:50](2320 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:20, 07:40](1327 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:24, 15:14](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 17:01] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:57, 13:56](1991 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:10, 05:34] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:29, 22:38](1974 MB) + +PASS -- COMPILE 's2swa_intel' [17:11, 10:28] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:10, 08:46](2178 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:19, 08:53](2177 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:23, 04:52](1978 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:12, 08:42](2201 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:21, 05:27](1737 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [16:12, 10:20](2535 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:09, 08:52](2171 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:15, 07:00](2078 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:23, 08:52](2172 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [21:53, 16:00](2985 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 07:03](2923 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:36, 11:06](3837 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [17:53, 07:19](3647 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [08:19, 05:36](2145 MB) + +PASS -- COMPILE 's2sw_intel' [19:11, 13:03] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:03, 08:18](2026 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:07, 05:31](2076 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:10, 07:01] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [11:32, 08:47](2205 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:10, 06:31] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:09, 06:47](2049 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:11, 11:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:32, 04:35](2079 MB) + +PASS -- COMPILE 's2s_intel' [17:11, 11:11] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:57, 08:09](3064 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [09:53, 04:01](3040 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:40, 01:19](2485 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:37] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [10:19, 07:27](2176 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:11, 15:49] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [15:51, 13:58](2034 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:04, 06:48](1397 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [17:51, 15:26](1959 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 05:10] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:09, 23:52](2013 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:10, 09:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:18, 03:43](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:30, 02:31](1617 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:45, 02:32](1612 MB) +PASS -- TEST 'control_latlon_intel' [04:28, 02:29](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:33, 02:31](1617 MB) +PASS -- TEST 'control_c48_intel' [09:41, 07:03](1712 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:25, 06:02](833 MB) +PASS -- TEST 'control_c192_intel' [12:43, 09:18](1742 MB) +PASS -- TEST 'control_c384_intel' [12:29, 09:13](1990 MB) +PASS -- TEST 'control_c384gdas_intel' [14:13, 09:55](1506 MB) +PASS -- TEST 'control_stochy_intel' [03:24, 01:47](674 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:31, 01:06](548 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:36](670 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:31](662 MB) +PASS -- TEST 'control_iovr5_intel' [04:21, 02:34](668 MB) +PASS -- TEST 'control_p8_intel' [05:12, 02:39](1901 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:12, 02:45](1903 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:09, 02:38](1895 MB) +PASS -- TEST 'control_restart_p8_intel' [06:55, 02:29](1153 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:50, 02:36](1891 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:53, 02:21](1199 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:47, 02:44](1883 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:39, 02:26](1982 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:38, 04:35](1908 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:52, 04:04](1968 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:50, 02:46](1917 MB) +PASS -- TEST 'merra2_thompson_intel' [05:20, 02:57](1903 MB) +PASS -- TEST 'regional_control_intel' [06:31, 04:39](1188 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 02:42](1169 MB) +PASS -- TEST 'regional_decomp_intel' [06:28, 04:55](1184 MB) +PASS -- TEST 'regional_2threads_intel' [08:36, 03:45](1151 MB) +PASS -- TEST 'regional_noquilt_intel' [09:39, 05:08](1521 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [10:30, 05:32](1196 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:22, 05:25](1206 MB) +PASS -- TEST 'regional_wofs_intel' [10:23, 05:47](2077 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:32] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [08:49, 06:50](1198 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:49, 03:48](1357 MB) +PASS -- TEST 'rap_decomp_intel' [13:04, 07:02](1155 MB) +PASS -- TEST 'rap_2threads_intel' [11:53, 06:34](1366 MB) +PASS -- TEST 'rap_restart_intel' [07:59, 03:33](1156 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:52, 06:48](1203 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:07, 07:06](1148 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:04, 05:03](1195 MB) +PASS -- TEST 'hrrr_control_intel' [09:55, 03:30](1081 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [09:55, 03:38](1048 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:59, 03:13](1110 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:25, 01:52](1026 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:01, 06:41](1184 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 07:45](2009 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 07:33](2167 MB) + +PASS -- COMPILE 'csawmg_intel' [09:11, 08:04] +PASS -- TEST 'control_csawmg_intel' [07:36, 05:34](1047 MB) +PASS -- TEST 'control_ras_intel' [04:21, 02:53](817 MB) + +PASS -- COMPILE 'csawmg_gnu' [07:10, 04:23] +PASS -- TEST 'control_csawmg_gnu' [09:42, 07:20](1067 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:21] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:35, 09:57](1666 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:10, 08:11] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:53, 03:11](1903 MB) +PASS -- TEST 'regional_control_faster_intel' [08:34, 05:27](1197 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:10, 06:06] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:33, 02:41](1644 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:31, 02:39](1640 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:02](841 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:50](848 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:24, 05:11](1155 MB) +PASS -- TEST 'control_ras_debug_intel' [06:19, 02:49](858 MB) +PASS -- TEST 'control_diag_debug_intel' [05:42, 02:40](1698 MB) +PASS -- TEST 'control_debug_p8_intel' [06:35, 03:38](1928 MB) +PASS -- TEST 'regional_debug_intel' [20:29, 17:18](1153 MB) +PASS -- TEST 'rap_control_debug_intel' [07:20, 04:50](1234 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:22, 04:39](1230 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [11:17, 04:34](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [12:18, 04:49](1224 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:17, 04:36](1230 MB) +PASS -- TEST 'rap_diag_debug_intel' [11:24, 05:02](1319 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [15:17, 04:36](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [15:17, 04:51](1235 MB) +PASS -- TEST 'rap_lndp_debug_intel' [15:17, 04:50](1239 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [15:17, 04:51](1242 MB) +PASS -- TEST 'rap_noah_debug_intel' [15:18, 04:52](1239 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [15:19, 04:44](1232 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [17:18, 07:28](1234 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [16:18, 04:37](1226 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [16:24, 05:35](1243 MB) +PASS -- TEST 'rap_flake_debug_intel' [14:18, 04:28](1238 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:52, 08:14](1238 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:12, 03:49] +PASS -- TEST 'control_csawmg_debug_gnu' [12:32, 03:00](1053 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:10, 03:48] ( 839 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 08:45] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:48, 03:41](1240 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:45, 05:32](1130 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:35, 02:58](1039 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:33, 05:12](1290 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:39, 02:41](1018 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:39, 03:06](991 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:55, 04:06](1100 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:20, 01:37](963 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:10, 07:56] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:46, 01:53](1286 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:27, 00:44](1200 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:25, 01:02](1144 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:11, 08:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:31, 03:51](1075 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:10, 03:41] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:17, 04:49](1112 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:17, 05:04](1099 MB) +PASS -- TEST 'conus13km_debug_intel' [17:31, 15:12](1332 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:33, 14:56](1000 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:30, 11:41](1246 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:25, 15:17](1417 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 03:43] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 04:31](1161 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 10:09] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:07, 05:34](858 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:20, 05:00](1260 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:13, 06:21](926 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:02, 14:07](974 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:08, 15:31](1002 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:03, 05:34](591 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:16, 07:10](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:42, 02:35](433 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:54, 07:33](550 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:48, 03:52](603 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [11:50, 03:42](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [11:50, 04:56](647 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:25, 01:17](451 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:11, 04:02] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:41, 11:58](673 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [12:12, 09:45] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [23:12, 16:34](846 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [21:55, 16:05](837 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [12:11, 09:45] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:22, 09:24](820 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 09:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [15:04, 07:05](921 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:04, 07:06](895 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:45, 16:42](1345 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:11, 05:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:17, 02:11](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:22](1100 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [09:17, 02:06](1022 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:16, 02:08](1014 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:17, 02:11](1013 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:14, 02:10](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:15, 02:11](1147 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:15, 02:08](1015 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:54, 04:56](1161 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:47, 04:54](1160 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:13, 02:15](1172 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 03:02](2453 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:11](2456 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:10, 02:49] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:15](1076 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [07:11, 05:52] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:13](1165 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:01] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:29, 01:04](334 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:55](573 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:23, 00:35](561 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:11, 09:30] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:01, 04:35](2012 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [10:10, 08:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:03, 04:50](1986 MB) + +PASS -- COMPILE 'atml_intel' [10:11, 08:48] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:11, 06:51](1902 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:07, 06:03](1908 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:38, 04:19](1154 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:52] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:58, 06:10](1916 MB) + +PASS -- COMPILE 'atmw_intel' [13:11, 08:46] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:51, 02:42](1938 MB) + +PASS -- COMPILE 'atmaero_intel' [12:11, 08:13] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:52, 04:57](2011 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:50, 04:31](1807 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:39, 04:26](1819 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:11, 03:47] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [19:47, 16:41](4634 MB) + +PASS -- COMPILE 'atm_gnu' [08:11, 04:22] +PASS -- TEST 'control_c48_gnu' [12:40, 09:26](1548 MB) +PASS -- TEST 'control_stochy_gnu' [05:24, 02:27](726 MB) +PASS -- TEST 'control_ras_gnu' [06:17, 04:07](731 MB) +PASS -- TEST 'control_p8_gnu' [06:47, 04:11](1704 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:39, 03:53](1726 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 04:46](806 MB) + +PASS -- COMPILE 'rrfs_gnu' [07:10, 04:08] +PASS -- TEST 'rap_control_gnu' [10:41, 08:38](1082 MB) +PASS -- TEST 'rap_decomp_gnu' [10:41, 08:40](1081 MB) +PASS -- TEST 'rap_2threads_gnu' [10:34, 07:58](1110 MB) +PASS -- TEST 'rap_restart_gnu' [06:59, 04:12](884 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [10:46, 08:10](1083 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:33, 08:31](1080 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:52, 06:08](884 MB) +PASS -- TEST 'hrrr_control_gnu' [06:54, 04:22](1070 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [06:51, 04:15](1138 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:49, 03:54](1022 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [06:31, 04:29](1066 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:45, 02:12](885 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:46, 02:09](934 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [09:53, 08:01](1081 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:10, 06:11] +PASS -- TEST 'control_diag_debug_gnu' [03:30, 01:21](1624 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 06:44](1106 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:28, 02:16](1097 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:16, 02:05](1089 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:11](1093 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:16, 02:00](1100 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:54](1266 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:25](1093 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:23](1094 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:18, 02:14](1092 MB) +PASS -- TEST 'control_ras_debug_gnu' [04:17, 01:38](726 MB) +PASS -- TEST 'control_stochy_debug_gnu' [04:16, 01:46](722 MB) +PASS -- TEST 'control_debug_p8_gnu' [05:29, 03:01](1699 MB) +PASS -- TEST 'rap_flake_debug_gnu' [06:18, 02:11](1097 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [05:18, 02:15](1097 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:48, 03:32](1101 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 02:25] +PASS -- TEST 'control_wam_debug_gnu' [07:51, 05:24](1559 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [08:11, 04:48] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [10:44, 08:14](965 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:36, 04:05](951 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [08:44, 06:57](976 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:54, 03:45](886 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:35, 04:11](953 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:44, 06:13](863 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:21, 02:15](861 MB) +PASS -- TEST 'conus13km_control_gnu' [05:36, 02:47](1270 MB) +PASS -- TEST 'conus13km_2threads_gnu' [02:30, 01:09](1182 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:29, 01:28](937 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [14:10, 11:06] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:46, 04:39](991 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 05:53] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:09](978 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:18, 01:58](970 MB) +PASS -- TEST 'conus13km_debug_gnu' [07:34, 05:42](1291 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [07:30, 05:59](978 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:28, 03:28](1193 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:28, 05:38](1352 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:10, 06:29] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:19, 02:09](1004 MB) + +PASS -- COMPILE 's2swa_gnu' [23:10, 17:09] + +PASS -- COMPILE 's2s_gnu' [22:10, 16:43] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [08:03, 05:08](3072 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [10:10, 04:46] + +PASS -- COMPILE 's2sw_pdlib_gnu' [21:10, 17:23] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [27:58, 25:52](2912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [05:10, 03:20] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:46, 11:58](2946 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [22:10, 15:38] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:27](772 MB) SYNOPSIS: -Starting Date/Time: 20240822 08:11:58 -Ending Date/Time: 20240822 10:07:25 -Total Time: 01h:56m:17s +Starting Date/Time: 20240826 11:16:18 +Ending Date/Time: 20240826 13:18:16 +Total Time: 02h:02m:53s Compiles Completed: 57/57 Tests Completed: 244/244 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 441b624429..2559d4ea50 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,18 +1,18 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 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: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_271319 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2302393 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [43:14, 42:23] ( 1 warnings 1378 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:10, 06:56](2012 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [49:14, 48:31] ( 1 warnings 1425 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:05, 20:32](1886 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:26, 21:50](2016 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 10:01](1124 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [25:05, 23:49](1861 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [49:14, 48:57] ( 1 warnings 1422 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [20:49, 20:09](1885 MB) - -PASS -- COMPILE 's2swa_intel' [43:14, 42:22] ( 1379 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:07, 07:30](2055 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:21, 07:25](2045 MB) -PASS -- TEST 'cpld_restart_p8_intel' [06:22, 04:18](1719 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:07, 07:32](2079 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [06:21, 04:25](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [09:03, 07:09](2327 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [09:03, 07:27](2054 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [08:14, 06:20](2005 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [09:20, 07:34](2068 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:14, 07:05](2035 MB) - -PASS -- COMPILE 's2sw_intel' [41:14, 40:26] ( 1277 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:26, 05:48](1912 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:43, 05:44](1972 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:30] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [12:17, 10:29](2092 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:11, 05:49] ( 1450 warnings 1228 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:59, 07:18](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [36:13, 35:43] ( 1008 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:20, 05:28](1979 MB) - -PASS -- COMPILE 's2s_intel' [37:13, 36:13] ( 1013 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:51, 11:57](3021 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:51, 03:26](3015 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:04, 02:00](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:25, 33:28] ( 1607 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:45, 06:53](2050 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:15, 48:44] ( 1337 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:19, 18:50](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:20, 10:00](1136 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:19, 24:04](1889 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:54] ( 1560 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [35:11, 33:02](1935 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [38:14, 37:18] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [05:31, 04:25](653 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [10:05, 03:46](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:07, 03:52](1556 MB) -PASS -- TEST 'control_latlon_intel' [13:03, 03:48](1545 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [10:10, 03:55](1544 MB) -PASS -- TEST 'control_c48_intel' [19:13, 11:41](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [11:38, 10:13](831 MB) -PASS -- TEST 'control_c192_intel' [16:19, 14:20](1680 MB) -PASS -- TEST 'control_c384_intel' [20:13, 17:57](1794 MB) -PASS -- TEST 'control_c384gdas_intel' [17:08, 13:21](1008 MB) -PASS -- TEST 'control_stochy_intel' [03:31, 02:11](604 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:28, 01:17](435 MB) -PASS -- TEST 'control_lndp_intel' [03:31, 02:06](604 MB) -PASS -- TEST 'control_iovr4_intel' [04:33, 03:20](605 MB) -PASS -- TEST 'control_iovr5_intel' [04:32, 03:16](598 MB) -PASS -- TEST 'control_p8_intel' [06:28, 04:06](1842 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [13:27, 04:01](1842 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [08:16, 03:50](1845 MB) -PASS -- TEST 'control_restart_p8_intel' [05:54, 02:14](1052 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:54](1828 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:11](1071 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:18, 04:01](1834 MB) -PASS -- TEST 'control_2threads_p8_intel' [09:17, 03:41](1925 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:09, 06:59](1839 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [11:19, 05:11](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:23, 03:58](1845 MB) -PASS -- TEST 'merra2_thompson_intel' [10:19, 04:19](1842 MB) -PASS -- TEST 'regional_control_intel' [08:01, 07:07](1007 MB) -PASS -- TEST 'regional_restart_intel' [05:34, 03:55](1005 MB) -PASS -- TEST 'regional_decomp_intel' [09:01, 07:31](998 MB) -PASS -- TEST 'regional_2threads_intel' [06:01, 04:26](999 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:44, 07:04](1018 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [14:35, 07:06](990 MB) - -PASS -- COMPILE 'rrfs_intel' [47:16, 36:44] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [11:39, 10:14](991 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:10, 05:32](1171 MB) -PASS -- TEST 'rap_decomp_intel' [11:36, 10:42](991 MB) -PASS -- TEST 'rap_2threads_intel' [10:48, 09:44](1079 MB) -PASS -- TEST 'rap_restart_intel' [06:46, 05:11](994 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:41, 10:11](992 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:41, 10:47](982 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:49, 07:32](997 MB) -PASS -- TEST 'hrrr_control_intel' [06:44, 05:16](988 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:44, 05:26](980 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:47, 04:49](1059 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:51](920 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:51, 10:09](988 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:29, 12:30](1950 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [13:28, 12:12](1949 MB) - -PASS -- COMPILE 'csawmg_intel' [39:19, 34:31] ( 1089 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:45, 08:06](956 MB) -PASS -- TEST 'control_ras_intel' [05:29, 04:22](666 MB) - -PASS -- COMPILE 'wam_intel' [35:17, 34:21] ( 992 remarks ) -PASS -- TEST 'control_wam_intel' [15:55, 14:18](1626 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [50:17, 36:02] ( 1292 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:56, 03:38](1841 MB) -PASS -- TEST 'regional_control_faster_intel' [08:40, 06:35](999 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 07:22] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:45, 03:24](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 03:20](1581 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:51](781 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 03:27](781 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:43, 05:33](1092 MB) -PASS -- TEST 'control_ras_debug_intel' [04:26, 03:31](787 MB) -PASS -- TEST 'control_diag_debug_intel' [04:51, 03:28](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 03:50](1872 MB) -PASS -- TEST 'regional_debug_intel' [23:51, 22:05](1045 MB) -PASS -- TEST 'rap_control_debug_intel' [07:27, 06:12](1165 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:26, 06:06](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:26, 06:11](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:26, 06:14](1161 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 06:12](1162 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:39, 06:31](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 06:19](1166 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:24, 06:17](1165 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:27, 06:11](1168 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 06:06](1162 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:58](1165 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:26, 06:06](1163 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:25, 10:01](1168 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 06:01](1165 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:27, 07:18](1169 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:26, 06:06](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:48, 10:39](1168 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:11, 05:12] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:51, 16:42](1654 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [36:16, 30:38] ( 3 warnings 1024 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [26:09, 05:05](1067 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:47, 08:15](905 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [29:48, 04:25](879 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [30:50, 07:54](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [29:48, 04:04](906 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [30:44, 04:48](865 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [13:45, 06:23](900 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [12:34, 02:25](854 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [04:19, 31:43] ( 3 warnings 1197 remarks ) -PASS -- TEST 'conus13km_control_intel' [11:58, 02:51](1104 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:15](1038 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:43, 01:33](1022 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [03:18, 31:07] ( 3 warnings 1044 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:51, 05:32](909 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [26:15, 05:12] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [40:30, 06:05](1050 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [40:29, 05:57](1043 MB) -PASS -- TEST 'conus13km_debug_intel' [55:02, 18:49](1157 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [55:02, 18:57](868 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [35:52, 10:50](1100 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [54:57, 18:46](1227 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [21:14, 05:06] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [40:29, 06:13](1080 MB) - -PASS -- COMPILE 'hafsw_intel' [02:17, 39:01] ( 1 warnings 1416 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:24, 06:50](702 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:38, 06:16](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:40, 09:03](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:28, 16:06](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [20:43, 18:06](801 MB) -PASS -- TEST 'gnv1_nested_intel' [08:43, 06:30](1680 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:19, 35:26] ( 1263 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:24, 08:29](756 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:21, 08:30](739 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [44:16, 08:22] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 03:36](1084 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:23, 02:12](1028 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:24, 03:30](935 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 03:34](929 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:25, 03:35](929 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:24, 03:36](1064 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 03:39](1076 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 03:30](934 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:19, 07:43](894 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:17, 07:43](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 03:37](1072 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:03](2363 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 05:09](2420 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [12:13, 03:30] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:24, 08:02](1004 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:12, 08:24] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:19, 03:36](1073 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:11, 01:48] ( 60 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:37, 01:21](241 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:08](263 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:28, 00:42](259 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [36:13, 35:40] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:06, 04:53](1904 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [35:13, 35:06] ( 1013 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:35, 04:36](1902 MB) - -PASS -- COMPILE 'atml_intel' [38:14, 37:32] ( 8 warnings 1165 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:00, 06:22](1862 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:03, 06:12](1864 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:53, 03:15](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:12, 06:24] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:11, 07:24](1896 MB) - -PASS -- COMPILE 'atmw_intel' [36:14, 35:47] ( 1258 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:57, 02:20](1859 MB) - -PASS -- COMPILE 'atmaero_intel' [36:14, 35:17] ( 1096 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:01, 05:17](1942 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:00, 06:17](1720 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:50, 06:22](1729 MB) +PASS -- COMPILE 's2swa_32bit_intel' [54:18, 41:37] ( 1 warnings 1380 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:21, 06:47](2020 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [03:20, 50:38] ( 1 warnings 1427 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [55:14, 20:37](1903 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [25:44, 22:03](2014 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:20, 10:03](1130 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [56:18, 23:44](1849 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [00:20, 48:10] ( 1 warnings 1424 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [55:59, 20:23](1888 MB) + +PASS -- COMPILE 's2swa_intel' [54:18, 42:43] ( 1381 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:10, 07:13](2060 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:42, 07:25](2062 MB) +PASS -- TEST 'cpld_restart_p8_intel' [38:23, 04:16](1721 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:13, 07:25](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [39:24, 04:21](1741 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [10:05, 07:00](2315 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:06, 07:21](2048 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [09:21, 06:13](2009 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:32, 07:17](2059 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [48:30, 07:06](2035 MB) + +PASS -- COMPILE 's2sw_intel' [52:18, 39:49] ( 1279 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:20, 05:48](1910 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:37, 05:44](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [49:17, 06:28] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:25, 10:31](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [47:18, 06:09] ( 1450 warnings 1228 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:08, 07:18](1940 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [17:22, 36:15] ( 1010 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:30, 05:35](1979 MB) + +PASS -- COMPILE 's2s_intel' [12:20, 36:52] ( 1015 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [13:54, 11:58](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:55, 03:30](3017 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:55](2462 MB) + +PASS -- COMPILE 's2swa_faster_intel' [05:29, 33:05] ( 1609 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [09:35, 06:59](2058 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [50:17, 47:53] ( 1339 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:21, 20:48](1915 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:25, 10:12](1125 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:18, 23:52](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:13, 06:05] ( 1560 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [36:18, 33:03](1938 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:36] ( 1 warnings 1126 remarks ) +PASS -- TEST 'control_flake_intel' [06:32, 04:31](647 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:07, 03:53](1547 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:13, 04:10](1557 MB) +PASS -- TEST 'control_latlon_intel' [06:03, 03:53](1544 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:13, 03:53](1554 MB) +PASS -- TEST 'control_c48_intel' [17:13, 11:52](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [11:39, 09:08](832 MB) +PASS -- TEST 'control_c192_intel' [17:25, 14:09](1669 MB) +PASS -- TEST 'control_c384_intel' [24:29, 17:57](1800 MB) +PASS -- TEST 'control_c384gdas_intel' [20:13, 13:16](1009 MB) +PASS -- TEST 'control_stochy_intel' [04:31, 02:11](606 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:26, 01:16](436 MB) +PASS -- TEST 'control_lndp_intel' [04:31, 02:06](606 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 03:16](602 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 03:19](602 MB) +PASS -- TEST 'control_p8_intel' [07:29, 04:09](1844 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [11:41, 04:02](1844 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:00](1835 MB) +PASS -- TEST 'control_restart_p8_intel' [04:54, 02:21](1053 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:21, 03:49](1831 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:54, 02:15](1069 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:19, 04:06](1826 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:23, 03:54](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:11, 07:10](1843 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:25, 05:16](1902 MB) +PASS -- TEST 'control_p8_mynn_intel' [08:26, 03:58](1855 MB) +PASS -- TEST 'merra2_thompson_intel' [07:20, 04:31](1844 MB) +PASS -- TEST 'regional_control_intel' [15:01, 07:09](1010 MB) +PASS -- TEST 'regional_restart_intel' [05:37, 03:47](1004 MB) +PASS -- TEST 'regional_decomp_intel' [16:01, 07:36](1004 MB) +PASS -- TEST 'regional_2threads_intel' [07:02, 04:30](999 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [15:08, 07:02](1010 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [15:00, 07:09](1005 MB) + +PASS -- COMPILE 'rrfs_intel' [39:17, 37:24] ( 3 warnings 1102 remarks ) +PASS -- TEST 'rap_control_intel' [12:50, 10:13](990 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:10, 05:45](1173 MB) +PASS -- TEST 'rap_decomp_intel' [13:42, 10:51](988 MB) +PASS -- TEST 'rap_2threads_intel' [12:49, 09:50](1081 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 05:16](990 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:50, 10:13](991 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [13:42, 10:45](985 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:46, 07:36](999 MB) +PASS -- TEST 'hrrr_control_intel' [07:48, 05:22](988 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:48, 05:27](977 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:48, 04:53](1056 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:41](921 MB) +PASS -- TEST 'rrfs_v1beta_intel' [13:04, 10:09](983 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:31, 12:35](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:32, 12:12](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [36:13, 34:13] ( 1091 remarks ) +PASS -- TEST 'control_csawmg_intel' [10:40, 08:13](964 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:28](672 MB) + +PASS -- COMPILE 'wam_intel' [36:14, 34:32] ( 994 remarks ) +PASS -- TEST 'control_wam_intel' [16:49, 14:22](1621 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [40:14, 36:26] ( 1294 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:54, 03:38](1829 MB) +PASS -- TEST 'regional_control_faster_intel' [08:35, 06:33](1002 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:53, 03:22](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:54, 03:14](1576 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:29, 03:55](782 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:29, 03:33](782 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:46, 05:31](1095 MB) +PASS -- TEST 'control_ras_debug_intel' [05:29, 03:34](788 MB) +PASS -- TEST 'control_diag_debug_intel' [07:53, 03:24](1631 MB) +PASS -- TEST 'control_debug_p8_intel' [07:52, 03:46](1869 MB) +PASS -- TEST 'regional_debug_intel' [25:50, 21:56](1039 MB) +PASS -- TEST 'rap_control_debug_intel' [08:33, 06:19](1170 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:32, 06:11](1160 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:32, 06:12](1173 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:32, 06:18](1172 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:33, 06:18](1168 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:35](1258 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:33, 06:25](1167 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:30, 06:27](1170 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:27, 06:10](1176 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:27, 06:14](1166 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:25, 06:03](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:27, 06:14](1166 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:24, 10:01](1164 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:24, 06:04](1166 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [10:25, 07:21](1168 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:25, 06:08](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 10:44](1176 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:12] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:53, 16:38](1648 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:31] ( 3 warnings 1026 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:08, 05:24](1045 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 08:20](907 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:36, 04:21](876 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:48, 07:52](949 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:44, 04:00](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:36, 04:32](864 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:41, 06:14](903 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:22](848 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:13, 31:54] ( 3 warnings 1199 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:49, 02:48](1105 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:40, 01:23](1046 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:51](1018 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:12, 31:03] ( 3 warnings 1046 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:57, 05:36](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:12] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:43, 05:59](1045 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:26, 05:53](1047 MB) +PASS -- TEST 'conus13km_debug_intel' [21:57, 19:11](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:58, 18:51](860 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:48](1105 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:53, 18:48](1226 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:10, 04:56] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:25, 06:10](1083 MB) + +PASS -- COMPILE 'hafsw_intel' [40:14, 39:09] ( 1 warnings 1418 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:17, 06:59](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:30, 06:37](1060 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:36, 09:06](760 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [21:35, 16:12](788 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:40, 18:38](804 MB) +PASS -- TEST 'gnv1_nested_intel' [34:57, 06:21](1678 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:14, 35:33] ( 1265 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:34, 08:37](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:34, 08:43](737 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [09:11, 08:05] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:33](1072 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:24, 02:11](1037 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:23, 03:30](935 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](934 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:24, 03:34](934 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:33](1055 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:23, 03:35](1075 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:27](931 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:18, 07:42](900 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:44, 07:38](851 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:35](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 05:01](2362 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:24, 05:06](2425 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:22] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:22, 08:07](1023 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:18] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:34](1076 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 60 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:35, 01:23](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:30, 01:05](261 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:42](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [37:14, 35:39] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:58, 04:49](1906 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:17] ( 1015 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [12:14, 04:38](1908 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:31] ( 8 warnings 1167 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:24, 06:00](1864 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:25, 06:01](1834 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:44, 03:15](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:24] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [30:18, 07:26](1894 MB) + +PASS -- COMPILE 'atmw_intel' [37:13, 36:04] ( 1260 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:21](1865 MB) + +PASS -- COMPILE 'atmaero_intel' [38:14, 34:56] ( 1098 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:00, 05:19](1930 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:00, 06:18](1719 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:24](1739 MB) SYNOPSIS: -Starting Date/Time: 20240822 14:44:21 -Ending Date/Time: 20240822 19:32:08 -Total Time: 04h:48m:27s +Starting Date/Time: 20240826 15:55:56 +Ending Date/Time: 20240826 20:48:51 +Total Time: 04h:53m:24s Compiles Completed: 36/36 Tests Completed: 164/164 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index ff4afde445..cb3bd91174 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,18 +1,18 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -3df9dd2e0931e3fda968f8f9949f530a1b7983e0 +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 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: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20240821 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_828849 +COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_2331418 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:52] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:43, 14:25](2074 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 20:10] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [19:47, 18:07](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:10, 19:07](2126 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:05, 09:03](1219 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:44, 20:14](1870 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [21:11, 20:23] ( 1 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:43, 17:43](1948 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 09:36] ( 1525 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:36, 27:26](1925 MB) - -PASS -- COMPILE 's2swa_intel' [17:11, 16:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [16:31, 14:23](2135 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:43, 14:24](2137 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:50, 07:52](1821 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [16:31, 14:30](2167 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:50, 07:59](1700 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:30, 13:28](2428 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [16:32, 14:44](2135 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 12:21](2039 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:42, 14:24](2134 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [19:29, 16:17](2715 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:09, 08:29](2712 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [18:21, 11:39](3690 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:11, 07:20](3494 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 05:56](2113 MB) - -PASS -- COMPILE 's2sw_intel' [16:11, 16:08] ( 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:06, 13:40](1978 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:14, 04:49](2051 MB) - -PASS -- COMPILE 's2swa_debug_intel' [09:11, 08:23] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [10:22, 08:36](2158 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:11, 09:06] ( 1450 warnings 1230 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:07, 06:16](2005 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 15:35] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:12, 04:46](2038 MB) - -PASS -- COMPILE 's2s_intel' [15:11, 14:24] ( 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 09:59](3059 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:54, 03:28](3036 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:59, 02:05](2483 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:11, 17:23] ( 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [16:24, 15:00](2132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:24] ( 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:23, 18:12](1989 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:34, 09:26](1237 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:20, 20:27](1913 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 07:53] ( 1560 warnings 2000 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:11, 29:30](1971 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 13:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:25, 03:41](685 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:50, 03:10](1585 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:54, 03:16](1584 MB) -PASS -- TEST 'control_latlon_intel' [04:45, 03:13](1586 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:55, 03:14](1582 MB) -PASS -- TEST 'control_c48_intel' [10:53, 09:28](1711 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:33, 08:04](844 MB) -PASS -- TEST 'control_c192_intel' [12:57, 11:40](1717 MB) -PASS -- TEST 'control_c384_intel' [14:56, 12:49](1956 MB) -PASS -- TEST 'control_c384gdas_intel' [12:48, 09:44](1326 MB) -PASS -- TEST 'control_stochy_intel' [02:23, 01:49](640 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:39, 01:03](476 MB) -PASS -- TEST 'control_lndp_intel' [02:23, 01:43](642 MB) -PASS -- TEST 'control_iovr4_intel' [03:26, 02:43](637 MB) -PASS -- TEST 'control_iovr5_intel' [03:28, 02:42](643 MB) -PASS -- TEST 'control_p8_intel' [05:11, 03:34](1874 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:17, 03:31](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:24, 03:20](1875 MB) -PASS -- TEST 'control_restart_p8_intel' [03:16, 02:05](1088 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:15, 03:24](1878 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 02:01](1137 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:10, 03:29](1860 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:07, 03:41](1960 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:43, 06:03](1869 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:35, 04:50](1937 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:21, 03:27](1888 MB) -PASS -- TEST 'merra2_thompson_intel' [05:35, 03:46](1879 MB) -PASS -- TEST 'regional_control_intel' [07:38, 06:29](1084 MB) -PASS -- TEST 'regional_restart_intel' [04:36, 03:42](1077 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 06:47](1071 MB) -PASS -- TEST 'regional_2threads_intel' [05:40, 04:38](1067 MB) -PASS -- TEST 'regional_noquilt_intel' [07:42, 06:26](1383 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:45, 06:35](1078 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:38, 06:29](1081 MB) -PASS -- TEST 'regional_wofs_intel' [08:36, 07:51](1901 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 13:00] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:26, 08:25](1058 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [06:58, 05:10](1257 MB) -PASS -- TEST 'rap_decomp_intel' [10:10, 08:39](1024 MB) -PASS -- TEST 'rap_2threads_intel' [09:56, 08:30](1150 MB) -PASS -- TEST 'rap_restart_intel' [06:39, 04:23](1032 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:09, 08:19](1054 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 08:41](1013 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:34, 06:14](1076 MB) -PASS -- TEST 'hrrr_control_intel' [06:00, 04:19](1024 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:56, 04:25](1016 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:06, 04:09](1084 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:46, 02:20](947 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:21, 08:15](1051 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:58](1983 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:29, 09:45](2024 MB) - -PASS -- COMPILE 'csawmg_intel' [13:11, 12:13] -PASS -- TEST 'control_csawmg_intel' [07:31, 06:41](1018 MB) -PASS -- TEST 'control_ras_intel' [04:25, 03:28](720 MB) - -PASS -- COMPILE 'wam_intel' [13:10, 12:26] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:45, 12:39](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:10, 12:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:25, 03:19](1881 MB) -PASS -- TEST 'regional_control_faster_intel' [07:37, 06:11](1071 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:10, 09:41] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 02:43](1618 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:41, 02:44](1620 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:11](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:19, 02:45](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:45, 04:20](1127 MB) -PASS -- TEST 'control_ras_debug_intel' [03:22, 02:45](826 MB) -PASS -- TEST 'control_diag_debug_intel' [03:50, 02:49](1677 MB) -PASS -- TEST 'control_debug_p8_intel' [04:50, 03:12](1922 MB) -PASS -- TEST 'regional_debug_intel' [18:42, 17:48](1091 MB) -PASS -- TEST 'rap_control_debug_intel' [05:23, 04:56](1202 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:28, 04:47](1207 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:22, 04:58](1207 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:24, 05:04](1210 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:25, 04:58](1205 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:16](1292 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:21, 05:00](1204 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:19, 05:05](1213 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:23, 04:57](1210 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:21, 05:02](1206 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:48](1203 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:25, 05:01](1212 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 08:03](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:21, 04:51](1198 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:24, 06:10](1206 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:21, 04:55](1208 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:21](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:10, 06:42] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:53, 13:25](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:11, 12:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:59, 04:56](1127 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:19, 07:08](1002 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:41, 03:46](928 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:53, 07:18](1064 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:09, 03:42](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:07, 04:01](896 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:24, 05:23](980 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:49, 02:02](880 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:21] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:50, 02:44](1164 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:43, 01:16](1109 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:50, 01:31](1060 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:11, 12:29] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:47, 04:35](973 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:10, 07:04] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:25, 04:52](1081 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:23, 04:51](1086 MB) -PASS -- TEST 'conus13km_debug_intel' [15:53, 14:29](1226 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:49, 14:52](940 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:44, 08:35](1169 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 14:44](1294 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:10, 06:52] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:23, 04:57](1139 MB) - -PASS -- COMPILE 'hafsw_intel' [15:11, 14:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:21, 06:12](734 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 06:42](1114 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:31, 07:44](816 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [26:15, 24:41](850 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [30:22, 29:02](873 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:07, 07:06](501 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:40, 08:37](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:01, 03:27](371 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:34, 09:35](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:05, 04:44](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 04:31](526 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:09, 05:43](576 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:31, 01:34](402 MB) -PASS -- TEST 'gnv1_nested_intel' [07:17, 04:20](1724 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:10, 06:47] ( 1467 warnings 1502 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:10, 13:52](589 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [15:11, 14:13] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:58, 13:01](670 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [14:26, 12:57](725 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:11, 14:09] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:26, 08:41](716 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:11, 13:56] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:17, 07:35](814 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:12, 07:35](800 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:56, 16:26](1198 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [08:11, 08:00] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 02:59](1156 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:19, 01:56](1110 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:20, 02:53](1022 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 02:58](1023 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:17, 02:55](1016 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:19, 03:03](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:21, 03:02](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:17, 02:52](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:14, 06:36](1023 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:06, 06:28](1010 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 02:59](1149 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 04:21](2452 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:19, 04:24](2452 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:37] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:21, 06:30](1081 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 08:30] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 03:01](1160 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 01:25] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:30, 01:01](250 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:25, 00:57](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:29, 00:40](324 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:10, 13:44] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:12, 04:11](1979 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [13:10, 12:53] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:11, 03:59](1951 MB) - -PASS -- COMPILE 'atml_intel' [14:11, 13:46] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:38, 04:51](1864 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [06:27, 05:01](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:12, 02:54](1069 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 07:38] ( 882 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:35, 06:04](1886 MB) - -PASS -- COMPILE 'atmw_intel' [14:11, 13:15] ( 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:23, 02:10](1904 MB) - -PASS -- COMPILE 'atmaero_intel' [14:11, 13:21] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:20, 04:34](1986 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:22, 05:22](1766 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:05, 05:21](1785 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:10, 06:21] ( 884 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:59, 20:37](4559 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:12, 18:54] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:07, 14:26](2077 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [28:39, 18:20](1961 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:19, 19:11](2128 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:17, 09:15](1185 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:39, 20:26](1868 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:12, 22:53] ( 1 warnings 10 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [26:01, 17:45](1939 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:11, 09:56] ( 1525 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [35:47, 27:39](1930 MB) + +PASS -- COMPILE 's2swa_intel' [20:12, 18:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:48, 14:49](2128 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [23:03, 14:37](2114 MB) +PASS -- TEST 'cpld_restart_p8_intel' [11:01, 08:03](1819 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:47, 14:41](2139 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:59, 08:08](1705 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [21:37, 13:44](2436 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [22:48, 14:42](2123 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:44, 12:34](2037 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [23:48, 15:08](2128 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [26:47, 17:23](2717 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:23, 09:02](2726 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [25:32, 12:54](3726 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:06, 07:23](3496 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [14:32, 06:02](2111 MB) + +PASS -- COMPILE 's2sw_intel' [18:11, 16:27] ( 10 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [22:28, 13:48](1977 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:43, 05:19](2048 MB) + +PASS -- COMPILE 's2swa_debug_intel' [11:11, 09:30] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:20, 08:59](2160 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:11, 08:41] ( 1450 warnings 1230 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:12, 06:22](1991 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:40] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [12:35, 05:01](2028 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 15:05] ( 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [17:13, 10:19](3058 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [10:12, 03:27](3033 MB) +PASS -- TEST 'cpld_restart_c48_intel' [10:09, 02:33](2495 MB) + +PASS -- COMPILE 's2swa_faster_intel' [22:11, 20:29] ( 10 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:30, 15:00](2134 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [27:12, 20:54] ( 10 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [21:21, 18:40](1986 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:30, 09:20](1236 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:12, 20:55](1914 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:11, 09:56] ( 1560 warnings 2000 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:12, 29:57](1970 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [21:11, 14:57] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:34, 03:46](691 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:06, 03:17](1590 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:11, 03:15](1597 MB) +PASS -- TEST 'control_latlon_intel' [05:47, 03:11](1589 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:52, 03:18](1588 MB) +PASS -- TEST 'control_c48_intel' [11:51, 09:31](1709 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:38, 08:12](844 MB) +PASS -- TEST 'control_c192_intel' [13:58, 11:50](1729 MB) +PASS -- TEST 'control_c384_intel' [16:35, 13:10](1980 MB) +PASS -- TEST 'control_c384gdas_intel' [15:12, 10:00](1330 MB) +PASS -- TEST 'control_stochy_intel' [03:27, 01:52](646 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:40, 01:06](484 MB) +PASS -- TEST 'control_lndp_intel' [04:28, 01:45](650 MB) +PASS -- TEST 'control_iovr4_intel' [05:32, 02:47](643 MB) +PASS -- TEST 'control_iovr5_intel' [04:31, 02:42](645 MB) +PASS -- TEST 'control_p8_intel' [06:25, 03:31](1876 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:20, 03:39](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:35, 03:34](1886 MB) +PASS -- TEST 'control_restart_p8_intel' [04:13, 02:07](1096 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:11, 03:24](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:35, 02:12](1122 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:08, 03:29](1870 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:06, 03:40](1954 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:03, 06:14](1884 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:36, 04:56](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:31, 03:40](1882 MB) +PASS -- TEST 'merra2_thompson_intel' [06:36, 03:48](1891 MB) +PASS -- TEST 'regional_control_intel' [08:37, 06:35](1084 MB) +PASS -- TEST 'regional_restart_intel' [05:48, 03:35](1077 MB) +PASS -- TEST 'regional_decomp_intel' [08:37, 06:52](1081 MB) +PASS -- TEST 'regional_2threads_intel' [06:35, 04:44](1066 MB) +PASS -- TEST 'regional_noquilt_intel' [08:37, 06:28](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:40, 06:57](1079 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:32, 06:30](1088 MB) +PASS -- TEST 'regional_wofs_intel' [09:36, 07:53](1900 MB) + +PASS -- COMPILE 'rrfs_intel' [21:11, 14:45] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [11:31, 08:28](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:13](1251 MB) +PASS -- TEST 'rap_decomp_intel' [12:08, 08:43](1021 MB) +PASS -- TEST 'rap_2threads_intel' [12:08, 08:34](1153 MB) +PASS -- TEST 'rap_restart_intel' [07:40, 04:22](1035 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:30, 08:25](1053 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:31, 08:40](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:33, 06:17](1072 MB) +PASS -- TEST 'hrrr_control_intel' [08:35, 04:24](1028 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:27, 04:24](1020 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:08, 04:11](1087 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:37, 02:20](939 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:24, 08:27](1049 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 10:00](1982 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:24, 10:15](2025 MB) + +PASS -- COMPILE 'csawmg_intel' [18:11, 14:01] +PASS -- TEST 'control_csawmg_intel' [08:41, 06:40](1015 MB) +PASS -- TEST 'control_ras_intel' [05:22, 03:33](712 MB) + +PASS -- COMPILE 'wam_intel' [15:11, 13:04] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:51, 12:52](1656 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 13:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:41, 03:35](1873 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:26](1082 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 12:36] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:49, 02:58](1614 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:47](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:22](819 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:54](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:44, 04:34](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [04:26, 03:02](832 MB) +PASS -- TEST 'control_diag_debug_intel' [04:52, 02:54](1681 MB) +PASS -- TEST 'control_debug_p8_intel' [06:03, 03:16](1905 MB) +PASS -- TEST 'regional_debug_intel' [19:47, 17:22](1084 MB) +PASS -- TEST 'rap_control_debug_intel' [06:36, 05:02](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 05:06](1199 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:27, 04:56](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:25, 05:03](1205 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:28, 05:21](1209 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:40, 05:07](1292 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:04](1200 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 05:07](1209 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:05](1213 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:24, 05:04](1212 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:58](1205 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:02](1210 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:31, 08:02](1200 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:26, 05:13](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:12](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:28, 04:57](1205 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:24](1209 MB) + +PASS -- COMPILE 'wam_debug_intel' [10:11, 06:57] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:49, 13:22](1688 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [20:11, 14:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:57, 04:49](1124 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:09, 07:07](994 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:38, 03:43](918 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:02, 07:32](1048 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:38, 03:36](944 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:10, 03:55](895 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [25:39, 05:21](974 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [22:28, 02:04](882 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [17:11, 13:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:55, 02:42](1161 MB) +PASS -- TEST 'conus13km_2threads_intel' [20:42, 01:16](1117 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [19:43, 01:32](1060 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:11, 13:54] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [10:41, 04:32](979 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:11, 08:00] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:26, 05:02](1081 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [15:28, 04:47](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [26:57, 15:35](1235 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [25:53, 14:53](932 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [24:46, 08:41](1165 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [30:47, 14:48](1299 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:11, 07:19] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:24, 05:22](1132 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 16:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [16:14, 05:59](735 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [16:33, 06:26](1108 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [24:28, 07:30](822 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:22, 25:55](847 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [43:33, 26:50](881 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [24:03, 07:07](494 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:36, 08:28](502 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [25:59, 03:29](373 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [32:34, 09:57](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [25:53, 04:43](523 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [25:47, 04:29](522 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [27:00, 05:47](575 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [22:31, 01:34](403 MB) +PASS -- TEST 'gnv1_nested_intel' [26:24, 04:20](1728 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 08:29] ( 1467 warnings 1502 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:12, 13:18](589 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:58] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [31:18, 13:05](660 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [32:08, 13:23](727 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 15:24] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:54, 08:41](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:11, 14:24] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [24:19, 07:33](811 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [21:16, 07:29](797 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [27:54, 16:25](1209 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [14:11, 12:30] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [14:19, 02:58](1160 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 01:57](1104 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [14:18, 02:52](1013 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [13:20, 02:54](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:53](1021 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:21, 02:58](1160 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:18, 02:59](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:17, 02:50](1020 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:31](1013 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:02, 06:31](1009 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:59](1154 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:19, 04:24](2402 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [10:22, 04:30](2448 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:10, 06:46] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [12:18, 06:34](1084 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:15] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:24, 02:37](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:52] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:31, 01:05](254 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:24, 00:58](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:33, 00:58](325 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:10, 13:53] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:28, 04:17](1972 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:19] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:30, 04:00](1948 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 14:03] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:46, 05:03](1870 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [09:43, 05:04](1862 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:00, 02:49](1068 MB) + +PASS -- COMPILE 'atml_debug_intel' [09:10, 08:07] ( 882 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:29, 06:05](1886 MB) + +PASS -- COMPILE 'atmw_intel' [15:11, 13:30] ( 8 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:49, 02:15](1902 MB) + +PASS -- COMPILE 'atmaero_intel' [14:11, 12:58] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:27, 04:34](1994 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [10:15, 05:23](1768 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:04, 05:27](1789 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:55] ( 884 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [24:19, 20:33](4556 MB) SYNOPSIS: -Starting Date/Time: 20240822 08:12:59 -Ending Date/Time: 20240822 09:46:15 -Total Time: 01h:34m:11s +Starting Date/Time: 20240826 11:14:55 +Ending Date/Time: 20240826 13:22:24 +Total Time: 02h:08m:05s Compiles Completed: 41/41 Tests Completed: 185/185 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 7b6eb88269..0a60125fab 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d +7a3782cc2bd9c3e8bf5a34088edcff9d2cdde759 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) + 12d0556920c11b388012c7b01e4e3c9ee7ebd93a CDEPS-interface/CDEPS (remotes/origin/simplify_datm) 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) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) + 01677400f90c2aaeac4d57718b826cd0881470f4 FV3 (remotes/origin/feature/cubed_sphere_inc) + 04b336f3da7fde10f1c63ca82699fd5c1378fbf3 FV3/atmos_cubed_sphere (201912_public_release-428-g04b336f) 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) + 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (EP4-851-g1d9b0765) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) -1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd @@ -36,305 +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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_75332 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_185170 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [11:24, 11:09] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [02:14, 01:18](3107 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [12:26, 12:01] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [01:13, 01:33](1817 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [42:59, 02:22](1829 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [42:38, 02:02](974 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [01:14, 01:57](1788 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [12:25, 11:58] ( 1 warnings 8 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [01:13, 01:00](1810 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:18, 05:21] ( 1505 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [07:21, 01:28](1843 MB) - -PASS -- COMPILE 's2swa_intel' [12:25, 11:27] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [01:13, 01:20](3132 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [01:13, 01:37](3131 MB) -PASS -- TEST 'cpld_restart_p8_intel' [52:44, 01:07](3058 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [01:13, 01:22](3160 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [52:45, 01:03](3078 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [01:13, 01:43](3371 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [01:13, 01:23](3125 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [01:14, 01:32](3074 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [01:13, 01:41](3131 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [01:22, 04:32](4123 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [41:23, 04:24](4271 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [01:13, 01:42](3107 MB) - -PASS -- COMPILE 's2sw_intel' [12:25, 11:24] ( 8 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [01:13, 01:41](1831 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [01:13, 01:52](1886 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:12] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [02:14, 01:49](1891 MB) - -PASS -- COMPILE 's2s_intel' [11:24, 10:43] ( 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [02:13, 00:49](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [02:13, 01:17](2876 MB) -PASS -- TEST 'cpld_restart_c48_intel' [58:07, 01:02](2289 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:17] ( 8 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [56:08, 01:51](3132 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [12:30, 11:53] ( 8 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [01:09, 01:48](1825 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [42:33, 01:15](999 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:26, 01:37](1795 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:19] ( 1541 warnings 1998 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [01:02, 01:21](1850 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:22, 08:56] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [52:51, 00:20](568 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [52:51, 01:27](1469 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [52:51, 01:20](1480 MB) -PASS -- TEST 'control_latlon_intel' [52:51, 00:19](1469 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [52:51, 01:29](1469 MB) -PASS -- TEST 'control_c48_intel' [52:50, 00:50](1553 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [52:50, 00:44](690 MB) -PASS -- TEST 'control_c192_intel' [52:51, 01:08](1581 MB) -PASS -- TEST 'control_c384_intel' [52:55, 02:02](1859 MB) -PASS -- TEST 'control_c384gdas_intel' [52:55, 02:43](1065 MB) -PASS -- TEST 'control_stochy_intel' [52:51, 00:24](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [50:25, 01:00](380 MB) -PASS -- TEST 'control_lndp_intel' [52:51, 00:30](527 MB) -PASS -- TEST 'control_iovr4_intel' [52:46, 00:39](519 MB) -PASS -- TEST 'control_iovr5_intel' [52:46, 00:42](517 MB) -PASS -- TEST 'control_p8_intel' [52:33, 01:52](1762 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [52:26, 02:01](1765 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [52:19, 01:52](1759 MB) -PASS -- TEST 'control_restart_p8_intel' [47:03, 00:51](909 MB) -PASS -- TEST 'control_noqr_p8_intel' [50:26, 01:51](1759 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [45:01, 01:45](915 MB) -PASS -- TEST 'control_decomp_p8_intel' [49:17, 01:23](1751 MB) -PASS -- TEST 'control_2threads_p8_intel' [49:15, 01:50](1832 MB) -PASS -- TEST 'control_p8_lndp_intel' [49:14, 01:09](1761 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [49:08, 02:01](1821 MB) -PASS -- TEST 'control_p8_mynn_intel' [48:21, 01:46](1768 MB) -PASS -- TEST 'merra2_thompson_intel' [48:02, 01:57](1761 MB) -PASS -- TEST 'regional_control_intel' [47:59, 01:10](844 MB) -PASS -- TEST 'regional_restart_intel' [41:11, 00:20](841 MB) -PASS -- TEST 'regional_decomp_intel' [47:56, 00:55](842 MB) -PASS -- TEST 'regional_2threads_intel' [47:54, 00:47](905 MB) -PASS -- TEST 'regional_noquilt_intel' [47:38, 00:14](1172 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [46:55, 00:22](848 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [46:55, 00:13](854 MB) -PASS -- TEST 'regional_wofs_intel' [46:47, 00:30](1569 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:31] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [46:48, 02:00](909 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [46:06, 01:03](1057 MB) -PASS -- TEST 'rap_decomp_intel' [46:01, 01:19](912 MB) -PASS -- TEST 'rap_2threads_intel' [44:51, 01:04](988 MB) -PASS -- TEST 'rap_restart_intel' [37:13, 01:15](780 MB) -PASS -- TEST 'rap_sfcdiff_intel' [44:20, 01:56](908 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [44:08, 01:33](908 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [34:52, 01:34](780 MB) -PASS -- TEST 'hrrr_control_intel' [43:46, 01:08](904 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [43:46, 01:03](903 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [43:17, 01:13](988 MB) -PASS -- TEST 'hrrr_control_restart_intel' [38:29, 01:02](732 MB) -PASS -- TEST 'rrfs_v1beta_intel' [43:01, 02:01](902 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [42:10, 00:44](1862 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [41:59, 00:55](1850 MB) - -PASS -- COMPILE 'csawmg_intel' [08:23, 07:55] -PASS -- TEST 'control_csawmg_intel' [53:50, 00:22](864 MB) -PASS -- TEST 'control_ras_intel' [53:50, 00:51](557 MB) - -PASS -- COMPILE 'wam_intel' [08:23, 07:55] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [41:12, 00:23](1560 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [08:23, 08:09] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [41:12, 02:07](1749 MB) -PASS -- TEST 'regional_control_faster_intel' [41:04, 00:20](832 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:23, 07:29] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [40:43, 01:19](1494 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [40:40, 01:21](1500 MB) -PASS -- TEST 'control_stochy_debug_intel' [40:19, 00:45](702 MB) -PASS -- TEST 'control_lndp_debug_intel' [40:17, 01:04](700 MB) -PASS -- TEST 'control_csawmg_debug_intel' [40:09, 00:26](1006 MB) -PASS -- TEST 'control_ras_debug_intel' [39:57, 01:00](707 MB) -PASS -- TEST 'control_diag_debug_intel' [39:56, 01:22](1561 MB) -PASS -- TEST 'control_debug_p8_intel' [38:59, 00:56](1793 MB) -PASS -- TEST 'regional_debug_intel' [38:46, 00:20](885 MB) -PASS -- TEST 'rap_control_debug_intel' [38:29, 00:41](1086 MB) -PASS -- TEST 'hrrr_control_debug_intel' [38:18, 00:47](1081 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [37:30, 00:41](1085 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [36:56, 00:43](1083 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [36:51, 00:38](1086 MB) -PASS -- TEST 'rap_diag_debug_intel' [35:49, 00:34](1172 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [35:48, 00:32](1086 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [35:45, 00:32](1091 MB) -PASS -- TEST 'rap_lndp_debug_intel' [35:43, 00:37](1088 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [35:32, 00:41](1088 MB) -PASS -- TEST 'rap_noah_debug_intel' [35:27, 00:44](1080 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [35:27, 00:41](1084 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [34:55, 00:34](1081 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [34:55, 00:43](1081 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [34:52, 00:49](1083 MB) -PASS -- TEST 'rap_flake_debug_intel' [34:24, 00:44](1089 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [34:04, 02:07](1091 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:19, 04:31] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [55:53, 01:07](1592 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:22, 07:53] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [33:33, 01:21](912 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [32:53, 01:43](783 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [32:25, 01:56](785 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [32:23, 01:37](843 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [32:04, 01:50](830 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [31:56, 01:19](782 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [24:58, 01:32](679 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [26:59, 00:16](664 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:27, 08:02] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [31:45, 01:12](996 MB) -PASS -- TEST 'conus13km_2threads_intel' [27:37, 00:54](995 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [27:24, 00:42](869 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:27, 07:55] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [31:43, 01:21](813 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:21, 04:32] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [31:27, 00:47](957 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [30:58, 00:56](955 MB) -PASS -- TEST 'conus13km_debug_intel' [30:25, 00:43](1045 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [30:22, 00:29](717 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [29:14, 01:05](1045 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [29:13, 00:24](1112 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:19, 04:26] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [29:13, 00:45](986 MB) - -PASS -- COMPILE 'hafsw_intel' [09:29, 09:12] ( 1 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:08, 02:03](601 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:08, 01:10](946 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [28:59, 01:30](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [28:58, 01:28](677 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [28:23, 02:13](692 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [28:18, 01:01](378 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [27:54, 02:15](389 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [27:24, 01:46](299 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [27:15, 02:22](369 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [27:00, 01:38](407 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [26:59, 00:58](410 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:55, 00:46](475 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [25:14, 00:25](330 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:18, 04:53] ( 1449 warnings 1501 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [25:08, 01:29](517 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:28, 09:06] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [24:54, 01:43](516 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [24:38, 01:33](701 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:31, 09:22] ( 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [24:35, 01:09](701 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:29, 08:38] ( 7 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [24:27, 01:57](648 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [24:24, 01:51](628 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:55, 00:34](879 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:28, 09:58] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [22:44, 00:41](1813 MB) - -PASS -- COMPILE 'atml_intel' [09:23, 08:57] ( 8 warnings 2 remarks ) - -FAILED: UNABLE TO FINISH COMPILE -- COMPILE 'atml_debug_intel' [, ] - -PASS -- COMPILE 'atmaero_intel' [09:24, 08:11] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [22:40, 01:18](3026 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [22:31, 01:47](2910 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [22:14, 01:45](2916 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:22, 04:26] ( 870 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [22:05, 01:15](4444 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:26, 11:01] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [19:53, 02:29](3099 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:53] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:52, 02:56](1809 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [59:46, 02:45](1840 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [59:27, 02:18](975 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:53, 02:22](1785 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:27, 12:04] ( 1 warnings 8 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:52, 02:11](1807 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:13] ( 1505 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:00, 02:28](1841 MB) + +PASS -- COMPILE 's2swa_intel' [12:25, 11:05] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [19:54, 02:30](3133 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:54, 02:47](3130 MB) +PASS -- TEST 'cpld_restart_p8_intel' [10:41, 02:03](3061 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:54, 02:29](3153 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [10:41, 01:58](3078 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [19:54, 02:04](3373 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:54, 02:31](3128 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:55, 02:37](3076 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:54, 02:45](3134 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [20:03, 05:16](4123 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [00:18, 05:40](4266 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:54, 02:49](3112 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 10:55] ( 8 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [19:54, 01:53](1822 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [19:54, 02:04](1897 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:27, 10:34] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [19:52, 02:06](1889 MB) + +PASS -- COMPILE 's2s_intel' [12:26, 10:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [19:52, 01:58](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [19:52, 02:30](2879 MB) +PASS -- TEST 'cpld_restart_c48_intel' [14:50, 02:04](2287 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:30, 16:12] ( 8 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [14:49, 02:45](3131 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 11:46] ( 8 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:52, 01:55](1824 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [00:30, 02:41](988 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [00:28, 02:39](1809 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:07] ( 1541 warnings 1998 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [17:38, 02:21](1856 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [09:30, 01:19](568 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:30, 01:30](1468 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:30, 01:28](1480 MB) +PASS -- TEST 'control_latlon_intel' [09:30, 01:27](1475 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [09:30, 01:36](1470 MB) +PASS -- TEST 'control_c48_intel' [09:29, 01:58](1555 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:29, 01:47](693 MB) +PASS -- TEST 'control_c192_intel' [09:30, 02:13](1576 MB) +PASS -- TEST 'control_c384_intel' [09:34, 03:03](1849 MB) +PASS -- TEST 'control_c384gdas_intel' [09:34, 02:47](1065 MB) +PASS -- TEST 'control_stochy_intel' [09:30, 01:26](525 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:04, 02:09](329 MB) +PASS -- TEST 'control_lndp_intel' [09:30, 01:30](527 MB) +PASS -- TEST 'control_iovr4_intel' [09:30, 01:43](518 MB) +PASS -- TEST 'control_iovr5_intel' [09:30, 01:42](516 MB) +PASS -- TEST 'control_p8_intel' [06:04, 03:09](1753 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:27, 02:55](1753 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:01, 02:51](1758 MB) +PASS -- TEST 'control_restart_p8_intel' [59:27, 02:04](910 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:01, 02:58](1758 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [58:29, 01:47](916 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:01, 02:51](1752 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:43, 01:59](1841 MB) +PASS -- TEST 'control_p8_lndp_intel' [04:41, 02:07](1760 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:38, 02:59](1812 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:32, 02:49](1765 MB) +PASS -- TEST 'merra2_thompson_intel' [04:11, 02:35](1769 MB) +PASS -- TEST 'regional_control_intel' [04:10, 02:12](839 MB) +PASS -- TEST 'regional_restart_intel' [56:27, 01:22](840 MB) +PASS -- TEST 'regional_decomp_intel' [04:00, 01:59](840 MB) +PASS -- TEST 'regional_2threads_intel' [04:01, 01:56](896 MB) +PASS -- TEST 'regional_noquilt_intel' [03:43, 01:18](1180 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [02:30, 01:25](842 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [01:45, 01:17](843 MB) +PASS -- TEST 'regional_wofs_intel' [01:38, 01:27](1568 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [00:47, 02:54](906 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [59:06, 02:02](1061 MB) +PASS -- TEST 'rap_decomp_intel' [58:37, 02:16](910 MB) +PASS -- TEST 'rap_2threads_intel' [58:28, 02:12](991 MB) +PASS -- TEST 'rap_restart_intel' [50:21, 02:20](776 MB) +PASS -- TEST 'rap_sfcdiff_intel' [58:23, 03:02](907 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [58:09, 02:29](906 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [47:57, 02:47](779 MB) +PASS -- TEST 'hrrr_control_intel' [57:48, 02:19](904 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [57:45, 02:45](905 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [57:13, 02:07](983 MB) +PASS -- TEST 'hrrr_control_restart_intel' [51:22, 02:05](730 MB) +PASS -- TEST 'rrfs_v1beta_intel' [57:08, 03:02](901 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [56:59, 01:45](1863 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [56:58, 02:02](1857 MB) + +PASS -- COMPILE 'csawmg_intel' [09:23, 07:53] +PASS -- TEST 'control_csawmg_intel' [10:29, 01:26](866 MB) +PASS -- TEST 'control_ras_intel' [10:29, 01:53](561 MB) + +PASS -- COMPILE 'wam_intel' [09:23, 07:47] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:29, 01:27](1567 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:25, 08:00] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [10:26, 02:59](1755 MB) +PASS -- TEST 'regional_control_faster_intel' [10:25, 01:26](836 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:27, 07:28] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [56:53, 02:10](1491 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [56:35, 02:21](1494 MB) +PASS -- TEST 'control_stochy_debug_intel' [56:25, 01:43](703 MB) +PASS -- TEST 'control_lndp_debug_intel' [56:25, 02:03](700 MB) +PASS -- TEST 'control_csawmg_debug_intel' [56:22, 01:27](1005 MB) +PASS -- TEST 'control_ras_debug_intel' [55:39, 02:03](707 MB) +PASS -- TEST 'control_diag_debug_intel' [55:04, 02:04](1563 MB) +PASS -- TEST 'control_debug_p8_intel' [54:57, 01:40](1793 MB) +PASS -- TEST 'regional_debug_intel' [54:31, 02:13](884 MB) +PASS -- TEST 'rap_control_debug_intel' [54:24, 01:35](1085 MB) +PASS -- TEST 'hrrr_control_debug_intel' [52:58, 01:51](1075 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [51:56, 01:44](1080 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [51:51, 01:40](1080 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [51:19, 01:40](1088 MB) +PASS -- TEST 'rap_diag_debug_intel' [51:12, 01:32](1167 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [50:58, 01:38](1087 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [50:57, 01:37](1085 MB) +PASS -- TEST 'rap_lndp_debug_intel' [50:47, 01:36](1082 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [50:44, 01:37](1083 MB) +PASS -- TEST 'rap_noah_debug_intel' [50:10, 01:46](1079 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [49:43, 01:39](1083 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [49:28, 01:23](1083 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [49:14, 01:41](1079 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [49:10, 01:54](1080 MB) +PASS -- TEST 'rap_flake_debug_intel' [48:59, 01:41](1086 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [48:58, 02:57](1087 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:23, 04:30] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [12:28, 01:21](1583 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:26, 07:53] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [48:36, 02:22](917 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [48:30, 02:15](784 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [47:57, 03:37](784 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [46:56, 02:17](844 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [46:56, 02:54](834 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [46:44, 03:12](782 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [40:04, 02:32](688 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [40:52, 01:19](666 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:49] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [46:23, 02:00](992 MB) +PASS -- TEST 'conus13km_2threads_intel' [41:34, 01:57](993 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [41:31, 01:43](865 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:23, 07:51] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [46:20, 02:24](816 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:27] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [45:23, 01:58](958 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [44:22, 02:01](956 MB) +PASS -- TEST 'conus13km_debug_intel' [44:20, 01:33](1038 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [43:53, 01:37](710 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [43:49, 01:48](1043 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [43:33, 02:02](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:20] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [43:22, 01:27](990 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 09:17] ( 1 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [43:25, 02:50](601 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [43:21, 01:37](945 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [43:15, 02:50](650 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [42:40, 02:47](676 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [42:20, 02:26](695 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [42:15, 02:01](379 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [41:45, 03:11](391 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [41:26, 02:16](285 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [40:57, 03:29](366 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [40:40, 02:35](400 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [39:57, 02:01](406 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [39:37, 01:50](480 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [39:32, 01:29](318 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:49] ( 1449 warnings 1501 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [39:31, 02:19](514 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:24, 08:54] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [39:02, 02:25](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [38:57, 02:26](703 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:21] ( 7 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [38:55, 02:59](706 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:24, 08:38] ( 7 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [37:46, 02:17](648 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [37:30, 03:04](628 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [37:25, 01:30](881 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:04] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [37:23, 01:49](1825 MB) + +PASS -- COMPILE 'atml_intel' [10:24, 08:50] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [07:21, 05:17] ( 868 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:24, 08:04] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [36:46, 02:20](3022 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [36:13, 01:53](2914 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [36:00, 02:53](2917 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:19, 04:27] ( 870 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [35:47, 02:55](4442 MB) SYNOPSIS: -Starting Date/Time: 20240822 16:46:02 -Ending Date/Time: 20240822 18:04:22 -Total Time: 01h:18m:59s -Compiles Completed: 32/33 +Starting Date/Time: 20240826 16:27:24 +Ending Date/Time: 20240826 17:51:44 +Total Time: 01h:24m:52s +Compiles Completed: 33/33 Tests Completed: 156/156 -Failed Compiles: -* COMPILE atml_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_atml_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: -6ccfb11529c2bd172bc7d4956eadfab0b55bf12d - -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-gf13e16e4) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - d35292607ebfb2a5a6245d2c409f84e51c0eb815 FV3 (remotes/origin/number-concentration) - 3f81533642be6060e1ac382ac99ce1481892dddd FV3/atmos_cubed_sphere (201912_public_release-404-g3f81533) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 1d9b076503c27cd4cfa8b22a977a71e889cbb149 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5297-g1d9b0765) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 81b38a88d860ce7e34e8507c2246151a54d96a39 FV3/upp (upp_v10.2.0-218-g81b38a88) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd --567edcc94bc418d0dcd6cdaafed448eeb5aab570 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) - 00f8ea2023f5ed58f0605cea373094f65ee90f64 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10197-g00f8ea202) - 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) - - -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-20240821 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_85439 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: GFS-DEV -* (-l) - USE CONFIG FILE: rt.test -* (-o) - COMPILE ONLY, SKIP TESTS - -PASS -- COMPILE 'atml_debug_intel' [06:19, 05:39] ( 868 warnings 2 remarks ) - -SYNOPSIS: -Starting Date/Time: 20240822 18:58:56 -Ending Date/Time: 20240822 19:05:16 -Total Time: 00h:06m:43s -Compiles Completed: 1/1 -Tests Completed: 0/0 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index d48d1fb422..c7b45874f1 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_ca.nml.IN b/tests/parm/control_ca.nml.IN index 95abe17265..527eb7e296 100644 --- a/tests/parm/control_ca.nml.IN +++ b/tests/parm/control_ca.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_csawmg.nml.IN b/tests/parm/control_csawmg.nml.IN index 6729ed1031..88a46c3e58 100644 --- a/tests/parm/control_csawmg.nml.IN +++ b/tests/parm/control_csawmg.nml.IN @@ -87,6 +87,7 @@ z_tracer = .true. agrid_vel_rst = .true. read_increment = .false. + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] res_latlon_dynamics = "" / diff --git a/tests/parm/control_flake.nml.IN b/tests/parm/control_flake.nml.IN index cea5817471..27f96e5c61 100644 --- a/tests/parm/control_flake.nml.IN +++ b/tests/parm/control_flake.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_gdas.nml.IN b/tests/parm/control_gdas.nml.IN index 9ffeadd0e3..0d5991b24a 100644 --- a/tests/parm/control_gdas.nml.IN +++ b/tests/parm/control_gdas.nml.IN @@ -91,7 +91,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "" - + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &cires_ugwp_nml diff --git a/tests/parm/control_gfsv17.nml.IN b/tests/parm/control_gfsv17.nml.IN index 247cca85e8..ce77835c8f 100644 --- a/tests/parm/control_gfsv17.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -89,6 +89,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/control_noahmp.nml.IN b/tests/parm/control_noahmp.nml.IN index 6082aa789b..bc61672a00 100644 --- a/tests/parm/control_noahmp.nml.IN +++ b/tests/parm/control_noahmp.nml.IN @@ -88,6 +88,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index b01ba5f205..d510d0ca6f 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -90,6 +90,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 3f77e6fd0f..2bd6144f3e 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -89,6 +89,7 @@ z_tracer = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/datm.streams.IN b/tests/parm/datm.streams.IN index f6ec3e1b16..bac426f620 100644 --- a/tests/parm/datm.streams.IN +++ b/tests/parm/datm.streams.IN @@ -1,4 +1,4 @@ -stream_info: @[FILENAME_BASE]01 +stream_info: @[FILEBASE_DATM].01 taxmode01: limit mapalgo01: bilinear tInterpAlgo01: linear diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index ecdc0c5d0b..8868906af9 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index fdc887c8f5..2c7173fce7 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/input_global_nest.nml.IN b/tests/parm/input_global_nest.nml.IN index affbb2af94..dab50280d1 100644 --- a/tests/parm/input_global_nest.nml.IN +++ b/tests/parm/input_global_nest.nml.IN @@ -101,6 +101,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] nested = @[NESTED] twowaynest = @[TWOWAYNEST02] nestupdate = 7 diff --git a/tests/parm/input_global_parent.nml.IN b/tests/parm/input_global_parent.nml.IN index 2027367087..33c1baa34f 100644 --- a/tests/parm/input_global_parent.nml.IN +++ b/tests/parm/input_global_parent.nml.IN @@ -100,6 +100,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = @[TARGET_LAT] target_lon = @[TARGET_LON] diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 561afaffa9..4056f629bb 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -89,6 +89,7 @@ warm_start = @[WARM_START] read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] no_dycore = .false. z_tracer = .true. diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 3fdf8e7d5e..055e4ddeac 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -94,6 +94,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. nested = .true. diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index d88db070ef..95cec669bd 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .true. read_increment = .false. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] write_3d_diags = .true. do_schmidt = .true. diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 8ed7dcfa75..849e9f78cc 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -90,6 +90,7 @@ agrid_vel_rst = .true. read_increment = @[READ_INCREMENT] res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index 511cbe1e34..f0911503c7 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -96,6 +96,7 @@ agrid_vel_rst = .true. read_increment = .F. res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] do_schmidt = .true. target_lat = 55.0 target_lon = -112.5 diff --git a/tests/parm/regional_atmaq.nml.IN b/tests/parm/regional_atmaq.nml.IN index 0a5b3e3812..a5a596a55c 100644 --- a/tests/parm/regional_atmaq.nml.IN +++ b/tests/parm/regional_atmaq.nml.IN @@ -93,6 +93,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 750.0 stretch_fac = 0.999 diff --git a/tests/parm/regional_rrfs_a.nml.IN b/tests/parm/regional_rrfs_a.nml.IN index 1e1255e81b..d7c903a954 100644 --- a/tests/parm/regional_rrfs_a.nml.IN +++ b/tests/parm/regional_rrfs_a.nml.IN @@ -120,6 +120,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/regional_wofs.nml.IN b/tests/parm/regional_wofs.nml.IN index e79f196863..e5d49e3858 100644 --- a/tests/parm/regional_wofs.nml.IN +++ b/tests/parm/regional_wofs.nml.IN @@ -112,6 +112,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = 'fv3_increment.nc' + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 2000.0 stretch_fac = 0.999 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 883a508911..b582d1d357 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -115,6 +115,7 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 20000.0 sg_cutoff = 10000.0 diff --git a/tests/parm/wam_v17.nml.IN b/tests/parm/wam_v17.nml.IN index 8e5c6cb90d..f6ec526bc7 100644 --- a/tests/parm/wam_v17.nml.IN +++ b/tests/parm/wam_v17.nml.IN @@ -93,6 +93,7 @@ agrid_vel_rst = .false. read_increment = @[READ_INCREMENT] res_latlon_dynamics = "fv3_increment.nc" + increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] / &external_ic_nml diff --git a/tests/rt.sh b/tests/rt.sh index dc29328c5a..fd8976c10c 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -1040,6 +1040,7 @@ if [[ ${skip_check_results} == true ]]; then else REGRESSIONTEST_LOG=${PATHRT}/logs/RegressionTests_${MACHINE_ID}.log fi +rm -f "${REGRESSIONTEST_LOG}" TEST_START_TIME="$(date '+%Y%m%d %T')" export TEST_START_TIME diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 6f049cf161..3fb1070547 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -124,10 +124,6 @@ submit_and_wait() { local -r job_card=$1 - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' case ${SCHEDULER} in pbs) qsubout=$( qsub "${job_card}" ) @@ -187,26 +183,38 @@ submit_and_wait() { set +e job_info=$( qstat "${jobid}" ) set -e + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $5}' <<< "${status}" ) + else + job_running=false + status='COMPLETED' + set +e + exit_status=$( qstat "${jobid}" -x -f | grep Exit_status | awk '{print $3}') + set -e + if [[ ${exit_status} != 0 ]]; then + status='FAILED' + fi + fi ;; slurm) - job_info=$( squeue -u "${USER}" -j "${jobid}" ) + job_info=$( squeue -u "${USER}" -j "${jobid}" -o '%i %T' ) + if grep -q "${jobid}" <<< "${job_info}"; then + job_running=true + else + job_running=false + job_info=$( sacct -n -j "${jobid}" --format=JobID,state%20,Jobname%64 | grep "^${jobid}" | grep "${JBNME}" ) + fi + # Getting the status letter from scheduler info + status=$( grep "${jobid}" <<< "${job_info}" ) + status=$( awk '{print $2}' <<< "${status}" ) ;; *) ;; esac - - if grep -q "${jobid}" <<< "${job_info}"; then - job_running=true - else - job_running=false - continue - fi - - # Getting the status letter from scheduler info - status=$( grep "${jobid}" <<< "${job_info}" ) - status=$( awk '{print $5}' <<< "${status}" ) - case ${status} in #waiting cases #pbs: Q @@ -217,7 +225,7 @@ submit_and_wait() { #running cases #pbs: R #slurm: (old: R, new: RUNNING) - R|RUNNING) + R|RUNNING|COMPLETING) status_label='Job running' ;; #held cases @@ -229,14 +237,15 @@ submit_and_wait() { #fail/completed cases #slurm: F/FAILED TO/TIMEOUT CA/CANCELLED F|TO|CA|FAILED|TIMEOUT|CANCELLED) - echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!!" + echo "rt_utils.sh: !!!!!!!!!!JOB TERMINATED!!!!!!!!!! status=${status}" job_running=false #Trip the loop to end with these status flags interrupt_job exit 1 ;; #completed - #pbs only: C-Complete E-Exiting - C|E) + #pbs: C-Complete E-Exiting + #slurm: CD/COMPLETED + C|E|CD|COMPLETED) status_label='Completed' ;; *) @@ -253,140 +262,6 @@ submit_and_wait() { done } -check_results() { - echo "rt_utils.sh: Checking results of the regression test: ${TEST_ID}" - - ROCOTO=${ROCOTO:-false} - ECFLOW=${ECFLOW:-false} - - local test_status='PASS' - - # Give one minute for data to show up on file system - #sleep 60 - - { - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - } > "${RT_LOG}" - echo - echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" - echo "working dir = ${RUNDIR}" - echo "Checking test ${TEST_ID} results ...." - - if [[ ${CREATE_BASELINE} = false ]]; then - # - # --- regression test comparison - # - for i in ${LIST_FILES} ; do - printf %s " Comparing ${i} ....." >> "${RT_LOG}" - printf %s " Comparing ${i} ....." - - if [[ ! -f ${RUNDIR}/${i} ]] ; then - - echo ".......MISSING file" >> "${RT_LOG}" - echo ".......MISSING file" - test_status='FAIL' - - elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then - - echo ".......MISSING baseline" >> "${RT_LOG}" - echo ".......MISSING baseline" - test_status='FAIL' - - else - if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then - printf "USING NCCMP.." >> "${RT_LOG}" - printf "USING NCCMP.." - if [[ ${CMP_DATAONLY} == false ]]; then - nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - else - nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? - fi - if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - fi - else - printf "USING CMP.." >> "${RT_LOG}" - printf "USING CMP.." - cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? - if [[ ${d} -eq 2 ]]; then - printf "....ERROR" >> "${RT_LOG}" - printf "....ERROR" - test_status='FAIL' - fi - - fi - - if [[ ${d} -ne 0 ]]; then - echo "....NOT IDENTICAL" >> "${RT_LOG}" - echo "....NOT IDENTICAL" - test_status='FAIL' - else - echo "....OK" >> "${RT_LOG}" - echo "....OK" - fi - - fi - - done - - else - # - # --- create baselines - # - echo;echo "Moving baseline ${TEST_ID} files ...." - echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" - - for i in ${LIST_FILES} ; do - printf %s " Moving ${i} ....." - printf %s " Moving ${i} ....." >> "${RT_LOG}" - if [[ -f ${RUNDIR}/${i} ]] ; then - mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" - cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" - echo "....OK" >> "${RT_LOG}" - echo "....OK" - else - echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" - echo "....NOT OK. Missing ${RUNDIR}/${i}" - test_status='FAIL' - fi - done - - fi - - { - echo - grep "The total amount of wall time" "${RUNDIR}/out" - grep "The maximum resident set size" "${RUNDIR}/out" - echo - } >> "${RT_LOG}" - - TRIES='' - if [[ ${ECFLOW} == true ]]; then - if [[ ${ECF_TRYNO} -gt 1 ]]; then - TRIES=" Tries: ${ECF_TRYNO}" - fi - fi - echo "Test ${TEST_ID} ${test_status}${TRIES}" >> "${RT_LOG}" - echo >> "${RT_LOG}" - echo "Test ${TEST_ID} ${test_status}${TRIES}" - echo - - if [[ ${test_status} = 'FAIL' ]]; then - echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" - return 1 - else - return 0 - fi -} - - kill_job() { echo "rt_utils.sh: Killing job: ${jobid} on ${SCHEDULER}..." [[ -z $1 ]] && exit 1 @@ -580,14 +455,16 @@ ecflow_create_compile_task() { cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_ID}.ecf" %include -${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "compile_${COMPILE_ID}.log.\${ECF_TRYNO}" "compile_${COMPILE_ID}.log" +) +${PATHRT}/run_compile.sh "${PATHRT}" "${RUNDIR_ROOT}" "${MAKE_OPT}" "${COMPILE_ID}" > "${LOG_DIR}/compile_${COMPILE_ID}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task compile_${COMPILE_ID}" echo " label build_options '${MAKE_OPT}'" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_builds" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" } @@ -596,13 +473,15 @@ ecflow_create_run_task() { echo "rt_utils.sh: ${TEST_ID}: Creating ECFLOW run task" cat << EOF > "${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_ID}${RT_SUFFIX}.ecf" %include -${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" 2>&1 & +( +cd "${LOG_DIR}" +ln -sf "run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log" +) +${PATHRT}/run_test.sh "${PATHRT}" "${RUNDIR_ROOT}" "${TEST_NAME}" "${TEST_ID}" "${COMPILE_ID}" > "${LOG_DIR}/run_${TEST_ID}${RT_SUFFIX}.log.\${ECF_TRYNO}" 2>&1 & %include EOF { echo " task ${TEST_ID}${RT_SUFFIX}" - echo " label job_id ''" - echo " label job_status ''" echo " inlimit max_jobs" } >> "${ECFLOW_RUN}/${ECFLOW_SUITE}.def" if [[ ${DEP_RUN} != '' ]]; then diff --git a/tests/run_compile.sh b/tests/run_compile.sh index 1685f89653..6eeb72b13e 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -17,7 +17,16 @@ cleanup() { write_fail_test() { echo "${JBNME} failed in run_compile" >> "${PATHRT}/fail_${JBNME}" - exit 1 + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } remove_fail_test() { diff --git a/tests/run_test.sh b/tests/run_test.sh index ace4fd0cf1..88e10210d6 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -17,12 +17,16 @@ cleanup() { write_fail_test() { echo "${TEST_ID} failed in run_test" >> "${PATHRT}/fail_test_${TEST_ID}" - exit 1 -} - -remove_fail_test() { - echo "Removing test failure flag file for ${TEST_ID}" - rm -f "${PATHRT}/fail_test_${TEST_ID}" + if [[ ${ROCOTO:-false} == true ]] || [[ ${ECFLOW:-false} == true ]]; then + # if this script has been submitted by a workflow return non-zero exit status + # so that workflow can resubmit it + exit 1 + else + # if this script has been executed interactively, return zero exit status + # so that rt.sh can continue running, and hope that rt.sh's generate_log + # will catch failed tests + exit 0 + fi } if [[ $# != 5 ]]; then @@ -53,7 +57,7 @@ source default_vars.sh [[ -e ${RUNDIR_ROOT}/run_test_${TEST_ID}.env ]] && source "${RUNDIR_ROOT}/run_test_${TEST_ID}.env" source "tests/${TEST_NAME}" -remove_fail_test +rm -f "${PATHRT}/fail_test_${TEST_ID}" # Save original CNTL_DIR name as INPUT_DIR for regression # tests that try to copy input data from CNTL_DIR @@ -396,11 +400,123 @@ else fi skip_check_results=${skip_check_results:-false} -results_okay=YES -if [[ ${skip_check_results} = false ]]; then - if ( ! check_results ) ; then - results_okay=NO +if [[ ${skip_check_results} == false ]]; then + + test_status='PASS' + + { + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + } > "${RT_LOG}" + echo + echo "baseline dir = ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}" + echo "working dir = ${RUNDIR}" + echo "Checking test ${TEST_ID} results ...." + + if [[ ${CREATE_BASELINE} = false ]]; then + # + # --- regression test comparison + # + for i in ${LIST_FILES} ; do + printf %s " Comparing ${i} ....." >> "${RT_LOG}" + printf %s " Comparing ${i} ....." + + if [[ ! -f ${RUNDIR}/${i} ]] ; then + + echo ".......MISSING file" >> "${RT_LOG}" + echo ".......MISSING file" + test_status='FAIL' + + elif [[ ! -f ${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i} ]] ; then + + echo ".......MISSING baseline" >> "${RT_LOG}" + echo ".......MISSING baseline" + test_status='FAIL' + + else + if [[ ${i##*.} == nc* ]] ; then + if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + printf "USING NCCMP.." >> "${RT_LOG}" + printf "USING NCCMP.." + if [[ ${CMP_DATAONLY} == false ]]; then + nccmp -d -S -q -f -g -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + else + nccmp -d -S -q -f -B --Attribute=checksum --warn=format "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" > "${i}_nccmp.log" 2>&1 && d=$? || d=$? + fi + if [[ ${d} -ne 0 && ${d} -ne 1 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + fi + else + printf "USING CMP.." >> "${RT_LOG}" + printf "USING CMP.." + cmp "${RTPWD}/${CNTL_DIR}_${RT_COMPILER}/${i}" "${RUNDIR}/${i}" >/dev/null 2>&1 && d=$? || d=$? + if [[ ${d} -eq 2 ]]; then + printf "....ERROR" >> "${RT_LOG}" + printf "....ERROR" + test_status='FAIL' + fi + + fi + + if [[ ${d} -ne 0 ]]; then + echo "....NOT IDENTICAL" >> "${RT_LOG}" + echo "....NOT IDENTICAL" + test_status='FAIL' + else + echo "....OK" >> "${RT_LOG}" + echo "....OK" + fi + + fi + + done + + else + # + # --- create baselines + # + echo;echo "Moving baseline ${TEST_ID} files ...." + echo;echo "Moving baseline ${TEST_ID} files ...." >> "${RT_LOG}" + + for i in ${LIST_FILES} ; do + printf %s " Moving ${i} ....." + printf %s " Moving ${i} ....." >> "${RT_LOG}" + if [[ -f ${RUNDIR}/${i} ]] ; then + mkdir -p "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/$(dirname "${i}")" + cp "${RUNDIR}/${i}" "${NEW_BASELINE}/${CNTL_DIR}_${RT_COMPILER}/${i}" + echo "....OK" >> "${RT_LOG}" + echo "....OK" + else + echo "....NOT OK. Missing ${RUNDIR}/${i}" >> "${RT_LOG}" + echo "....NOT OK. Missing ${RUNDIR}/${i}" + test_status='FAIL' + fi + done + fi + + { + echo + grep "The total amount of wall time" "${RUNDIR}/out" + grep "The maximum resident set size" "${RUNDIR}/out" + echo + echo "Test ${TEST_ID} ${test_status}" + echo + } >> "${RT_LOG}" + + echo "Test ${TEST_ID} ${test_status}" + echo + + if [[ ${test_status} = 'FAIL' ]]; then + echo "${TEST_ID} failed in check_result" >> "${PATHRT}/fail_test_${TEST_ID}" + write_fail_test + fi + else { echo @@ -408,7 +524,7 @@ else grep "The maximum resident set size" "${RUNDIR}/out" echo echo "Test ${TEST_ID} RUN_SUCCESS" - echo;echo;echo + echo;echo;echo } >> "${RT_LOG}" fi @@ -416,10 +532,6 @@ if [[ ${SCHEDULER} != 'none' ]]; then cat "${RUNDIR}/job_timestamp.txt" >> "${LOG_DIR}/${JBNME}_timestamp.txt" fi -if [[ ${results_okay} == YES ]]; then - remove_fail_test -fi - ################################################################################ # End test ################################################################################ diff --git a/tests/test_changes.list b/tests/test_changes.list index a9c99bdc56..e69de29bb2 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -1,144 +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_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_parallel intel -control_latlon intel -control_wrtGauss_netcdf_parallel 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 -regional_control intel -regional_restart intel -regional_decomp intel -regional_2threads intel -regional_2dwrtdecomp intel -regional_wofs intel -rap_control intel -regional_spp_sppt_shum_skeb intel -rap_decomp intel -rap_2threads intel -rap_restart intel -rap_sfcdiff intel -rap_sfcdiff_decomp intel -rap_sfcdiff_restart intel -hrrr_control intel -hrrr_control_decomp intel -hrrr_control_2threads intel -hrrr_control_restart intel -rrfs_v1beta intel -rrfs_v1nssl intel -rrfs_v1nssl_nohailnoccn intel -control_csawmg intel -control_ras intel -control_csawmg gnu -control_p8_faster intel -regional_control_faster intel -regional_spp_sppt_shum_skeb_dyn32_phy32 intel -rap_control_dyn32_phy32 intel -hrrr_control_dyn32_phy32 intel -rap_2threads_dyn32_phy32 intel -hrrr_control_2threads_dyn32_phy32 intel -hrrr_control_decomp_dyn32_phy32 intel -rap_restart_dyn32_phy32 intel -hrrr_control_restart_dyn32_phy32 intel -rap_control_dyn64_phy32 intel -hafs_regional_atm intel -hafs_global_multiple_4nests_atm intel -hafs_regional_specified_moving_1nest_atm 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_3072x1536_cfsr intel -datm_cdeps_gfs intel -datm_cdeps_debug_cfsr intel -datm_cdeps_control_cfsr_faster intel -atmaero_control_p8 intel -atmaero_control_p8_rad intel -atmaero_control_p8_rad_micro intel -control_stochy gnu -control_ras gnu -control_p8 gnu -control_p8_ugwpv1 gnu -control_flake gnu -rap_control gnu -rap_decomp gnu -rap_2threads gnu -rap_restart gnu -rap_sfcdiff gnu -rap_sfcdiff_decomp gnu -rap_sfcdiff_restart gnu -hrrr_control gnu -hrrr_control_noqr gnu -hrrr_control_2threads gnu -hrrr_control_decomp gnu -hrrr_control_restart gnu -hrrr_control_restart_noqr gnu -rrfs_v1beta gnu -rap_control_dyn32_phy32 gnu -hrrr_control_dyn32_phy32 gnu -rap_2threads_dyn32_phy32 gnu -hrrr_control_2threads_dyn32_phy32 gnu -hrrr_control_decomp_dyn32_phy32 gnu -rap_restart_dyn32_phy32 gnu -hrrr_control_restart_dyn32_phy32 gnu -rap_control_dyn64_phy32 gnu -cpld_control_nowave_noaero_p8 gnu -cpld_control_pdlib_p8 gnu -cpld_debug_pdlib_p8 gnu -datm_cdeps_control_cfsr gnu diff --git a/tests/tests/control_c48.v2.sfc_timeout b/tests/tests/control_c48.v2.sfc_timeout new file mode 100644 index 0000000000..ec78b47892 --- /dev/null +++ b/tests/tests/control_c48.v2.sfc_timeout @@ -0,0 +1,4 @@ +source tests/control_c48.v2.sfc + +# Intentionally make this test fail due to wall clock timeout. Used by error-test.conf +export WLCLK=2 diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 9c61d01096..bb4454077c 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR3072x1536 -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export WLCLK=15 export IATM=3072 export JATM=1536 @@ -20,7 +20,7 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export MESH_ATM=gfs_mesh.nc -export atm_datamode=GFS +export atm_datamode=GEFS export RESTART_N=12 export stream_files="INPUT/cfsr.2011100100_3072x1536.nc INPUT/cfsr.2011100106_3072x1536.nc INPUT/cfsr.2011100112_3072x1536.nc INPUT/cfsr.2011100118_3072x1536.nc INPUT/cfsr.2011100200_3072x1536.nc INPUT/cfsr.2011100206_3072x1536.nc" export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index 37f967809f..03548a6088 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index 902df12859..798bbc5824 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -19,9 +19,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr index a7cc6b9cee..70ee13250a 100644 --- a/tests/tests/datm_cdeps_ciceC_cfsr +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index dc8ae8fd2d..e3768e5258 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_cfsr_faster b/tests/tests/datm_cdeps_control_cfsr_faster index 0852da48e4..4003f161dc 100644 --- a/tests/tests/datm_cdeps_control_cfsr_faster +++ b/tests/tests/datm_cdeps_control_cfsr_faster @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 324c6f2f4d..8669e9ff01 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 618552ed96..c0de0ddc7c 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.25 diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index 2147c3d41c..9dcd4ed89b 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=GFS -export FILENAME_BASE=gfs. +export FILEBASE_DATM=gfs export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -23,8 +23,8 @@ export JATM=1536 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export atm_datamode=GFS +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export atm_datamode=GEFS export CICE_KTHERM=2 export CICE_TFREEZE_OPTION=mushy export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index d28c4bd35c..9ca5c65d75 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -22,9 +22,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1 diff --git a/tests/tests/datm_cdeps_multiple_files_cfsr b/tests/tests/datm_cdeps_multiple_files_cfsr index 86b8eb6032..a92d5cea3d 100644 --- a/tests/tests/datm_cdeps_multiple_files_cfsr +++ b/tests/tests/datm_cdeps_multiple_files_cfsr @@ -10,7 +10,7 @@ export LIST_FILES="RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export RESTART_N=12 diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index b41cef9d56..02a6866d34 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -15,7 +15,7 @@ export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export DAYS=0.5 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 0d3e43875a..ee33c3cb23 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -27,9 +27,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 ATM_compute_tasks=${ATM_compute_tasks_cdeps_025} diff --git a/tests/tests/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index eec83536de..963fb0828f 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -12,7 +12,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR -export FILENAME_BASE=cfsr. +export FILEBASE_DATM=cfsr export IATM=1760 export JATM=880 export FHMAX=24 diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 7f2d0db842..9fe6caf89d 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -20,9 +20,9 @@ export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES=${IATM}x${JATM} export DATM_SRC=GEFS_NEW -export FILENAME_BASE=gefs. -export MESH_ATM=${FILENAME_BASE//.}_mesh.nc -export stream_files="INPUT/${FILENAME_BASE}201110.nc" +export FILEBASE_DATM=gefs +export MESH_ATM=${FILEBASE_DATM}_mesh.nc +export stream_files="INPUT/${FILEBASE_DATM}.201110.nc" export STREAM_OFFSET=-21600 export RESTART_N=12 export eps_imesh=2.5e-1